/*
 * 1:1 Coaching page (experiences/one-on-one-coaching-sessions.php).
 * Every rule for the page body is scoped under .coaching so it can't
 * collide with site.css classes of the same name (.hero, .faq-category,
 * .cta-actions, ...). The full-screen Coaching Agreement view (.agreement-*)
 * renders as a sibling of .coaching, so those rules stay unscoped.
 */

.coaching {
    background-color: #fff;
    text-align: left;
    font-size: 15px;
    color: #003366;
    font-family: 'DM Sans', Arial, sans-serif;
    overflow-x: clip;
}

/* Hero */
.coaching .hero {
    background-color: #fff8ed;
    padding: clamp(40px, 8vw, 90px) 24px clamp(12px, 2vw, 20px);
}
.coaching .hero-row {
    max-width: 1296px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
}
.coaching .hero-content { flex: 1 1 420px; min-width: 0; }
.coaching .hero-underline {
    border-top: 2px solid #fbb03a;
    width: 152px;
    margin-bottom: 24px;
}
.coaching .heading {
    font-size: clamp(1.9rem, 1rem + 3vw, 3.2rem);
    line-height: 1.15;
    font-family: 'League Spartan', Arial, sans-serif;
    margin: 0 0 24px;
}
@media (min-width: 1100px) {
    .coaching .heading { white-space: nowrap; }
}
.coaching .intro { font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem); color: #263238; margin: 0 0 16px; }
.coaching .discovery { font-size: 1rem; color: #263238; margin: 0 0 20px; }
.coaching .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.coaching .discovery-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background-color: #003366;
    padding: 16px 30px;
    color: #fff;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.coaching .discovery-cta--alt { background-color: #fbb03a; color: #033366; }
/* Discovery-call CTA placed at the end of an FAQ answer */
.coaching .faq-answer-cta { margin-top: 24px; }

.coaching .visual-label {
    font-size: 0.85rem;
    color: #fbb03a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Meet Your Coach (dropdown in the FAQ section) */
.coaching .coach-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 36px);
    align-items: flex-start;
}
.coaching .coach-bio { flex: 2 1 320px; min-width: 0; }
.coaching .coach-bio p {
    font-size: 1rem;
    line-height: 1.65;
    color: #263238;
    margin: 0 0 16px;
}
.coaching .coach-bio p strong { color: #033366; }
.coaching .coach-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin: 20px 0 0;
}
.coaching .coach-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 12px;
    background-color: #003366;
    color: #fff;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.15s;
}
.coaching .coach-social:hover { background-color: #033a75; }
.coaching .coach-social-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.coaching .coach-visual {
    position: relative;
    flex: 1 1 260px;
    min-width: 0;
    max-width: 360px;
    aspect-ratio: 51 / 43;
    border-radius: 16px;
    background-color: #ecf6fb;
    border-left: 8px solid #fbb03a;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 36px 20px;
    text-align: center;
}
.coaching .coach-visual .visual-label { font-family: 'DM Sans', Arial, sans-serif; }
.coaching .coach-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Booking form (inside 04 — Book & Pay accordion) */
.coaching .upload-heading { font-size: 1.1rem; font-weight: 600; font-family: 'League Spartan', Arial, sans-serif; display: block; margin: 0 0 8px; }
.coaching .upload-box {
    border-radius: 16px;
    background-color: #eaf2f8;
    border: 1px dashed #9db9d1;
    box-sizing: border-box;
    width: 100%;
    max-width: 620px;
    min-height: 120px;
    padding: 26px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: border-color 0.15s, background-color 0.15s;
}
.coaching .upload-icon {
    width: 40px;
    height: 40px;
    color: #003366;
    flex-shrink: 0;
}
.coaching .upload-box:hover,
.coaching .upload-box.is-dragover { border-color: #fbb03a; background-color: #dcebf5; }
.coaching .upload-box.has-file { border-style: solid; border-color: #003366; }
.coaching .upload-text { color: #263238; margin: 0; }
.coaching .upload-filename { color: #003366; font-weight: 600; margin: 0; word-break: break-all; }
.coaching .payment-link { font-size: 1.1rem; font-weight: 600; font-family: 'League Spartan', Arial, sans-serif; color: #263238; display: block; margin: 16px 0; word-break: break-all; }
.coaching .payment-link a { color: #003366; }
.coaching .payment-icon { font-size: 1.6rem; vertical-align: -0.25em; margin-right: 4px; }
.coaching .instapay-cta {
    display: inline-block;
    margin: 16px 0;
    border-radius: 12px;
    background-color: #fbb03a;
    padding: 15px 30px;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #003366;
    text-decoration: none;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.1);
}
.coaching .instapay-cta:hover { background-color: #f4a52a; }
.coaching .instapay-cta .instapay-logo {
    height: 1.2rem;
    width: auto;
    vertical-align: -0.3em;
    margin-right: 8px;
    background: #fff;
    padding: 2px 4px;
    border-radius: 5px;
}

.coaching .form-fields { display: flex; flex-direction: column; gap: 16px; max-width: 600px; margin-top: 20px; }
.coaching .field {
    border-radius: 16px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 24px 14px;
}
.coaching .field .label2, .coaching .field .label3 { display: block; font-size: 0.9rem; margin-bottom: 4px; color: #667085; }
.coaching .field input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    font-family: 'DM Sans', Arial, sans-serif;
    color: #003366;
    padding: 0;
}
.coaching .final-step { color: #263238; margin: 20px 0 12px; max-width: 600px; }
.coaching .calendar-icon,
.thanks-cta .calendar-icon {
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.22em;
    margin-right: 8px;
}
.coaching .schedule-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 4px 0;
}
.coaching .schedule-cta {
    display: inline-block;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background-color: #fbb03a;
    padding: 15px 30px;
    text-align: center;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    color: #003366;
    text-decoration: none;
}
.cta-emoji {
    margin-right: 8px;
    font-size: 1.05em;
    vertical-align: -0.05em;
}
.coaching .schedule-link { font-size: 0.8rem; font-weight: 500; margin-top: 10px; display: block; word-break: break-all; }
.coaching .schedule-link a { color: #003366; }

.coaching .honeypot-field { position: absolute; left: -9999px; top: -9999px; }

.coaching .submit-cta {
    margin-top: 24px;
    border: none;
    border-radius: 12px;
    background-color: #003366;
    color: #fff;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 32px;
    cursor: pointer;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 320px;
}
.coaching .submit-cta:disabled { opacity: 0.6; cursor: not-allowed; }
.coaching .submit-message { margin-top: 14px; font-size: 0.9rem; font-weight: 600; display: none; }
.coaching .submit-message.is-success { color: #1a7f37; display: block; }
.coaching .submit-message.is-error { color: #c0392b; display: block; }

/* Coaching Agreement (Policy) block, shown in the form before the submit button */
.coaching .policy-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 51, 102, 0.15);
    font-size: 0.9rem;
    color: #263238;
}
.coaching .policy-note .faq-sub { margin-top: 0; }
.coaching .policy-heading {
    font-weight: 600;
    color: #033366;
    margin: 14px 0 6px;
}

/* FAQ / accordion section — the numbered sections (01, 02, ...) are each a
   top-level .faq-dropdown; section 03 holds nested .faq-dropdowns. */
.coaching .coaching-faq {
    background-color: #fff8ed;
    font-size: 1.1rem;
    padding: clamp(14px, 2.5vw, 24px) clamp(16px, 4vw, 24px) clamp(40px, 6vw, 80px);
}
/* Centre + constrain the top-level section dropdowns (not the nested ones). */
.coaching .coaching-faq > .faq-dropdown {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(16px, 3vw, 24px);
}
.coaching .coaching-faq > .faq-dropdown:last-child { margin-bottom: 0; }
/* keep jump targets clear of the sticky header */
.coaching .faq-dropdown { scroll-margin-top: 120px; }

/* Nested dropdowns inside a section's answer panel. */
.coaching .faq-answer .faq-dropdown { margin: 16px 0 0; }
.coaching .faq-answer .faq-dropdown:first-child { margin-top: 6px; }
.coaching .faq-answer .faq-dropdown .question-row { font-size: 1.02rem; padding: 18px 24px; }

/* Nested dropdowns render yellow (not navy) to set them apart from the
   numbered section headers they sit inside. */
.coaching .faq-answer .faq-dropdown > .question-row {
    background-color: #fbb03a;
    color: #033366;
}
.coaching .faq-answer .faq-dropdown > .question-row:hover {
    background-color: #f4a52a;
}
.coaching .faq-answer .faq-dropdown > .question-row .q-label::before,
.coaching .faq-answer .faq-dropdown > .question-row .chevron {
    color: #033366;
}

/* Section 04 (Book & Pay) header renders yellow instead of navy. */
.coaching .faq-dropdown--yellow > .question-row {
    background-color: #fbb03a;
    color: #033366;
}
.coaching .faq-dropdown--yellow > .question-row:hover {
    background-color: #f4a52a;
}
.coaching .faq-dropdown--yellow > .question-row .q-label::before,
.coaching .faq-dropdown--yellow > .question-row .chevron {
    color: #033366;
}

/* ...but the nested dropdowns inside section 04 stay navy. */
.coaching .faq-dropdown--yellow .faq-answer .faq-dropdown > .question-row {
    background-color: #003366;
    color: #fff;
}
.coaching .faq-dropdown--yellow .faq-answer .faq-dropdown > .question-row:hover {
    background-color: #033a75;
}
.coaching .faq-dropdown--yellow .faq-answer .faq-dropdown > .question-row .q-label::before,
.coaching .faq-dropdown--yellow .faq-answer .faq-dropdown > .question-row .chevron {
    color: #fbb03a;
}

.coaching .faq-dropdown {
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(0, 51, 102, 0.12);
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.coaching .pdf-accent {
    position: absolute;
    top: 12px;
    left: 0px;
    border-radius: 4px;
    background-color: #033366;
    width: 8px;
    bottom: 12px;
}
.coaching .faq-dropdown--orange .pdf-accent { background-color: #003366; }

/* Sub-headings inside a single dropdown (section 02) */
.coaching .faq-sub {
    margin: 22px 0 10px;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #033366;
}
.coaching .faq-answer > .faq-sub:first-child { margin-top: 6px; }

.coaching .question-row {
    background-color: #003366;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    cursor: pointer;
    border: none;
    text-align: left;
    font: inherit;
    color: #fff;
    font-size: 1.3rem;
}
.coaching .question-row:hover { background-color: #033a75; }
.coaching .question-row .q-label {
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
/* Plus sign in front so it reads clearly as an expandable dropdown;
   becomes a minus while the dropdown is open. */
.coaching .question-row .q-label::before {
    content: "+";
    flex-shrink: 0;
    width: 1em;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    color: #fbb03a;
}
/* `>` so a section's open state only flips its own +/-, not nested rows' */
.coaching .faq-dropdown.is-open > .question-row .q-label::before { content: "\2212"; }
.coaching .chevron {
    height: 24px;
    width: 24px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fbb03a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.coaching .faq-dropdown.is-open > .question-row .chevron { transform: rotate(180deg); }

.coaching .faq-answer {
    padding: 16px 24px 24px 32px;
    font-size: 0.95rem;
    color: #263238;
    line-height: 1.7;
}
.coaching .faq-dropdown:not(.is-open) > .faq-answer { display: none; }

.coaching .faq-answer ul { margin: 0; padding: 0; list-style: none; }
.coaching .faq-answer ul li { position: relative; padding-left: 18px; margin-bottom: 14px; }
.coaching .faq-answer ul li::before {
    content: '\25CF';
    position: absolute;
    left: 0;
    top: 0;
    color: #fbb03a;
    font-size: 8px;
    line-height: 1.8;
}
.coaching .faq-answer ul li:last-child { margin-bottom: 0; }

.coaching .check-list { display: flex; flex-direction: column; gap: 10px; }
.coaching .check-row { display: flex; align-items: center; gap: 12px; }
.coaching .checkbox {
    border-radius: 4px;
    background-color: #fff;
    border: 1.5px solid #033366;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1;
}
.coaching .checkbox.is-checked { background-color: #033366; }
.coaching .check-row label { cursor: pointer; }

/* The pre-footer CTA band uses the site-wide .section-navy block (same as the
   home page), so it needs no page-specific styles here. */

@media (max-width: 600px) {
    .coaching .submit-cta { max-width: none; }

    /* Shrink dropdown titles so even the longest fit on one line on phones. */
    .coaching .question-row {
        font-size: 0.88rem;
        padding: 18px 16px;
        gap: 10px;
    }
    .coaching .question-row .q-label { gap: 8px; }
    .coaching .question-row .q-label::before { font-size: 1rem; }
    .coaching .faq-answer .faq-dropdown > .question-row { font-size: 0.86rem; padding: 16px; }
    .coaching .chevron { height: 20px; width: 20px; font-size: 1rem; }

    /* Match the hero copy to the dropdown-title size on phones. */
    .coaching .intro { font-size: 0.88rem; }
    .coaching .discovery { font-size: 0.88rem; }
}

@media (max-width: 380px) {
    .coaching .question-row { font-size: 0.82rem; }
    .coaching .faq-answer .faq-dropdown > .question-row { font-size: 0.8rem; }
    .coaching .intro,
    .coaching .discovery { font-size: 0.82rem; }
}

/* Coaching Agreement — clause accordions inside homepage section 04.
   Selectors stay unscoped (they also render fine inside .coaching). */
.coaching .agreement-consent {
    margin: 22px 0 6px;
    font-size: 0.95rem;
    color: #6f7680;
}
.coaching .agreement-link {
    color: #033366;
    font-weight: 600;
    text-decoration: underline;
}

.agreement-list { display: flex; flex-direction: column; gap: 14px; }
.agreement-item {
    background: #fff;
    border: 1px solid #eaf2f8;
    border-radius: 16px;
    overflow: hidden;
}
.agreement-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #033366;
}
.agreement-accent {
    width: 6px;
    align-self: stretch;
    min-height: 22px;
    border-radius: 4px;
    background: #fbb03a;
    flex-shrink: 0;
}
.agreement-item:nth-child(even) .agreement-accent { background: #033366; }
.agreement-q-text { flex: 1; }
.agreement-chevron {
    color: #fbb03a;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.agreement-item.is-open .agreement-chevron { transform: rotate(180deg); }

.agreement-a {
    padding: 0 22px 20px 42px;
    font-size: 0.92rem;
    line-height: 1.75;
    color: #263138;
}
.agreement-item:not(.is-open) .agreement-a { display: none; }
.agreement-a p { margin: 0 0 10px; }
.agreement-a p:last-child { margin-bottom: 0; }
.agreement-a ul { margin: 6px 0 0; padding-left: 20px; }
.agreement-a li { margin-bottom: 6px; }
.agreement-a li:last-child { margin-bottom: 0; }

/* Thank-you view — full-screen confirmation after a successful payment
   submission. Renders as a sibling of .coaching, so these stay unscoped. */
.thanks-page {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #fff8ed;
    color: #033366;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 6vw, 72px) clamp(20px, 5vw, 40px);
}
.thanks-page[hidden] { display: none; }
body.thanks-open { overflow: hidden; }

.thanks-close {
    position: absolute;
    top: clamp(14px, 3vw, 28px);
    right: clamp(14px, 3vw, 28px);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: rgba(0, 51, 102, 0.08);
    color: #033366;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}
.thanks-close:hover { background: rgba(0, 51, 102, 0.16); }

.thanks-body {
    max-width: 640px;
    width: 100%;
    text-align: center;
    font-family: 'DM Sans', Arial, sans-serif;
}
.thanks-title {
    display: block;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: clamp(2rem, 1.5rem + 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 12px;
}
.thanks-lead {
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
    font-weight: 600;
    margin: 0 0 24px;
}
.thanks-received { font-size: 1.05rem; color: #263238; margin: 0 0 12px; }
.thanks-note { font-size: 1rem; color: #263238; margin: 0 0 32px; }
.thanks-note em { font-style: italic; }

.thanks-step {
    border-top: 1px solid rgba(0, 51, 102, 0.15);
    padding-top: 28px;
}
.thanks-step-title {
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 1.25rem;
    color: #033366;
    margin: 0 0 10px;
}
.thanks-step-desc { font-size: 1rem; color: #263238; margin: 0; }
.thanks-step-desc strong { color: #033366; font-weight: 700; }
.thanks-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}
.thanks-cta {
    display: inline-block;
    border-radius: 12px;
    background-color: #fbb03a;
    padding: 15px 32px;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    color: #033366;
    text-decoration: none;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}
.thanks-cta:hover { background-color: #f4a52a; }
