/* ===========================
   Contact Hero
=========================== */
.contact-hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    background-color: var(--color-white);
    text-align: center;
}

.contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2DD4BF;
    margin-bottom: 16px;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-black);
    margin-bottom: 24px;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-gray);
    max-width: 560px;
    margin: 0 auto;
}

/* ===========================
   Contact Body
=========================== */
.contact-body {
    padding: 80px 24px 120px;
    background-color: var(--color-white);
}

.contact-body-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* ===========================
   Contact Info (left)
=========================== */
.contact-info {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2DD4BF;
}

.contact-info-value {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
    font-weight: 500;
}

.contact-info-note {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray);
}

/* ===========================
   Contact Form (right)
=========================== */
.contact-form-wrap {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: flex;
    gap: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.contact-field label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    font-family: var(--font-family);
    font-size: 0.9375rem;
    color: var(--color-black);
    background-color: var(--color-gray-light);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 14px 16px;
    outline: none;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
    width: 100%;
    box-sizing: border-box;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: var(--color-gray);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #2DD4BF;
    background-color: var(--color-white);
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23697485' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-submit {
    align-self: flex-start;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 767px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-body-inner {
        flex-direction: column;
        gap: 48px;
    }

    .contact-info {
        flex: none;
        width: 100%;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-submit {
        width: 100%;
        text-align: center;
    }

    .contact-submit .btn {
        width: 100%;
    }
}
