/* ─── GOOGLE FONTS IMPORT ───────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');


/* ─── RESET & TOKENS ─────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #ffce3c;
    --gold-h: #fcc110;
    --navy: #0B1340;
    --navy-mid: #172060;
    --white: #FFFFFF;
    --off: #F7F8FC;
    --border: #E8EAF0;
    --text: #111827;
    --muted: #6B7280;
    --light-muted: #9CA3AF;
    --sh-sm: 0 1px 4px rgba(0, 0, 0, .06);
    --sh-md: 0 4px 20px rgba(0, 0, 0, .09);
    --sh-lg: 0 16px 50px rgba(0, 0, 0, .14);
    --sh-xl: 0 32px 80px rgba(0, 0, 0, .18);
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --font: 'Inter', sans-serif;
    --font-h: 'Plus Jakarta Sans', sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);

    /* ── Unified Type Scale ── */
    --text-xs: 12px;
    /* labels, captions, badges, notes     */
    --text-sm: 13px;
    /* secondary text, muted descriptions  */
    --text-base: 15px;
    /* primary body copy                   */
    --text-md: 16px;
    /* slightly emphasized body, form text */
    --text-lg: 18px;
    /* card titles, subheadings            */
    --text-xl: 22px;
    /* stat numbers, accent callouts       */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font);
    cursor: pointer;
}


/* ─── UTILITIES ─────────────────────────────── */
.eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(240, 165, 0, .1);
    padding: 4px 12px;
    border-radius: 20px;
}

.eyebrow.light {
    background: rgba(240, 165, 0, .18);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    padding: 11px 22px;
    border-radius: var(--r-sm);
    border: none;
    transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--gold-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(240, 165, 0, .32);
}

.btn-primary.full {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: var(--text-md);
}

.btn-primary.large {
    padding: 14px 28px;
    font-size: var(--text-md);
}


/* ─── SHARED SECTION STYLES ─────────────────── */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-title span {
    color: var(--gold);
}

.section-title.light {
    color: #fff;
}

.section-sub {
    font-size: var(--text-md);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
}

.section-desc {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.8;
}

.section-desc.light {
    color: rgba(255, 255, 255, .68);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── POPUP ──────────────────────────────────── */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 19, 64, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: fadeIn .3s var(--ease);
}

.popup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

.popup-box {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 860px;
    max-height: 94vh;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-xl), 0 0 0 1px rgba(255, 255, 255, .08);
    animation: slideUp .4s cubic-bezier(.34, 1.56, .64, 1);
}

/* ── Close Button ── */
.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .25s var(--ease);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.popup-close:hover {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(90deg);
}

/* ── Form Side ── */
.popup-form-side {
    flex: 1;
    background: var(--white);
    padding: 40px 36px 36px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popup-title {
    font-family: var(--font-h);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin: 10px 0 6px;
}

.popup-title span {
    color: var(--gold);
}

.popup-desc {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pf-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pf-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pf-field label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text);
    letter-spacing: .03em;
}

.pf-field input,
.pf-field select {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text);
    background: var(--off);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.pf-field input:focus,
.pf-field select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240, 165, 0, .1);
}

.pf-field input::placeholder {
    color: #bbb;
    font-size: var(--text-sm);
}

.pf-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.pf-note {
    margin-top: 12px;
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pf-note i {
    color: var(--gold);
}

/* ── Photo Side ── */
.popup-photo-side {
    width: 300px;
    flex-shrink: 0;
    position: relative;
    background: var(--navy);
}

.popup-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
}

.popup-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 22px;
    background: linear-gradient(to top,
        rgba(11, 19, 64, .95) 0%,
        rgba(11, 19, 64, .5) 55%,
        transparent 100%);
}

.pp-brand {
    margin-bottom: 18px;
}

.pp-brand strong {
    display: block;
    color: #fff;
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
}

.pp-brand span {
    color: rgba(255, 255, 255, .5);
    font-size: var(--text-sm);
    font-weight: 400;
}

.pp-feats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.ppf {
    color: rgba(255, 255, 255, .82);
    font-size: var(--text-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ppf i {
    color: var(--gold);
    font-size: 12px;
}

.pp-stats {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pps {
    display: flex;
    flex-direction: column;
}

.pps strong {
    color: var(--gold);
    font-family: var(--font-h);
    font-size: var(--text-xl);
    font-weight: 800;
}

.pps span {
    color: rgba(255, 255, 255, .5);
    font-size: var(--text-xs);
    font-weight: 400;
}

.pps-div {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, .15);
}


/* ══════════════════════════════════════
   POPUP MEDIA QUERIES
══════════════════════════════════════ */
/* ══ POPUP — CENTERED ON ALL SCREENS ══ */

@media (max-width: 768px) {
    .popup-overlay {
        padding: 16px;
        align-items: center;        /* centered vertically */
        justify-content: center;
    }

    .popup-box {
        flex-direction: column;
        max-width: 480px;
        width: 100%;
        max-height: 92vh;
        border-radius: var(--r-xl);  /* rounded all sides — not bottom sheet */
        animation: slideUp .4s cubic-bezier(.34, 1.56, .64, 1);
    }

    /* Photo side becomes slim top banner */
    .popup-photo-side {
        width: 100%;
        height: 120px;
        flex-shrink: 0;
    }

    .popup-photo-overlay {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 14px 18px;
    }

    .pp-brand {
        margin-bottom: 0;
    }

    .pp-brand strong {
        font-size: var(--text-base);
    }

    /* Hide features — too cramped */
    .pp-feats {
        display: none;
    }

    .popup-form-side {
        padding: 24px 22px 28px;
        overflow-y: auto;
    }

    /* Keep 2-col row on tablet */
    .pf-row {
        grid-template-columns: 1fr 1fr;
    }

    .popup-close {
        top: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.45);
        border: 1px solid rgba(255, 255, 255, .3);
        color: #fff;
    }

    .popup-close:hover {
        background: var(--gold);
        color: var(--navy);
        transform: rotate(90deg);
    }
}

@media (max-width: 520px) {
    .popup-overlay {
        padding: 12px;
    }

    .popup-box {
        max-width: 100%;
        max-height: 94vh;
    }

    .popup-photo-side {
        height: 90px;
    }

    /* Hide stats on small screens */
    .pp-stats {
        display: none;
    }

    .popup-form-side {
        padding: 20px 16px 26px;
    }

    .popup-title {
        font-size: 20px;
    }

    .popup-desc {
        font-size: var(--text-xs);
        margin-bottom: 16px;
    }

    /* Single column on mobile */
    .pf-row {
        grid-template-columns: 1fr;
    }

    .pf-field input,
    .pf-field select {
        padding: 12px 14px;
        font-size: var(--text-md);
    }
}

@media (max-width: 360px) {
    .popup-overlay {
        padding: 10px;
    }

    .popup-photo-side {
        height: 70px;
    }

    .popup-form-side {
        padding: 16px 14px 22px;
    }

    .popup-title {
        font-size: 18px;
    }
}



/* ─── HEADER ─────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: background .3s var(--ease), backdrop-filter .3s var(--ease),
        box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: rgba(232, 234, 240, 0.5);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 66px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

/* ── Left ── */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Hamburger — hidden on desktop ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    border-radius: var(--r-sm);
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .25s var(--ease);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Logo ── */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.site-logo-text {
    font-family: var(--font-h);
    font-size: 1.2rem;          /* ← Increased from var(--text-base) */
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    white-space: nowrap;
}

.site-logo-text em {
    font-style: normal;
    color: var(--gold);
}

/* ── Center Nav ── */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.sn-link {
    color: var(--text);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .18s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.sn-link:hover {
    color: var(--navy);
    font-weight: 600;
}

.sn-link.active {
    color: var(--gold);
    font-weight: 700;
}

/* Hide Contact Us link on desktop nav — only shown in mobile menu */
.sn-contact-mobile {
    display: none;
}

/* ── Right: desktop quick contact + Contact button ── */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

/* ── Quick Contact Icons (desktop) ── */
.header-quick-contact {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hqc-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 14px;
    text-decoration: none;
    transition: background .2s var(--ease), transform .2s var(--ease);
    flex-shrink: 0;
}

.hqc-link:hover {
    background: var(--gold-h);
    transform: scale(1.1);
}

/* Tooltip */
.hqc-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: var(--r-sm);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), visibility .2s var(--ease), top .2s var(--ease);
    z-index: 999;
}

/* Arrow above tooltip */
.hqc-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: var(--navy);
}

.hqc-link:hover .hqc-tooltip {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 6px);
}

/* ── Mobile call icon — hidden on desktop ── */
.header-call-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 15px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .2s var(--ease);
}

.header-call-mobile:hover {
    background: var(--gold-h);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sn-link { padding: 8px 10px; }
    .header-inner { gap: 16px; }

    .site-logo-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {

    /* Header: [hamburger+logo] [auto] [call-icon] */
    .header-inner {
        grid-template-columns: 1fr auto auto;
        padding: 0 16px;
        gap: 10px;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide desktop nav by default */
    .site-nav {
        display: none;
    }

    /* Hide desktop right section */
    .header-right {
        display: none;
    }

    /* Show mobile call icon in header */
    .header-call-mobile {
        display: flex;
    }

    /* Mobile dropdown nav */
    .site-nav.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 10px 16px 16px;
        gap: 2px;
        z-index: 800;
        box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
        animation: slideDown .25s var(--ease);
    }

    /* All nav links in mobile menu */
    .sn-link {
        padding: 13px 14px;
        font-size: var(--text-md);
        width: 100%;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .sn-link:last-child {
        border-bottom: none;
    }

    /* Show Contact Us inside mobile menu */
    .sn-contact-mobile {
        display: flex;
        margin-top: 8px;
        background: var(--gold);
        color: var(--navy);
        font-weight: 700;
        border-radius: var(--r-sm);
        padding: 14px 16px;
        justify-content: center;
        border-bottom: none !important;
        transition: background .2s var(--ease);
    }

    .sn-contact-mobile:hover {
        background: var(--gold-h);
        color: var(--navy);
    }

    .sn-contact-mobile i {
        font-size: 14px;
    }

    .site-logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .site-logo img {
        height: 34px;
    }

    .site-logo-text {
        font-size: 0.88rem;
    }
}

/* ── Slide down animation for mobile menu ── */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ─── PAGE BANNER ────────────────────────────── */
.page-banner {
    position: relative;
    width: 100%;
    min-height: 380px;
    margin-top: 66px;         /* header height offset */
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  
  /* Background image */
  .pb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    transform: scale(1.04);
  }
  
  /* Dark overlay */
  .pb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(11,19,64,.88) 0%,
      rgba(11,19,64,.72) 50%,
      rgba(23,32,96,.80) 100%
    );
    z-index: 1;
  }
  
  /* Gold shimmer top line */
  .page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 3;
  }
  
  /* ── Decorative element base ── */
  .pb-deco {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.18;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  }
  
  /* Cone — bottom left */
  .pb-cone-left {
    width: 110px;
    bottom: 48px;
    left: 6vw;
    opacity: 0.22;
    transform: rotate(-6deg);
    animation: floatDeco 4s ease-in-out infinite;
  }
  
  /* Cone — bottom right */
  .pb-cone-right {
    width: 90px;
    bottom: 52px;
    right: 8vw;
    opacity: 0.18;
    transform: rotate(8deg) scaleX(-1);
    animation: floatDeco 5s ease-in-out infinite reverse;
  }
  
  /* Traffic sign — right side */
  .pb-sign-right {
    width: 130px;
    top: 50%;
    right: 7vw;
    transform: translateY(-50%) rotate(4deg);
    opacity: 0.16;
    animation: floatDeco 6s ease-in-out infinite;
  }
  
  /* Steering wheel — right */
  .pb-steer-right {
    width: 160px;
    top: 50%;
    right: 6vw;
    transform: translateY(-50%) rotate(12deg);
    opacity: 0.14;
    animation: spinSlow 12s linear infinite;
  }
  
  /* Map pin — right */
  .pb-pin-right {
    width: 100px;
    top: 30%;
    right: 8vw;
    opacity: 0.20;
    animation: floatDeco 5s ease-in-out infinite;
  }
  
  /* Road marking — bottom */
  .pb-mark-bottom {
    width: 200px;
    bottom: 40px;
    right: 18vw;
    opacity: 0.12;
    transform: rotate(-2deg);
  }
  
  /* ── Inner content ── */
  .pb-inner {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5vw 100px;
  }
  
  .pb-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 600px;
  }
  
  .pb-title {
    font-family: var(--font-h);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
  .pb-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--gold), #FFD060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .pb-sub {
    font-size: var(--text-md);
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    max-width: 480px;
  }
  
  /* Breadcrumb */
  .pb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
  }
  .pb-breadcrumb a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
  }
  .pb-breadcrumb a:hover { color: var(--gold); }
  .pb-breadcrumb i {
    font-size: 9px;
    color: rgba(255,255,255,.3);
  }
  .pb-breadcrumb span {
    font-size: var(--text-sm);
    color: var(--gold);
    font-weight: 600;
  }
  
  /* ── Bottom wave ── */
  .pb-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    z-index: 4;
    line-height: 0;
  }
  .pb-wave svg {
    width: 100%;
    height: 60px;
    display: block;
  }
  
  /* ── Animations ── */
  @keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50%       { transform: translateY(-12px) rotate(-6deg); }
  }
  @keyframes spinSlow {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
  }
  
  /* ── Responsive ── */
  @media (max-width: 860px) {
    .page-banner { min-height: 300px; }
    .pb-bg { background-attachment: scroll; }
    .pb-sign-right,
    .pb-steer-right,
    .pb-pin-right  { display: none; }
    .pb-cone-left  { width: 80px; }
    .pb-cone-right { width: 70px; }
  }
  @media (max-width: 520px) {
    .page-banner   { min-height: 260px; }
    .pb-inner      { padding: 60px 5vw 90px; }
    .pb-title      { font-size: 36px; }
    .pb-cone-left,
    .pb-cone-right { display: none; }
  }
  

  /* ═══════════════════════════════════════════════
   ABOUT ACTING DRIVER SECTION
═══════════════════════════════════════════════ */
.about-ad-section {
    padding: 100px 5vw;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle background blob */
.about-ad-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(240, 165, 0, .04);
    pointer-events: none;
}

.about-ad-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ─── LEFT — Image ───────────────────────────── */
.about-ad-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-ad-img-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.about-ad-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--r-xl);
    display: block;
    box-shadow: var(--sh-lg);
    position: relative;
    z-index: 1;
}

/* Decorative dashed ring */
.about-ad-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: calc(var(--r-xl) + 10px);
    border: 2px dashed rgba(240, 165, 0, .2);
    pointer-events: none;
    z-index: 0;
}

/* ── Floating Badges ── */
.about-ad-badge {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
}

.about-ad-badge.badge-top {
    top: 24px;
    left: -18px;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 700;
    padding: 9px 16px;
    border-radius: var(--r-sm);
    box-shadow: 0 6px 20px rgba(240, 165, 0, .35);
    animation: floatY 3s ease-in-out infinite;
}

.about-ad-badge.badge-top i { font-size: 13px; }

.about-ad-badge.badge-bottom {
    bottom: 28px;
    right: -18px;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 18px;
    box-shadow: var(--sh-md);
    animation: floatY 3.5s ease-in-out infinite reverse;
}

.adb-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: var(--r-sm);
    background: rgba(11, 19, 64, .07);
    border: 1.5px solid rgba(11, 19, 64, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy);
    flex-shrink: 0;
}

.adb-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.adb-body strong {
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    white-space: nowrap;
}

.adb-body span {
    font-family: var(--font);
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0px);  }
    50%       { transform: translateY(-8px); }
}

/* ─── RIGHT — Content ────────────────────────── */
.about-ad-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Key Points ── */
.about-ad-points {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.aap-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    border: 1.5px solid transparent;
    background: var(--off);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease),
                transform .25s var(--ease), background .25s;
}

.aap-item:hover {
    background: var(--white);
    border-color: rgba(240, 165, 0, .3);
    box-shadow: var(--sh-sm);
    transform: translateX(4px);
}

.aap-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: var(--r-sm);
    background: rgba(240, 165, 0, .1);
    border: 1.5px solid rgba(240, 165, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
    transition: background .25s, color .25s, border-color .25s;
}

.aap-item:hover .aap-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

.aap-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aap-body strong {
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.aap-body span {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.65;
}

/* ── CTA Row ── */
.about-ad-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-ad-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border: 1.5px solid var(--border);
    padding: 13px 22px;
    border-radius: var(--r-sm);
    background: var(--white);
    transition: border-color .2s, background .2s, transform .2s;
}

.about-ad-call:hover {
    border-color: var(--gold);
    background: rgba(240, 165, 0, .06);
    transform: translateY(-2px);
}

.about-ad-call i {
    font-size: 14px;
    color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-ad-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-ad-left { order: -1; }

    .about-ad-img-wrap { max-width: 480px; }

    .about-ad-img { height: 420px; }
}

@media (max-width: 640px) {
    .about-ad-section { padding: 72px 4vw; }

    .about-ad-img { height: 320px; }

    .about-ad-badge.badge-top  { left: 10px; top: 14px; }
    .about-ad-badge.badge-bottom { right: 10px; bottom: 14px; }

    .about-ad-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .about-ad-call { justify-content: center; }
}

@media (max-width: 400px) {
    .about-ad-img { height: 260px; }
    .about-ad-badge.badge-bottom { display: none; }
}


/* ═══════════════════════════════════════════════
   HOW IT WORKS SECTION
═══════════════════════════════════════════════ */
.hiw-section {
    padding: 100px 5vw;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* ── Background decorations ── */
.hiw-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.hiw-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.circ-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(240,165,0,.07) 0%, transparent 70%);
}

.circ-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(240,165,0,.05) 0%, transparent 70%);
}

/* ── Inner ── */
.hiw-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Override section-header colors for dark bg */
.hiw-section .section-title      { color: var(--white); }
.hiw-section .section-title span { color: var(--gold);  }
.hiw-section .section-sub        { color: rgba(255,255,255,.65); }
.hiw-section .eyebrow            {
    color: var(--gold);
    background: rgba(240,165,0,.12);
    border-color: rgba(240,165,0,.25);
}

/* ── Steps Track ── */
.hiw-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    padding-bottom: 10px;
}

/* ── Connector Line ── */
.hiw-connector {
    position: absolute;
    top: 50px;                         /* aligns with center of icon */
    left: calc(12.5%);                 /* starts at center of step 1 */
    width: calc(75%);                  /* ends at center of step 4 */
    height: 2px;
    background: rgba(255,255,255,.08);
    z-index: 0;
    overflow: hidden;
    border-radius: 2px;
}

.hiw-connector-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), rgba(240,165,0,.4));
    border-radius: 2px;
    transition: width 1.6s cubic-bezier(.22,1,.36,1);
}

/* Animate fill when section is visible */
.hiw-section.in-view .hiw-connector-fill {
    width: 100%;
}

/* ── Each Step ── */
.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

/* ── Icon Area ── */
.hiw-step-top { position: relative; }

.hiw-icon-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulsing outer ring */
.hiw-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(240,165,0,.25);
    animation: ringPulse 2.5s ease-in-out infinite;
}

.hiw-step:nth-child(2) .hiw-icon-ring { animation-delay: .3s; }
.hiw-step:nth-child(3) .hiw-icon-ring { animation-delay: .6s; }
.hiw-step:nth-child(4) .hiw-icon-ring { animation-delay: .9s; }

@keyframes ringPulse {
    0%, 100% { transform: scale(1);    opacity: 1;  }
    50%       { transform: scale(1.18); opacity: .4; }
}

/* Icon circle */
.hiw-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(240,165,0,.1);
    border: 1.5px solid rgba(240,165,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    transition: background .3s, border-color .3s, transform .3s;
    z-index: 1;
}

.hiw-step:hover .hiw-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: scale(1.08);
}

/* Step number badge */
.hiw-step-num {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--navy);
    z-index: 2;
}

/* ── Step Card ── */
.hiw-step-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    padding: 22px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    transition: background .3s, border-color .3s, transform .3s;
    backdrop-filter: blur(6px);
}

.hiw-step:hover .hiw-step-card {
    background: rgba(255,255,255,.07);
    border-color: rgba(240,165,0,.25);
    transform: translateY(-4px);
}

.hiw-step-card h3 {
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.hiw-step-card p {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin: 0;
}

/* Tag pill */
.hiw-step-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(240,165,0,.1);
    border: 1px solid rgba(240,165,0,.2);
    color: var(--gold);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
    align-self: center;
}

.hiw-step-tag i { font-size: 10px; }

/* ── Bottom CTA Strip ── */
.hiw-cta-strip {
    margin-top: 64px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    backdrop-filter: blur(6px);
}

.hiw-cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hiw-cta-left > i {
    font-size: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.hiw-cta-left div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hiw-cta-left strong {
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--white);
}

.hiw-cta-left span {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: rgba(255,255,255,.6);
}

.hiw-cta-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* WhatsApp button */
.hiw-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: var(--r-sm);
    background: #25D366;
    color: var(--white);
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.hiw-wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.hiw-wa-btn i { font-size: 16px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hiw-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .hiw-connector { display: none; }

    .hiw-cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .hiw-section { padding: 72px 4vw; }

    .hiw-track {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hiw-step { flex-direction: row; align-items: flex-start; }
    .hiw-step-card { text-align: left; }
    .hiw-step-tag  { align-self: flex-start; }

    .hiw-cta-btns {
        width: 100%;
        flex-direction: column;
    }

    .hiw-cta-btns a { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE US SECTION
═══════════════════════════════════════════════ */
.wcu-section {
    padding: 100px 5vw;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* ── Decorative dots ── */
.wcu-deco-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.wdd-1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: 10%;
    background: radial-gradient(circle, rgba(240,165,0,.07) 0%, transparent 70%);
}

.wdd-2 {
    width: 240px;
    height: 240px;
    bottom: 40px;
    left: 5%;
    background: radial-gradient(circle, rgba(11,19,64,.05) 0%, transparent 70%);
}

/* ── Decorative lines ── */
.wcu-deco-line {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.wdl-1 {
    width: 1px;
    height: 60%;
    top: 20%;
    right: 32%;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.wdl-2 {
    width: 40%;
    height: 1px;
    bottom: 30%;
    left: 0;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ── Inner layout ── */
.wcu-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 38fr 62fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ─── LEFT ───────────────────────────────────── */
.wcu-left {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    width: 100%;
}

.wcu-left .section-title {
    text-align: left;
}

.wcu-left .section-sub {
    text-align: left;
    max-width: 100%;
}

.wcu-left .eyebrow {
    align-self: flex-start;
}

.wcu-left .btn-primary {
    align-self: flex-start;
}

/* ── Score Card ── */
.wcu-score-card {
    width: 100%;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wsc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.wsc-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.wsc-stat strong {
    font-family: var(--font-h);
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.wsc-stat span {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 500;
    color: var(--muted);
    text-align: center;
}

.wsc-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* Progress bar */
.wsc-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wsc-bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--navy);
}

.wsc-bar-pct {
    color: var(--gold);
    font-weight: 800;
    font-size: var(--text-base);
}

.wsc-bar-track {
    height: 9px;
    background: var(--border);
    border-radius: 9px;
    overflow: hidden;
}

.wsc-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), #FFD060);
    border-radius: 9px;
    transition: width 1.4s cubic-bezier(.22,1,.36,1);
}

/* ─── RIGHT — Cards Grid ─────────────────────── */
.wcu-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 100%;
}

/* ── Feature Card ── */
.wcu-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease),
                transform .3s var(--ease);
}

/* Gold top border slide */
.wcu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #FFD060);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

.wcu-card:hover {
    box-shadow: var(--sh-md);
    border-color: rgba(240,165,0,.3);
    transform: translateY(-5px);
}

.wcu-card:hover::before {
    transform: scaleX(1);
}

/* Icon */
.wcu-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-sm);
    background: rgba(240,165,0,.08);
    border: 1.5px solid rgba(240,165,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
    transition: background .3s, color .3s, border-color .3s;
}

.wcu-card:hover .wcu-card-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

/* Body */
.wcu-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wcu-card-body h3 {
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin: 0;
}

.wcu-card-body p {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Watermark number */
.wcu-card-num {
    position: absolute;
    bottom: 10px;
    right: 14px;
    font-family: var(--font-h);
    font-size: 52px;
    font-weight: 900;
    color: rgba(11,19,64,.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color .3s;
}

.wcu-card:hover .wcu-card-num {
    color: rgba(240,165,0,.07);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .wcu-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        align-items: start;
    }

    .wcu-left {
        position: static;
        top: unset;
        transform: none;
        align-items: center;
        text-align: center;
    }

    .wcu-left .section-title,
    .wcu-left .section-sub {
        text-align: center;
    }

    .wcu-left .eyebrow     { align-self: center; }
    .wcu-left .btn-primary { align-self: center; }

    .wsc-row { justify-content: center; }

    .wcu-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .wcu-section { padding: 72px 4vw; }

    .wcu-right {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wsc-stat strong { font-size: 18px; }
    .wcu-card        { padding: 22px 18px; }
    .wcu-score-card  { padding: 16px; }
}

@media (max-width: 400px) {
    .wsc-divider { display: none; }

    .wsc-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .wsc-stat { align-items: flex-start; }
}


/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
    padding: 100px 5vw;
    position: relative;
    overflow: hidden;
}

/* ── Background image ── */
.cta-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('../images/acting-driver/acting-driver-cta-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.03);
    filter: saturate(1.1);
}

/* ── Dark overlay ── */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11,19,64,.96) 0%,
        rgba(11,19,64,.90) 50%,
        rgba(11,19,64,.82) 100%
    );
    z-index: 1;
}

/* ── Grid texture ── */
.cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 2;
}

/* ── Decorative circles ── */
.cta-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.cc-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -100px;
    border: 1px solid rgba(240,165,0,.08);
}

.cc-2 {
    width: 340px;
    height: 340px;
    top: -60px;
    left: -30px;
    border: 1px solid rgba(240,165,0,.12);
}

.cc-3 {
    width: 700px;
    height: 700px;
    bottom: -300px;
    right: -200px;
    background: radial-gradient(circle, rgba(240,165,0,.05) 0%, transparent 65%);
}

/* ── Inner ── */
.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* ─── LEFT ───────────────────────────────────── */
.cta-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Eyebrow override for dark bg */
.cta-eyebrow {
    color: var(--gold) !important;
    background: rgba(240,165,0,.12) !important;
    border-color: rgba(240,165,0,.25) !important;
}

.cta-title {
    font-family: var(--font-h);
    font-size: clamp(32px, 3.8vw, 56px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.cta-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--gold), #FFD060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-sub {
    font-family: var(--font);
    font-size: var(--text-base);
    color: rgba(255,255,255,.68);
    line-height: 1.75;
    max-width: 480px;
    margin: 0;
}

/* Trust badges */
.cta-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255,255,255,.85);
    backdrop-filter: blur(6px);
    transition: background .2s, border-color .2s;
}

.cta-badge:hover {
    background: rgba(240,165,0,.12);
    border-color: rgba(240,165,0,.3);
    color: var(--gold);
}

.cta-badge i {
    font-size: 12px;
    color: var(--gold);
}

/* ─── RIGHT — Action Card ────────────────────── */
.cta-right {
    display: flex;
    justify-content: flex-end;
}

.cta-card {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 32px;
    box-shadow: 0 32px 80px rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card head */
.cta-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--r-sm);
    background: rgba(240,165,0,.1);
    border: 1.5px solid rgba(240,165,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.cta-card-head strong {
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--navy);
    display: block;
    line-height: 1.2;
}

.cta-card-head span {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    display: block;
    margin-top: 3px;
}

.cta-card-divider {
    height: 1px;
    background: var(--border);
}

/* Option buttons */
.cta-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-option-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease),
                background .2s, border-color .2s;
}

.cta-option-btn:hover {
    transform: translateX(4px);
    box-shadow: var(--sh-sm);
}

/* Primary — Call */
.cta-option-btn.primary {
    background: var(--navy);
    border-color: var(--navy);
}

.cta-option-btn.primary .cob-icon {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.15);
}

.cta-option-btn.primary .cob-body strong { color: var(--white); }
.cta-option-btn.primary .cob-body span   { color: rgba(255,255,255,.65); }
.cta-option-btn.primary .cob-arrow       { color: var(--gold); }

.cta-option-btn.primary:hover {
    background: #0d1850;
    box-shadow: 0 6px 20px rgba(11,19,64,.3);
}

/* WhatsApp */
.cta-option-btn.whatsapp {
    background: #f0fff6;
    border-color: #b2f0cc;
}

.cta-option-btn.whatsapp .cob-icon {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.cta-option-btn.whatsapp .cob-body strong { color: #1a7a40; }
.cta-option-btn.whatsapp .cob-body span   { color: #3aaa6a; }
.cta-option-btn.whatsapp .cob-arrow       { color: #25D366; }

.cta-option-btn.whatsapp:hover {
    background: #e0fff0;
    box-shadow: 0 6px 20px rgba(37,211,102,.18);
}

/* Outline — Form */
.cta-option-btn.outline {
    background: var(--off);
    border-color: var(--border);
}

.cta-option-btn.outline .cob-icon {
    background: rgba(240,165,0,.1);
    color: var(--gold);
    border-color: rgba(240,165,0,.2);
}

.cta-option-btn.outline .cob-body strong { color: var(--navy); }
.cta-option-btn.outline .cob-body span   { color: var(--muted); }
.cta-option-btn.outline .cob-arrow       { color: var(--navy); }

.cta-option-btn.outline:hover {
    background: var(--white);
    border-color: rgba(240,165,0,.35);
}

/* Shared icon + body */
.cob-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--r-sm);
    border: 1.5px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.cob-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.cob-body strong {
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1.2;
}

.cob-body span {
    font-family: var(--font);
    font-size: 12px;
    line-height: 1;
}

.cob-arrow {
    font-size: 12px;
    flex-shrink: 0;
    transition: transform .2s;
}

.cta-option-btn:hover .cob-arrow {
    transform: translateX(3px);
}

/* Bottom note */
.cta-card-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    margin: 0;
    padding-top: 4px;
    border-top: 1px solid var(--border);
}

.cta-card-note i {
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-right {
        justify-content: center;
    }

    .cta-card {
        max-width: 100%;
    }

    .cta-sub { max-width: 100%; }
}

@media (max-width: 640px) {
    .cta-section { padding: 72px 4vw; }

    .cta-title { font-size: 32px; }

    .cta-badges { gap: 8px; }

    .cta-badge { font-size: 12px; padding: 6px 12px; }

    .cta-card { padding: 24px 20px; }
}

@media (max-width: 400px) {
    .cta-title { font-size: 28px; }

    .cta-badges { flex-direction: column; align-items: flex-start; }

    .cta-option-btn { padding: 12px 14px; }
}

/* ═══════════════════════════════════════════════
   FAQ SECTION — Acting Driver
   (matches home page style exactly)
═══════════════════════════════════════════════ */
.faq-section {
    padding: 100px 5vw;
    background: var(--off);
}

.faq-inner-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Two column grid */
.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

/* ── FAQ Item ── */
.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    background: var(--white);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}

.faq-item.open {
    border-color: rgba(240, 165, 0, .35);
    box-shadow: var(--sh-sm);
}

/* Question button */
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--navy);
    transition: color .2s;
}

.faq-q:hover { color: var(--gold); }

/* Icon wrap */
.faq-icon-wrap {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--off);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform .3s var(--ease), color .2s,
                background .2s, border-color .2s;
}

.faq-item.open .faq-icon-wrap {
    transform: rotate(45deg);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* Answer panel */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.faq-a p {
    padding: 0 20px 18px;
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin: 0;
}

.faq-a p strong { color: var(--navy); }

.faq-item.open .faq-a {
    max-height: 300px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 640px) {
    .faq-section   { padding: 72px 4vw; }
    .faq-q         { padding: 16px; font-size: var(--text-sm); }
    .faq-a p       { padding: 0 16px 16px; padding-top: 12px; }
}

/* ========================
   FLOATING WHATSAPP BUTTON
   ======================== */
   .wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.15);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s;
    animation: waPulse 2.4s ease-in-out infinite;
  }
  
  .wa-float:hover {
    background: #1ebe58;
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.15);
  }
  
  /* Tooltip */
  .wa-tooltip {
    position: absolute;
    left: 66px;
    bottom: 50%;
    transform: translateY(50%);
    background: #fff;
    color: #0b1340;
    font-family: var(--font, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    border: 1.5px solid rgba(37,211,102,0.25);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(50%) translateX(-6px);
  }
  
  .wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(50%) translateX(0);
  }
  
  /* Pulse ring animation */
  @keyframes waPulse {
    0%, 100% {
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.35);
    }
    50% {
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0);
    }
  }
  
  /* Mobile adjustments */
  @media (max-width: 480px) {
    .wa-float {
      bottom: 18px;
      left: 18px;
      width: 50px;
      height: 50px;
      font-size: 24px;
    }
    .wa-tooltip {
      display: none; /* hide tooltip on mobile, tap is enough */
    }
  }
  

/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: -40px;
    width: 420px;
    height: 160px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' fill='none'%3E%3Cellipse cx='100' cy='55' rx='95' ry='6' fill='rgba(255,255,255,0.03)'/%3E%3Cpath d='M15 40 Q25 20 55 18 Q75 10 100 12 Q130 10 155 18 Q175 22 185 40 Z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.footer-top {
    position: relative;
    padding: 60px 5vw 60px;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
}

.footer-car {
    position: absolute;
    bottom: 0;
    right: 70%;
    width: 40%;
    max-width: 650px;
    height: 300px;
    z-index: 2;
    pointer-events: none;
}

.footer-car-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.footer-car-slide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    opacity: 0;
    transform: translateX(-110%);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: transform, opacity;
}

.footer-car-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.footer-car-slide.exit {
    opacity: 0;
    transform: translateX(110%);
}

.footer-car-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 6px;
    z-index: 5;
    pointer-events: all;
}

.fcd {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.fcd.active {
    background: var(--gold);
    transform: scale(1.3);
}

.footer-content {
    margin-left: 25%;
    width: 70%;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 36px;
    position: relative;
    z-index: 3;
    padding-left: 16px;
}

.fc-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FIXED: footer brand name — fluid, Plus Jakarta Sans 800 */
.footer-brand-title {
    font-family: var(--font-h);
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.footer-brand-title span {
    color: var(--gold);
}

.fc-brand>p {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, .45);
    line-height: 1.75;
    max-width: 240px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    transition: background .2s, color .2s, border-color .2s;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* FIXED: footer column headings — Plus Jakarta Sans 700, --text-xs uppercase */
.fc-col h4 {
    font-family: var(--font-h);
    font-size: var(--text-xs);
    font-weight: 700;
    color: #fff;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fql-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* FIXED: footer links — Inter 400, --text-base */
.fql-list li a {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s;
}

.fql-list li a i {
    font-size: 9px;
    color: var(--gold);
    flex-shrink: 0;
}

.fql-list li a:hover {
    color: var(--gold);
}

.foh-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.foh-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 0;
}

/* FIXED: hours day — Inter 600, --text-base */
.foh-day {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 600;
    color: #fff;
}

/* FIXED: hours time — Inter 400, --text-sm */
.foh-time {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, .45);
}

.foh-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
}

.fci-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fci-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.fci-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(240, 165, 0, .1);
    border: 1px solid rgba(240, 165, 0, .2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gold);
    margin-top: 1px;
}

.fci-item span,
.fci-item a {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    transition: color .2s;
}

.fci-item a:hover {
    color: var(--gold);
}

/* FOOTER BOTTOM BAR */
.footer-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 16px 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 400;
    color: rgba(255, 255, 255, .3);
    text-align: center;
    margin: 0;
}

.footer-divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    flex-shrink: 0;
}

.footer-powered {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 400;
    color: rgba(255, 255, 255, .3);
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nexo-link {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s, opacity 0.2s;
}
.nexo-link i {
    font-size: 10px;
    color: var(--gold);
}
.nexo-link:hover {
    color: #fff;
    opacity: 0.9;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        padding: 14px 5vw;
    }
    .footer-divider-dot {
        display: none;
    }
}


@media (max-width: 1200px) {
    .footer-content {
        margin-left: 28%;
        width: 72%;
        gap: 28px;
    }

    .footer-car {
        width: 40%;
    }
}

@media (max-width: 1024px) {
    .footer-car {
        width: 40%;
        right: 68%;
    }

    .footer-content {
        margin-left: 30%;
        width: 70%;
        grid-template-columns: 1fr 1fr;
        gap: 32px 36px;
    }

    .fc-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .footer-top {
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0;
        min-height: unset;
    }

    .footer-car {
        position: relative;
        width: 80%;
        max-width: 400px;
        height: 150px;
        bottom: auto;
        right: auto;
        left: auto;
        margin: 0 auto;
    }

    .footer-content {
        margin-left: 0;
        width: 100%;
        padding-left: 0;
        padding: 48px 0 48px;
        grid-template-columns: 1fr 1fr;
        gap: 32px 40px;
    }

    .fc-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .fc-brand {
        grid-column: auto;
    }

    .footer-brand-title {
        font-size: 16px;
    }

    .footer-car-track {
        height: 160px;
    }
}