/* Components - Buttons, Cards, Forms */

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--burnt-orange);
    color: var(--white);
    border: 2px solid var(--burnt-orange);
}

.btn-primary:hover {
    background-color: #C96846;
    border-color: #C96846;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--burnt-orange);
    border: 2px solid var(--burnt-orange);
}

.btn-outline:hover {
    background-color: var(--burnt-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-green {
    background-color: var(--emerald-green) !important;
    color: var(--white) !important;
    border: 2px solid var(--emerald-green) !important;
}

.btn-green:hover {
    background-color: #1a3d34 !important;
    border-color: #1a3d34 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Cards */
.operate-card,
.service-card,
.experience-card,
.insight-card {
    background-color: var(--light-cream);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: var(--transition);
    height: 100%;
}

.operate-card:hover,
.service-card:hover,
.experience-card:hover,
.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.operate-card h3,
.service-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-burgundy);
    text-transform: none;
    margin: 0;
}

/* Service Cards */
.service-number {
    display: block;
    font-family: var(--font-title);
    font-size: 48px;
    color: var(--burnt-orange);
    opacity: 0.3;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.service-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-burgundy);
    margin-bottom: var(--spacing-xs);
}

.service-description {
    font-size: var(--fs-body-sm);
    color: var(--warm-gray);
    line-height: 1.7;
}

/* Experience Cards */
.experience-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.97) 0%, rgba(245, 241, 232, 0.92) 100%);
    z-index: 1;
}

.experience-card .card-content {
    position: relative;
    z-index: 2;
}

.exp-company {
    font-family: var(--font-title);
    font-size: 28px;
    color: var(--dark-burgundy);
    margin-bottom: var(--spacing-xs);
}

.exp-role {
    font-size: var(--fs-body-sm);
    color: var(--burnt-orange);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.exp-description {
    font-size: var(--fs-body-sm);
    color: var(--warm-gray);
    line-height: 1.7;
}

/* Insight Cards */
.insight-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.insight-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.insight-content {
    padding: var(--spacing-md);
}

.insight-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--burnt-orange);
    margin-bottom: var(--spacing-xs);
}

.insight-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-burgundy);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.insight-excerpt {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.insight-date {
    display: block;
    font-size: 13px;
    color: var(--warm-gray);
    margin-bottom: var(--spacing-sm);
}

.insight-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--burnt-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insight-link:hover {
    text-decoration: underline;
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: var(--fs-body-sm);
    font-weight: 600;
    color: var(--dark-burgundy);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-size: var(--fs-body-sm);
    color: var(--dark-burgundy);
    background-color: var(--white);
    border: 2px solid var(--light-cream);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burnt-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* About Details & Principles */
.detail-item,
.principle-item {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    background-color: var(--light-cream);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--burnt-orange);
}

.detail-item p,
.principle-item p {
    margin: 0;
    font-size: var(--fs-body-sm);
    color: var(--dark-burgundy);
}
