/* =========================================
   CONTACT US PAGE
   ========================================= */

/* ---- Hero ---- */
.contact-hero {
    background-color: var(--swatch--light);
    padding: 10rem 0 5rem;
}

.contact-hero__inner {
    /* inherits u-container padding */
}

.contact-hero__heading h1 {
    font-family: var(--font--primary-family);
    font-size: 7rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--swatch--dark);
    margin-bottom: 2rem;
}

.contact-hero__heading p {
    font-family: var(--font--secondary-family);
    font-size: 1.1rem;
    color: var(--swatch--dark);
    opacity: 0.7;
    max-width: 50ch;
    line-height: 1.6;
    margin: 0;
}

/* ---- Main Content ---- */
.contact-content {
    background-color: var(--swatch--light);
    padding-bottom: 8rem;
}

/* ---- Two Column Grid ---- */
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start;
    margin-bottom: 6rem;
}

/* ---- Form Section ---- */
.contact-form-section {
    /* Theme variable overrides so form colours work on light bg */
    --theme--text: var(--swatch--dark);
    --theme--border: rgba(30, 16, 5, 0.2);
}

/* msf active-step height fix (slide panel uses height:100% for its fixed container) */
.contact-form-section .msf-step.active-step {
    height: auto;
}

/* Override the progress bar starting width from main.css */
.contact-form-section .msf-progress {
    background-color: rgba(131, 88, 52, 0.1);
}

/* Thank you message colours */
.contact-form-section .msf-thank-you {
    text-align: left;
    padding: 2rem 0;
}

/* ---- Cal.com Column ---- */
.contact-cal-col {
    position: sticky;
    top: 7rem;
}

.contact-cal-label {
    display: block;
    font-family: var(--font--secondary-family);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--swatch--dark);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.contact-cal-desc {
    font-family: var(--font--secondary-family);
    font-size: 1rem;
    color: var(--swatch--dark);
    opacity: 0.7;
    margin-bottom: 2.5rem;
    max-width: 32ch;
    line-height: 1.6;
}

.contact-cal-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background-color: var(--swatch--dark);
    color: var(--swatch--light);
    border-radius: 100vw;
    text-decoration: none;
    font-family: var(--font--secondary-family);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-cal-book-btn:hover {
    background-color: var(--swatch--brand);
    transform: translateY(-2px);
}

.contact-cal-btn-text {
    /* inherits from parent */
}

/* ---- Contact Details Row ---- */
.contact-details-row {
    display: flex;
    gap: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(131, 88, 52, 0.2);
    flex-wrap: wrap;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-detail-label {
    font-family: var(--font--secondary-family);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--swatch--dark);
    opacity: 0.5;
}

.contact-detail-link {
    font-family: var(--font--secondary-family);
    font-size: 1.1rem;
    color: var(--swatch--dark);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-detail-link:hover {
    opacity: 0.6;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* ---- Mobile ---- */
@media screen and (max-width: 991px) {
    .contact-hero {
        padding: 7rem 0 3rem;
    }

    .contact-hero__heading h1 {
        font-size: 3.5rem;
    }

    .contact-two-col {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-cal-col {
        position: static;
    }

    .contact-details-row {
        gap: 2.5rem;
    }
}

@media screen and (max-width: 479px) {
    .contact-hero__heading h1 {
        font-size: 2.75rem;
    }

    .contact-form-section .form_grid_2 {
        grid-template-columns: 1fr;
    }
}
