/* ============================================================
   SECTION TEMPLATES — BOOKING & CONTACT
   ============================================================
   partials/sections/dealer-finder.php          — Dealer / Location Finder
   partials/sections/booking-form.php            — Booking Form Module
   partials/sections/what-to-expect.php          — What to Expect List
   partials/sections/booking-confirmation.php    — Booking Confirmation State
   partials/sections/contact-form.php            — Contact Form Module
   partials/sections/other-ways-to-reach-us.php  — Other Ways to Reach Us Block
   partials/sections/still-deciding.php          — Still Deciding? Nudge Block

   Builds on the shared tokens/utilities in css/sections-base.css
   (--sec-pad-y/x/max/gap/radius, .sec, .sec-alt, .sec-inner, .sec-head,
   .sec-grid, .sec-card, .img-placeholder, .tbd) and the existing form kit
   in css/global.css (.s-register, .reg-left, .trust-list, .form-wrap,
   .f-row/.f-group/.f-label/.f-input/.f-select/.f-textarea, .f-check-row,
   .btn-submit, .form-success/.success-icon/.success-h/.success-p). Do not
   redefine anything from either file here — extend, don't duplicate.
============================================================ */

/* ---------- Dealer / Location Finder ---------- */
.sec-dealer-finder-card .sec-dealer-finder-address {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ink-mid);
    margin-bottom: 12px;
}
.sec-dealer-finder-meta {
    font-size: 13px;
    font-weight: 400;
    color: var(--ink-mid);
    line-height: 1.6;
}
.sec-dealer-finder-meta a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
}
.sec-dealer-finder-meta a:hover { color: var(--red); }
.sec-dealer-finder-hours { color: var(--ink-mid); }

.sec-dealer-finder-note {
    margin-top: 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--sec-radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.sec-dealer-finder-note p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--ink-mid);
    max-width: 60ch;
    margin: 0;
    flex: 1 1 320px;
}

/* ---------- Booking Form Module / Contact Form Module ----------
   Both reuse .s-register from global.css wholesale (sticky info column +
   .form-wrap) — the only override needed here is to strip .s-register's
   own outer padding, since it now sits inside a .sec/.sec-inner wrapper
   that already supplies section-level padding via --sec-pad-y/x. */
.sec-booking-form .s-register,
.sec-contact-form .s-register {
    padding: 0;
}
@media (max-width: 900px) {
    .sec-booking-form .s-register,
    .sec-contact-form .s-register {
        padding: 0;
    }
}

/* ---------- What to Expect List ---------- */
.sec-what-to-expect-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sec-gap);
}
.sec-what-to-expect-item {
    padding-top: 18px;
    border-top: 2px solid var(--border);
}
.sec-what-to-expect-index {
    display: block;
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--red);
    margin-bottom: 10px;
}
.sec-what-to-expect-item h3 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 8px;
}
.sec-what-to-expect-item p {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--ink-mid);
}

/* ---------- Booking Confirmation State ---------- */
.sec-booking-confirmation-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    max-width: 380px;
    margin: 28px auto 0;
}
.sec-booking-confirmation-steps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ink-mid);
}
.sec-booking-confirmation-pip {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 6px;
}
.sec-booking-confirmation-link {
    display: inline-block;
    margin-top: 32px;
    font-family: 'Epilogue', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
}
.sec-booking-confirmation-link:hover { color: var(--red-deep); text-decoration: underline; }

/* ---------- Other Ways to Reach Us Block ---------- */
.sec-other-ways-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sec-gap);
}
.sec-other-ways-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--sec-radius);
    padding: 22px 24px;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}
a.sec-other-ways-card:hover { border-color: var(--red); transform: translateY(-2px); }
.sec-other-ways-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red-pale);
    color: var(--red);
    flex-shrink: 0;
}
.sec-other-ways-text { display: flex; flex-direction: column; gap: 4px; }
.sec-other-ways-text h3 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
}
.sec-other-ways-value {
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-mid);
}

/* ---------- Still Deciding? Nudge Block ---------- */
.sec-still-deciding-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sec-gap);
}
.sec-still-deciding-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--sec-radius);
    padding: 22px 24px;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}
.sec-still-deciding-card:hover { border-color: var(--red); transform: translateY(-2px); }
.sec-still-deciding-text h3 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 4px;
    transition: color 0.2s;
}
.sec-still-deciding-card:hover .sec-still-deciding-text h3 { color: var(--red); }
.sec-still-deciding-dek {
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--ink-mid);
}
.sec-still-deciding-arrow {
    flex-shrink: 0;
    color: var(--red);
    transition: transform 0.2s;
}
.sec-still-deciding-card:hover .sec-still-deciding-arrow { transform: translateX(4px); }

/* ---------- Focus states (interactive elements within this file's components) ---------- */
.sec-dealer-finder-meta a:focus-visible,
.sec-dealer-finder-note a:focus-visible,
.sec-booking-form .btn-submit:focus-visible,
.sec-contact-form .btn-submit:focus-visible,
.sec-booking-confirmation-link:focus-visible,
.sec-other-ways-card:focus-visible,
.sec-still-deciding-card:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .sec-dealer-finder-note { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .sec-other-ways-card,
    .sec-still-deciding-card { padding: 18px 20px; }
}
