/* =====================================================================
   Makkah Madinah Transport — Home (dark luxury) stylesheet
   ---------------------------------------------------------------------
   Tokens live in app.css. This file styles the marketing homepage to
   match the dark/gold mockup.
   ===================================================================== */

body.home-body {
    background: var(--home-bg, #0f1115);
    color: var(--home-text, #f5f5f5);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.home-body img { max-width: 100%; }

/* ---- Section headings ---- */
.eyebrow {
    display: inline-block;
    color: var(--home-accent, #d4a63a);
    letter-spacing: 4px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .55rem;
}
.section-title {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--text-primary, #fff);
    font-weight: 700;
    line-height: 1.18;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.section-sub {
    color: var(--home-text-soft, #b7bcc6);
    max-width: 620px;
}

.home-section { padding: var(--section-padding, clamp(60px, 8vw, 110px)) 0; }
.home-section.tight { padding: clamp(40px, 5vw, 70px) 0; }

/* ============== Navbar ============== */
.home-navbar {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 30;
    background: transparent;
}
.home-navbar.scrolled {
    position: fixed;
    background: var(--surface-navbar, rgba(15, 17, 21, .92));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle, rgba(255,255,255,.05));
    animation: slideDown .25s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.home-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 1rem;
}
.home-brand { color: #fff !important; gap: .55rem; }
.home-brand-mark {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--home-accent, #d4a63a);
    color: #111;
    font-size: 1.05rem;
}
.home-brand-text {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
    font-size: 1rem;
}

/* Mobile burger button */
.home-nav-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    border-radius: 8px;
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    cursor: pointer;
}
.home-nav-toggle:hover { border-color: var(--home-accent, #d4a63a); color: var(--home-accent, #d4a63a); }

/* Horizontal flex row of links on desktop, list-styled */
.home-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.home-nav > li { display: flex; align-items: center; }
.home-nav .nav-link {
    color: #e3e3e3 !important;
    font-size: .92rem;
    padding: .5rem .9rem;
    text-decoration: none;
    transition: color .15s ease;
}
.home-nav .nav-link:hover { color: var(--home-accent, #d4a63a) !important; }
.home-nav .nav-link[href*="become-a-driver"] {
    border-radius: 999px;
    background: rgba(212,166,58,.045);
    box-shadow: inset 0 0 0 1px rgba(212,166,58,.28);
    color: var(--home-accent, #d4a63a) !important;
    transition: color .15s ease, background-color .2s ease, box-shadow .2s ease;
}
.home-nav .nav-link[href*="become-a-driver"]:hover,
.home-nav .nav-link[href*="become-a-driver"]:focus-visible {
    background: rgba(212,166,58,.09);
    box-shadow: inset 0 0 0 1px rgba(212,166,58,.48), 0 0 18px rgba(212,166,58,.08);
    color: var(--home-gold-2, #e0b44b) !important;
}
.home-nav .btn-gold {
    background: var(--home-accent, #d4a63a);
    color: #111 !important;
    font-weight: 700;
    border: 0;
    padding: .55rem 1.2rem;
    margin-left: .35rem;
    border-radius: 8px;
    text-decoration: none;
}
.home-nav .btn-gold:hover { background: var(--home-gold-2, #e0b44b); color: #111 !important; }
.home-nav .btn-outline-gold {
    border: 1px solid rgba(212,166,58,.55);
    color: var(--home-accent, #d4a63a) !important;
    margin-left: .35rem;
    padding: .5rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    background: transparent;
}
.home-nav .btn-outline-gold:hover { background: rgba(212,166,58,.1); }

/* Shared outline gold — same language as nav (use on light/cream sections) */
.btn-outline-gold {
    border: 1px solid rgba(212,166,58,.55);
    color: var(--home-accent, #d4a63a) !important;
    padding: .55rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    background: transparent;
    font-weight: 600;
}
.btn-outline-gold:hover { background: rgba(212,166,58,.1); }

/* ---- Mobile collapse ---- */
@media (max-width: 991.98px) {
    .home-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(15, 17, 21, .96);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255,255,255,.06);
        padding: 0 18px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease, padding .25s ease;
    }
    .home-nav.is-open { max-height: 100vh; padding: 14px 18px 22px; }
    .home-nav > li { display: block; }
    .home-nav .nav-link { padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.04); }
    .home-nav .btn-gold,
    .home-nav .btn-outline-gold {
        margin: .6rem 0 0;
        text-align: center;
    }
}

/* ============== Hero (flagship Royal composition — design authority) ============== */
.home-hero {
    position: relative;
    min-height: 92vh;
    padding: 160px 0 80px;
    background: var(--hero-overlay, linear-gradient(180deg, rgba(15,17,21,.50) 0%, rgba(15,17,21,.82) 60%, var(--surface-hero, var(--home-bg, #0f1115)) 100%)),
                url("https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?auto=format&fit=crop&w=1920&q=70") center/cover no-repeat;
    color: var(--text-on-dark, #fff);
    overflow: hidden;
}
.home-hero::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: -1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--home-bg, #0f1115));
    pointer-events: none;
}
.hero-title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.05;
    text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.hero-title .accent { color: var(--home-accent, #d4a63a); }
.hero-sub {
    color: rgba(245,245,245,.8);
    max-width: 560px;
    font-size: 1.05rem;
    margin-top: 1rem;
}
.hero-actions { margin-top: 2rem; }
.hero-wa-link {
    color: rgba(247, 241, 230, 0.7);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
}
.hero-wa-link:hover { color: var(--home-accent, #d4a63a); }
.hero-wa-link i { margin-right: .35rem; }
.btn-gold {
    background: var(--home-accent, #d4a63a);
    color: #111 !important;
    font-weight: 700;
    border: 0;
    padding: .8rem 1.6rem;
    border-radius: 8px;
    transition: background .15s ease, transform .15s ease;
}
.btn-gold:hover { background: var(--home-gold-2, #e0b44b); transform: translateY(-1px); }
.btn-outline-light-gold {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,.4);
    padding: .8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
}
.btn-outline-light-gold:hover { border-color: var(--home-accent, #d4a63a); color: var(--home-accent, #d4a63a) !important; }

.hero-badges {
    display: flex; flex-wrap: wrap; gap: 1.4rem;
    margin-top: 2rem; color: rgba(255,255,255,.55); font-size: .85rem;
}
.hero-badges i { color: var(--home-accent, #d4a63a); }

.route-title-link {
    color: inherit;
    text-decoration: none;
}
.route-title-link:hover { color: var(--home-accent, #d4a63a); }

.home-cta-legal {
    margin-top: .65rem;
    font-size: .8rem;
    color: rgba(247, 241, 230, 0.55);
}
.home-cta-legal a { color: var(--home-accent, #d4a63a); text-decoration: none; }
.home-cta-legal a:hover { text-decoration: underline; }

/* Services teaser reuses FAQ cream surface + existing process-cards */
.services-teaser-section {
    background: var(--surface-faq, var(--surface-secondary, #faf6ee));
}
.stats-section-title {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

/* ============== About / "Made a call" (stays dark) ============== */
.about-call .feature-list { list-style: none; padding-left: 0; margin: 1.5rem 0; }
.about-call .feature-list li {
    color: var(--home-text-soft, #b7bcc6);
    padding: .35rem 0 .35rem 1.7rem;
    position: relative;
}
.about-call .feature-list li::before {
    content: "\F26B"; /* bi-check-circle-fill */
    font-family: "bootstrap-icons";
    color: var(--home-accent, #d4a63a);
    position: absolute; left: 0; top: .35rem;
}
.about-call .image-frame {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.about-call .image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============== Booking strip ============== */
.home-booking {
    background: linear-gradient(180deg, var(--home-bg, #0f1115) 0%, var(--home-bg-soft, #131820) 100%);
    padding: 30px 0 70px;
}
.home-booking .booking-card {
    background: var(--home-bg-card, #171b21);
    border: 1px solid var(--home-border, rgba(255,255,255,.06));
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,.4);
}
.home-booking .booking-card .form-label { color: var(--home-text-soft, #b7bcc6); font-size: .8rem; letter-spacing: .5px; text-transform: uppercase; margin-bottom: .35rem; }
.home-booking .booking-card .form-control,
.home-booking .booking-card .form-select {
    background: var(--home-bg, #0f1115);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    height: 46px;
    border-radius: 10px;
}
.home-booking .booking-card .form-control:focus,
.home-booking .booking-card .form-select:focus {
    border-color: var(--home-accent, #d4a63a);
    box-shadow: 0 0 0 .2rem rgba(212,166,58,.18);
}
.home-booking .booking-card .form-control::placeholder { color: rgba(255,255,255,.4); }
.home-booking .booking-card .btn-search {
    background: var(--home-accent, #d4a63a);
    color: #111;
    height: 46px;
    width: 100%;
    font-weight: 700;
    border: 0;
    border-radius: 10px;
}
.home-booking-note {
    font-size: .78rem;
    color: var(--home-text-soft, #b7bcc6);
}
.home-booking-note a {
    color: var(--home-accent, #d4a63a);
    text-decoration: none;
}
.home-booking-note a:hover { text-decoration: underline; }

/* ============== Homepage vehicle catalogue (booking-style cards) ============== */
/* ---- Light homepage bands — dark headings on cream (override default .section-title) ---- */
body.home-body :is(
    .home-vehicle-catalogue,
    .why-section,
    .routes-section,
    .process-section,
    .testimonial-section,
    .faq-section,
    .services-teaser-section
) .section-title {
    color: var(--text-heading-on-light, #071525);
}

body.home-body :is(
    .home-vehicle-catalogue,
    .why-section,
    .routes-section,
    .process-section,
    .testimonial-section,
    .faq-section,
    .services-teaser-section
) .section-sub {
    color: var(--text-secondary-on-light, #3a4556);
}

.home-vehicle-catalogue {
    background: var(--surface-fleet, #f4ede0);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.home-vehicle-catalogue .section-sub a {
    color: var(--accent-primary, #c5a059);
}

.zaka-vcard--compact .zaka-vcard__body {
    padding-bottom: 1.2rem;
}

.zaka-vcard--compact .zaka-vcard__specs {
    border-top: 0;
    padding-top: 0.35rem;
    margin-top: 0.25rem;
}

/* ============== Fleet (legacy dark cards — kept for reference) ============== */
.fleet-section { background: var(--surface-fleet, var(--home-bg, #0f1115)); }
.fleet-card {
    background: var(--surface-card, var(--home-bg-card, #171b21));
    border-radius: var(--radius-medium, 16px);
    overflow: hidden;
    border: 1px solid var(--border-color, var(--home-border, rgba(255,255,255,.06)));
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}
.fleet-card:hover {
    transform: translateY(-6px);
    background: var(--home-bg-card-2, #1d2430);
    border-color: rgba(212,166,58,.36);
    box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.fleet-card .fleet-img {
    height: 200px;
    background: var(--home-bg-card, #171b21) center/cover no-repeat;
    background-position: center 55%;
    position: relative;
}
.fleet-card .fleet-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.55));
}
.fleet-card .fleet-body { padding: 1.1rem 1.25rem 1.3rem; }
.fleet-card .fleet-name { color: #fff; font-weight: 600; margin-bottom: .25rem; }
.fleet-card .fleet-cap { color: var(--home-text-soft, #b7bcc6); font-size: .82rem; margin-bottom: .9rem; }
.fleet-card .fleet-cap i { color: var(--home-accent, #d4a63a); margin-right: .3rem; }
.fleet-card .btn-book {
    background: var(--home-accent, #d4a63a);
    color: #111;
    font-weight: 700;
    border: 0;
    padding: .45rem 1.1rem;
    border-radius: 999px;
    font-size: .85rem;
}
.fleet-card .btn-book:hover { background: var(--home-gold-2, #e0b44b); }
.fleet-card .fleet-price { color: var(--home-accent, #d4a63a); font-weight: 700; }

/* ============== Process ============== */
/* ============== Process (light band — background set in addon section) ============== */
.process-card {
    background: var(--home-bg-card, #171b21);
    border: 1px solid var(--home-border, rgba(255,255,255,.06));
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: left;
    transition: border-color .2s ease;
}
.process-card:hover { background: var(--home-bg-card-2, #1d2430); border-color: rgba(212,166,58,.32); }
.process-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(212,166,58,.12);
    color: var(--home-accent, #d4a63a);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.process-card h3 { color: #fff; font-size: 1.2rem; font-weight: 600; margin-bottom: .5rem; }
.process-card p   { color: var(--home-text-soft, #b7bcc6); margin: 0; font-size: .93rem; line-height: 1.6; }

/* ============== Testimonials ============== */
.testimonial-card {
    background: linear-gradient(180deg, var(--home-bg-card, #171b21) 0%, var(--home-bg-soft, #131820) 100%);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 20px;
    padding: 2.2rem 1.9rem 1.8rem;
    height: 100%;
    color: var(--home-text-soft, #b7bcc6);
    position: relative;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    transition: transform .25s ease, border-color .25s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,166,58,.22);
}

.testimonial-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.testimonial-quote {
    color: var(--home-accent, #d4a63a);
    font-size: 2.6rem;
    line-height: 1;
    display: inline-flex;
}
.testimonial-quote i { display: inline-block; transform: scale(1.6) translateY(2px); }

.testimonial-stars {
    color: var(--home-accent, #d4a63a);
    font-size: .82rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.testimonial-quote-text {
    color: var(--home-text-soft, #b7bcc6);
    font-size: .95rem;
    line-height: 1.7;
    margin: 0 0 1.6rem;
    min-height: 6.4rem;
    font-style: normal;
}
.testimonial-quote-text[dir="rtl"],
.testimonial-quote-text:dir(rtl) { text-align: right; font-family: "Tahoma", "Segoe UI", sans-serif; }

.testimonial-person {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin: 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,.05);
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--home-bg-card-2, #1d2430) center/cover no-repeat;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem;
    border: 2px solid rgba(255,255,255,.08);
    flex: 0 0 48px;
}
.testimonial-meta { display: flex; flex-direction: column; line-height: 1.25; }
.testimonial-name { color: #fff; font-weight: 700; font-size: .98rem; }
.testimonial-role { color: var(--home-muted-2, #8e96a3); font-size: .82rem; margin-top: 2px; }

/* ---- Testimonials slider (3 desktop / 2 tablet / 1 mobile) ---- */
.testimonial-section .testimonials-slider { --slider-visible: 3; --slider-gap: 1.5rem; }
.testimonial-card.slider-item {
    height: auto;            /* override the legacy height:100% so flex sizes cleanly */
    display: flex;
    flex-direction: column;
}
.testimonial-card.slider-item .testimonial-person { margin-top: auto; }

@media (max-width: 991.98px) {
    .testimonial-section .testimonials-slider { --slider-visible: 2; --slider-gap: 1.25rem; }
}
@media (max-width: 575.98px) {
    .testimonial-section .testimonials-slider { --slider-visible: 1; --slider-gap: 1rem; gap: 0; }
    .testimonials-slider .slider-nav { display: none; }
    .testimonial-card.slider-item { padding: 1.75rem 1.4rem 1.4rem; }
    .testimonial-quote-text { min-height: 0; }
}

/* ============== CTA banner ============== */
.home-cta-section { padding: 60px 0 100px; }
.home-cta-card {
    background: linear-gradient(135deg, var(--home-bg-card, #171b21) 0%, var(--home-bg-soft, #131820) 100%);
    border: 1px solid rgba(212,166,58,.18);
    border-radius: 22px;
    padding: clamp(28px, 5vw, 60px);
    display: flex; flex-wrap: wrap; gap: 2rem;
    align-items: center; justify-content: space-between;
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.home-cta-card h2 { font-family: "Playfair Display", Georgia, serif; color: #fff; font-size: clamp(1.4rem, 2.5vw, 2rem); margin: 0; }
.home-cta-card p { color: var(--home-text-soft, #b7bcc6); margin: .5rem 0 0; max-width: 540px; font-size: .95rem; }

/* ============== Generic horizontal slider ==============
 * Shared by horizontal home sections. Each section sets:
 *   --slider-visible : how many cards fit in the viewport
 *   --slider-gap     : inter-card gap
 * Cards must carry the .slider-item helper (or have flex-basis applied
 * via a section-specific selector) so they size to one slot.
 */
.slider {
    --slider-visible: 6;
    --slider-gap: 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.slider-track {
    flex: 1 1 auto;
    display: flex;
    gap: var(--slider-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 14px 4px 22px;   /* room for hover lift + box-shadow */
    margin: -14px -4px -22px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track:focus-visible {
    outline: 2px solid var(--home-accent, #d4a63a);
    outline-offset: 4px;
    border-radius: 12px;
}
.slider-item {
    flex: 0 0 calc(
        (100% - (var(--slider-visible) - 1) * var(--slider-gap))
        / var(--slider-visible)
    );
    scroll-snap-align: start;
}
.slider-nav {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(212, 166, 58, .55);
    background: rgba(212, 166, 58, .08);
    color: var(--home-accent, #d4a63a);
    border-radius: 999px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease,
                border-color .25s ease, transform .25s ease, opacity .25s ease;
}
.slider-nav:hover:not([disabled]),
.slider-nav:focus-visible:not([disabled]) {
    background: var(--home-accent, #d4a63a);
    color: #111;
    border-color: var(--home-accent, #d4a63a);
    outline: none;
    transform: scale(1.05);
}
.slider-nav[disabled] {
    opacity: .35;
    cursor: not-allowed;
}

/* ============== Footer ============== */
.home-footer {
    background: var(--surface-footer, #0b0d11);
    color: var(--home-text-soft, #b7bcc6);
    padding: 70px 0 28px;
    border-top: 1px solid var(--border-subtle, rgba(255,255,255,.04));
}
.home-footer h5 {
    color: #fff;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.1rem;
    font-weight: 600;
}
.home-footer a {
    color: var(--home-text-soft, #b7bcc6);
    text-decoration: none;
    display: inline-block;
    padding: .15rem 0;
    transition: color .15s ease;
}
.home-footer a:hover { color: var(--home-accent, #d4a63a); }
.home-footer .brand-line { color: var(--home-accent, #d4a63a); }
.home-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    margin-top: 50px;
    padding-top: 22px;
    font-size: .82rem;
    color: var(--home-muted-2, #8e96a3);
}
.home-footer .newsletter input {
    background: var(--home-bg, #0f1115);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    height: 42px;
    border-radius: 8px;
}
.home-footer .newsletter input::placeholder { color: #5a5a5a; }
.home-footer .newsletter button {
    background: var(--home-accent, #d4a63a);
    color: #111;
    border: 0;
    height: 42px;
    padding: 0 1.1rem;
    font-weight: 700;
    border-radius: 8px;
}

/* ============== Responsive tweaks ============== */
@media (max-width: 991.98px) {
    .home-hero { padding: 130px 0 60px; min-height: auto; }
    .home-booking .booking-card { padding: 18px; }
    .home-cta-card { text-align: center; justify-content: center; }
    .home-cta-card > div:last-child { width: 100%; display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
}
@media (max-width: 575.98px) {
    .hero-actions .btn { width: 100%; }
    .home-section { padding: 60px 0; }
    .area-pill { font-size: .8rem; padding: .5rem 1rem; }
}

/* =====================================================================
 * Add-on sections (reuse existing tokens; no globals touched)
 * --------------------------------------------------------------------- */

/* ---- Generic fade-up reveal so new sections animate like Areas. ----
 * Existing rule already covers .areas-section; this generalises the
 * same animation to every section that opts in with [data-animate]. */
.home-section[data-animate="fade-up"],
section[data-animate="fade-up"]:not(.areas-section) {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}
.home-section[data-animate="fade-up"].is-visible,
section[data-animate="fade-up"]:not(.areas-section).is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .home-section[data-animate="fade-up"],
    section[data-animate="fade-up"]:not(.areas-section) {
        opacity: 1; transform: none; transition: none;
    }
}

/* ---- Dark homepage bands (keep About + Stats only) ---- */
.about-call { background: var(--home-bg, #0f1115); }
.stats-section { background: var(--home-bg, #0c0c0c); }
.stats-section .section-title,
.stats-section .stats-section-title {
    color: var(--text-on-dark, #f7f1e6);
}

/* ---- Light homepage bands (after Our Fleet) ---- */
.why-section,
.routes-section,
.process-section,
.testimonial-section,
.faq-section,
.services-teaser-section {
    background: var(--surface-faq, #faf6ee);
    color: var(--text-on-light, #0b1c33);
}

.why-section .section-title,
.routes-section .section-title,
.process-section .section-title,
.testimonial-section .section-title,
.faq-section .section-title,
.services-teaser-section .section-title {
    color: var(--text-heading-on-light, #071525);
}

.why-section .section-sub,
.routes-section .section-sub,
.process-section .section-sub,
.testimonial-section .section-sub,
.faq-section .section-sub,
.services-teaser-section .section-sub {
    color: var(--text-secondary-on-light, #3a4556);
}

.why-section .process-card,
.routes-section .route-card,
.process-section .process-card,
.services-teaser-section .process-card {
    background: var(--surface-card-on-light, #fffcfa);
    border: 1px solid rgba(11, 28, 51, 0.1);
    box-shadow: 0 8px 24px rgba(7, 21, 37, 0.06);
}

.why-section .process-card:hover,
.routes-section .route-card:hover,
.process-section .process-card:hover,
.services-teaser-section .process-card:hover {
    background: #fff;
    border-color: rgba(197, 160, 89, 0.35);
    transform: translateY(-4px);
}

.why-section .process-card h3,
.routes-section .route-card h3,
.process-section .process-card h3,
.services-teaser-section .process-card h3 {
    color: var(--text-heading-on-light, #071525);
}

.why-section .process-card p,
.routes-section .route-card p,
.process-section .process-card p,
.services-teaser-section .process-card p {
    color: var(--text-secondary-on-light, #3a4556);
}

.routes-section .route-card .route-title,
.routes-section .route-card .route-title-link {
    color: var(--text-heading-on-light, #071525);
}

.routes-section .route-card .route-title-link:hover {
    color: var(--accent-primary, #c5a059);
}

.routes-section .route-card .route-meta {
    border-top-color: rgba(11, 28, 51, 0.08);
}

.testimonial-section .testimonial-card {
    background: var(--surface-card-on-light, #fffcfa);
    border: 1px solid rgba(11, 28, 51, 0.1);
    box-shadow: 0 8px 24px rgba(7, 21, 37, 0.06);
    color: var(--text-secondary-on-light, #3a4556);
}

.testimonial-section .testimonial-card:hover {
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 18px 40px rgba(7, 21, 37, 0.1);
}

.testimonial-section .testimonial-name {
    color: var(--text-heading-on-light, #071525);
}

.testimonial-section .testimonial-role {
    color: var(--text-secondary-on-light, #3a4556);
}

.testimonial-section .testimonial-quote-text {
    color: var(--text-secondary-on-light, #3a4556);
}

.testimonial-section .testimonial-person {
    border-top-color: rgba(11, 28, 51, 0.08);
}

.faq-section .faq-item {
    background: var(--surface-card-on-light, #fffcfa);
    border-color: rgba(11, 28, 51, 0.1);
}

.faq-section .faq-item summary,
.faq-section .faq-q-text {
    color: var(--text-heading-on-light, #071525);
}

.faq-section .faq-a {
    color: var(--text-secondary-on-light, #3a4556);
}

/* ---- Why Choose Us (reuses .process-card + .process-icon) ---- */
.feature-card.process-card { display: flex; flex-direction: column; gap: .25rem; }

/* ---- Popular Routes (reuses .process-card chrome) ---- */
.route-card { display: flex; flex-direction: column; gap: .25rem; }
.route-card .route-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .4rem;
    display: inline-flex; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.route-card .route-arrow { color: var(--home-accent, #f5b942); display: inline-flex; }
.route-card .route-meta {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.05);
    gap: .75rem; flex-wrap: wrap;
}
.route-card .route-duration {
    color: var(--text-secondary-on-light, #3a4556);
    font-size: .85rem;
}
.route-card .route-duration i { color: var(--home-accent, #f5b942); margin-right: .35rem; }
.btn-sm-pill {
    padding: .4rem 1rem !important;
    font-size: .82rem !important;
    border-radius: 999px !important;
}

/* ---- Stats Counter (stays dark) ---- */
.stat-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: var(--home-bg-card-2, #181818);
    border: 1px solid var(--home-border, rgba(255,255,255,.06));
    transition: border-color .2s ease, transform .25s ease;
    height: 100%;
}
.stat-card:hover { border-color: rgba(245,185,66,.35); transform: translateY(-4px); }
.stat-value {
    color: var(--home-accent, #f5b942);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -.5px;
}
.stat-label {
    color: var(--home-text-soft, #a3a3a3);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: .35rem;
}

/* ---- FAQ (light band) ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--surface-card, var(--home-bg-card, #1a1a1a));
    border: 1px solid var(--border-color, var(--home-border, rgba(255,255,255,.06)));
    border-radius: var(--radius-medium, 14px);
    margin-bottom: .85rem;
    overflow: hidden;
    transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(245,185,66,.35); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.3rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    user-select: none;
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker { display: none; }
.faq-q-text { line-height: 1.4; }
.faq-q-icon {
    flex: 0 0 32px;
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px;
    background: rgba(245,185,66,.12);
    color: var(--home-accent, #f5b942);
    font-size: .95rem;
    transition: background-color .2s ease;
}
.faq-item:hover .faq-q-icon { background: rgba(245,185,66,.22); }
.faq-q-icon .faq-minus { display: none; }
.faq-item[open] .faq-q-icon .faq-plus  { display: none; }
.faq-item[open] .faq-q-icon .faq-minus { display: inline-flex; }
.faq-a {
    padding: 0 1.3rem 1.2rem;
    line-height: 1.7;
    font-size: .95rem;
    animation: faqSlide .25s ease;
}
@keyframes faqSlide {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Mobile sticky CTA bar (mobile only) ---- */
.mobile-cta-bar {
    position: fixed;
    left: 12px; right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 60;
    display: none;
    gap: .5rem;
    padding: .5rem;
    background: rgba(15, 15, 15, .92);
    border: 1px solid rgba(245,185,66,.22);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 40px rgba(0,0,0,.55);
}
.mobile-cta-btn {
    flex: 1 1 0;
    display: inline-flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2px;
    padding: .55rem .25rem;
    border-radius: 11px;
    background: transparent;
    color: #e9e9e9;
    text-decoration: none;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: background-color .2s ease, color .2s ease;
}
.mobile-cta-btn i { color: var(--home-accent, #f5b942); font-size: 1.1rem; }
.mobile-cta-btn:hover { background: rgba(245,185,66,.1); color: #fff; }
.mobile-cta-btn--primary {
    background: var(--home-accent, #f5b942);
    color: #111;
}
.mobile-cta-btn--primary i { color: #111; }
.mobile-cta-btn--primary:hover { background: #ffcb52; color: #111; }
@media (max-width: 767.98px) {
    .mobile-cta-bar { display: flex; }
    body.home-body  { padding-bottom: 86px; /* avoid footer occlusion */ }
}

/* ---- Homepage floating WhatsApp (scroll-to-top is global in app.css) ---- */
.home-float-btn--whatsapp {
    left: 22px;
    bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    background: #25d366;
    color: #fff;
    border-color: rgba(37,211,102,.55);
}
.home-float-btn--whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
}
@media (max-width: 767.98px) {
    /* Mobile bar already has WhatsApp — hide the duplicate floating button */
    .home-float-btn--whatsapp { display: none; }
}
