/* ─── 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; }
  }
  




  /* ═══════════════════════════════════════════════
   OUR STORY SECTION
═══════════════════════════════════════════════ */
.story-section {
    padding: 100px 5vw;
    background: var(--white);
    overflow: hidden;
}

.story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ─── LEFT — Media Block ────────────────────── */
.story-media {
    position: relative;
    flex-shrink: 0;
}

/* Main image */
.story-img-main {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--sh-xl);
}

.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
}

.story-img-main:hover img {
    transform: scale(1.04);
}

/* Gold shimmer top */
.story-img-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
    pointer-events: none;
}

/* ── Floating badge — top right ── */
.story-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--navy);
    border: 4px solid var(--white);
    box-shadow: var(--sh-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    gap: 2px;
}

.sb-num {
    font-family: var(--font-h);
    font-size: var(--text-xl);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.sb-text {
    font-family: var(--font);
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    line-height: 1.3;
    letter-spacing: .02em;
}

/* ── Floating card — bottom left ── */
.story-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--sh-lg);
    z-index: 5;
    min-width: 190px;
}

.sc-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    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);
}

.sc-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sc-body strong {
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.sc-body span {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--muted);
}

/* ─── RIGHT — Content ───────────────────────── */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-content .eyebrow {
    align-self: flex-start;
}

.story-content .section-title {
    font-family: var(--font-h);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
    text-align: left;
}

.story-content .section-title span {
    color: var(--gold);
}

.story-content .section-desc {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.8;
}

/* ── Story Points ── */
.story-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(240, 165, 0, .12);
    border: 1.5px solid rgba(240, 165, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--gold);
    flex-shrink: 0;
}

.sp-item span {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .story-inner { gap: 60px; }
}

@media (max-width: 860px) {
    .story-section { padding: 80px 5vw; }

    .story-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-media {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .story-img-main {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 580px) {
    .story-section { padding: 64px 4vw; }

    .story-badge {
        width: 80px;
        height: 80px;
        top: -14px;
        right: -14px;
    }

    .sb-num { font-size: var(--text-lg); }

    .story-card {
        left: -10px;
        bottom: -16px;
        padding: 12px 14px;
        min-width: 170px;
    }

    .sc-body strong { font-size: var(--text-base); }

    .sp-item span { font-size: var(--text-sm); }
}


/* ═══════════════════════════════════════════════
   VISION MISSION VALUES
═══════════════════════════════════════════════ */
.vmv-section {
    padding: 100px 5vw;
    background: var(--white);
}

.vmv-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* Header */
.vmv-inner .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 620px;
    margin: 0 auto;
}

/* ─── Top Row — Vision + Mission ────────────── */
.vmv-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── Base VMV Card ── */
.vmv-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: var(--sh-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.vmv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}

/* Background pattern blob */
.vmv-card-bg {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transition: transform .4s var(--ease);
}

.vmv-card:hover .vmv-card-bg {
    transform: scale(1.15);
}

.vmv-card-inner {
    position: relative;
    z-index: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── Vision Card — Navy ── */
.vmv-vision {
    background: var(--navy);
    border-color: rgba(255, 255, 255, .08);
}

.vmv-vision .vmv-card-bg {
    background: rgba(240, 165, 0, .07);
}

.vmv-vision:hover {
    border-color: rgba(240, 165, 0, .2);
}

.vmv-vision .vmv-icon {
    background: rgba(240, 165, 0, .15);
    border-color: rgba(240, 165, 0, .3);
    color: var(--gold);
}

.vmv-vision:hover .vmv-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.vmv-vision .vmv-label { color: var(--gold); }
.vmv-vision h3         { color: var(--white); }
.vmv-vision p          { color: rgba(255, 255, 255, .6); }

/* ── Mission Card — Gold ── */
.vmv-mission {
    background: var(--gold);
    border-color: transparent;
}

.vmv-mission .vmv-card-bg {
    background: rgba(11, 19, 64, .06);
}

.vmv-mission:hover {
    border-color: transparent;
}

.vmv-mission .vmv-icon {
    background: rgba(255, 255, 255, .25);
    border-color: rgba(255, 255, 255, .4);
    color: var(--navy);
}

.vmv-mission:hover .vmv-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

.vmv-mission .vmv-label { color: var(--navy); opacity: .7; }
.vmv-mission h3         { color: var(--navy); }
.vmv-mission p          { color: rgba(11, 19, 64, .65); }

/* ── Shared card elements ── */
.vmv-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: background .25s, color .25s, border-color .25s;
    border: 1.5px solid transparent;
    flex-shrink: 0;
}

.vmv-label {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vmv-card h3 {
    font-family: var(--font-h);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    line-height: 1.3;
}

.vmv-card p {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.8;
}

/* ─── Values Row ─────────────────────────────── */
.vmv-values {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ── Core Values Header — matches section-header style ── */
.vmv-val-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 0;
}


/* ── Values Grid — equal height columns ── */
.vmv-val-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}

/* ── Value Card ── */
.vmv-val-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease),
                border-color .3s var(--ease), background .3s var(--ease);
}

.vmv-val-card:hover {
    background: var(--white);
    border-color: rgba(240, 165, 0, .3);
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
}

/* ── Icon ── */
.vmv-val-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    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: 17px;
    color: var(--gold);
    flex-shrink: 0;
    margin-bottom: 20px;
    transition: background .25s, color .25s, border-color .25s;
}

.vmv-val-card:hover .vmv-val-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

/* ── Title ── */
.vmv-val-card strong {
    font-family: var(--font-h);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.25;
    min-height: 56px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

/* ── Description ── */
.vmv-val-card span {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .vmv-val-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmv-val-card strong {
        min-height: 48px;
    }
}

@media (max-width: 860px) {
    .vmv-section { padding: 80px 5vw; }
    .vmv-inner   { gap: 40px; }

    .vmv-top {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vmv-card-inner { padding: 32px 28px; }

    .vmv-val-header span {
        font-size: clamp(16px, 4vw, 22px);
    }
}

@media (max-width: 580px) {
    .vmv-section { padding: 64px 4vw; }

    .vmv-val-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .vmv-card-inner { padding: 26px 22px; }
    .vmv-val-card   { padding: 22px 18px; }

    .vmv-val-card strong {
        font-size: clamp(15px, 4vw, 18px);
        min-height: 44px;
    }

    .vmv-val-card span {
        font-size: var(--text-sm);
    }

    .vmv-val-header span {
        font-size: clamp(15px, 4vw, 18px);
    }
}

@media (max-width: 400px) {
    .vmv-val-grid {
        grid-template-columns: 1fr;
    }

    .vmv-val-card strong {
        font-size: var(--text-lg);
        min-height: unset;
    }

    .vmv-val-card span {
        font-size: var(--text-base);
    }

    .vmv-val-header span {
        font-size: var(--text-lg);
    }
}


/* ═══════════════════════════════════════════════
   WHY CHOOSE US — BENTO GRID
═══════════════════════════════════════════════ */
.why-section {
    padding: 100px 5vw;
    background: var(--off);
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* Header */
.why-inner .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 620px;
    margin: 0 auto;
}

/* ─── Bento Grid ────────────────────────────── */
.why-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ─── Base Card ─────────────────────────────── */
.wb-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--sh-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease),
                border-color .3s var(--ease);
    overflow: hidden;
    position: relative;
}

.wb-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: rgba(240, 165, 0, .3);
}

/* Icon */
.wb-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);
    transition: background .25s, color .25s, border-color .25s;
}

.wb-card:hover .wb-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

.wb-card h3 {
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.wb-card p {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── Card 1 — Featured Large ───────────────── */
.wb-featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: var(--navy);
    border-color: rgba(255, 255, 255, .08);
    justify-content: flex-end;
    padding: 32px 28px;
    min-height: 400px;
}

.wb-featured::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(240, 165, 0, .06);
    pointer-events: none;
}

.wb-featured::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(240, 165, 0, .04);
    pointer-events: none;
}

.wb-featured:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 165, 0, .2);
}

.wb-featured .wb-icon {
    background: rgba(240, 165, 0, .15);
    border-color: rgba(240, 165, 0, .3);
    color: var(--gold);
}

.wb-featured:hover .wb-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.wb-tag {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.wb-featured h3 {
    font-size: var(--text-xl);
    font-weight: 900;
    color: var(--white);
}

.wb-featured p {
    color: rgba(255, 255, 255, .65);
}

.wb-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.wb-num {
    font-family: var(--font-h);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.wb-label {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
}

/* ─── Gold Card ──────────────────────────────── */
.wb-gold {
    background: var(--gold);
    border-color: transparent;
}

.wb-gold .wb-icon {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .3);
    color: var(--navy);
}

.wb-gold:hover .wb-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

.wb-gold h3 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.wb-gold p {
    color: rgba(11, 19, 64, .7);
    font-size: var(--text-sm);
}

.wb-gold:hover { border-color: transparent; }

/* ─── Small Cards ────────────────────────────── */
.wb-small h3 {
    font-size: var(--text-base);
    font-weight: 800;
}

.wb-small p {
    font-size: var(--text-sm);
    color: var(--muted);
}

/* ─── Wide Card ──────────────────────────────── */
.wb-wide {
    grid-column: span 3;
}

.wb-wide-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex: 1;
}

.wb-wide-body > div:first-child { flex: 1; }

.wb-wide h3 {
    font-size: var(--text-lg);
    margin-bottom: 8px;
}

/* Time chips */
.wb-time-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.wb-time-chips span {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--navy);
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 6px 14px;
    white-space: nowrap;
    text-align: center;
    transition: background .2s, border-color .2s;
}

.wb-card:hover .wb-time-chips span {
    background: rgba(240, 165, 0, .08);
    border-color: rgba(240, 165, 0, .25);
}

/* ─── Dark Wide Card ─────────────────────────── */
.wb-dark {
    background: var(--navy);
    border-color: rgba(255, 255, 255, .08);
}

.wb-dark:hover { border-color: rgba(240, 165, 0, .2); }

.wb-dark .wb-icon {
    background: rgba(240, 165, 0, .15);
    border-color: rgba(240, 165, 0, .3);
    color: var(--gold);
}

.wb-dark:hover .wb-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.wb-dark h3 { color: var(--white); }
.wb-dark p  { color: rgba(255, 255, 255, .6); }

.wb-road-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.wb-road-tags span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    white-space: nowrap;
}

.wb-road-tags span i {
    color: var(--gold);
    font-size: 11px;
}

/* ─── Navy Small Card ────────────────────────── */
.wb-navy {
    background: var(--navy);
    border-color: rgba(255, 255, 255, .08);
}

.wb-navy:hover { border-color: rgba(240, 165, 0, .2); }

.wb-navy .wb-icon {
    background: rgba(240, 165, 0, .15);
    border-color: rgba(240, 165, 0, .3);
    color: var(--gold);
}

.wb-navy:hover .wb-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.wb-navy h3 {
    color: var(--white);
    font-size: var(--text-base);
}

.wb-navy p {
    color: rgba(255, 255, 255, .55);
    font-size: var(--text-sm);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .why-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .wb-featured {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        min-height: auto;
    }

    .wb-wide { grid-column: span 2; }

    .wb-wide-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .wb-time-chips { flex-direction: row; flex-wrap: wrap; }
    .wb-road-tags  { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 860px) {
    .why-section { padding: 80px 5vw; }
    .why-inner   { gap: 40px; }
    .why-bento   { gap: 14px; }
}

@media (max-width: 580px) {
    .why-section { padding: 64px 4vw; }

    .why-bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wb-featured { grid-column: 1; grid-row: auto; }
    .wb-wide     { grid-column: 1; }
    .wb-card     { padding: 22px 18px; }

    .wb-time-chips { flex-direction: row; flex-wrap: wrap; }
    .wb-road-tags  { flex-direction: row; flex-wrap: wrap; }
}



/* ═══════════════════════════════════════════════
   CTA BANNER SECTION
═══════════════════════════════════════════════ */
.cta-section {
    padding: 110px 5vw;
    position: relative;
    overflow: hidden;
}

/* ─── Background Image ───────────────────────── */
.cta-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/aboutus/aboutus-cta-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.cta-section:hover .cta-bg-img {
    transform: scale(1);
}

/* ─── Dark overlay ───────────────────────────── */
.cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(11, 19, 64, .92) 0%,
        rgba(11, 19, 64, .80) 50%,
        rgba(11, 19, 64, .88) 100%
    );
}

/* Gold shimmer top */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 5;
}

/* Gold shimmer bottom */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 5;
}

/* ─── Background Blobs ───────────────────────── */
.cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.cta-bg-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
    background: rgba(240, 165, 0, .06);
    border: 1px solid rgba(240, 165, 0, .08);
}

.cta-bg-2 {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -80px;
    background: rgba(240, 165, 0, .04);
    border: 1px solid rgba(240, 165, 0, .06);
}

/* ─── Inner ──────────────────────────────────── */
.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* ─── Content ────────────────────────────────── */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

/* Eyebrow */
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(240, 165, 0, .12);
    border: 1.5px solid rgba(240, 165, 0, .3);
    padding: 6px 18px;
    border-radius: 999px;
}

.cta-eyebrow i { font-size: 11px; }

/* Title */
.cta-title {
    font-family: var(--font-h);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.cta-title span { color: var(--gold); }

/* Description */
.cta-desc {
    font-family: var(--font);
    font-size: var(--text-md);
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    max-width: 620px;
}

/* ─── Stats Strip ────────────────────────────── */
.cta-stats {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--r-xl);
    padding: 22px 36px;
    width: 100%;
    justify-content: space-between;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.cta-stat strong {
    font-family: var(--font-h);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.cta-stat span {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .03em;
    white-space: nowrap;
}

.cta-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, .1);
    flex-shrink: 0;
}

/* ─── Buttons ────────────────────────────────── */
.cta-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Primary — Gold */
.cta-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: 14px 28px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: background .2s var(--ease), transform .2s var(--ease),
                box-shadow .2s var(--ease);
    box-shadow: 0 4px 20px rgba(240, 165, 0, .35);
}

.cta-btn-primary:hover {
    background: #e09600;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240, 165, 0, .5);
}

/* Secondary — White outline */
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--r-sm);
    border: 1.5px solid rgba(255, 255, 255, .3);
    text-decoration: none;
    transition: background .2s var(--ease), border-color .2s var(--ease),
                transform .2s var(--ease);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .6);
    transform: translateY(-2px);
}

/* Ghost */
.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .5);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 600;
    padding: 14px 20px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: color .2s var(--ease), transform .2s var(--ease);
}

.cta-btn-ghost:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .cta-section { padding: 90px 5vw; }

    .cta-stats {
        padding: 18px 20px;
    }

    .cta-stat span { font-size: 10px; }
}

@media (max-width: 640px) {
    .cta-section { padding: 72px 4vw; }

    .cta-stats {
        flex-wrap: wrap;
        gap: 20px;
        padding: 22px;
        justify-content: center;
    }

    .cta-stat-divider { display: none; }

    .cta-stat {
        flex: 0 0 calc(50% - 10px);
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary,
    .cta-btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .cta-stat { flex: 0 0 100%; }
}
/* ═══════════════════════════════════════════════
   SERVICE AREAS / COVERAGE MAP
═══════════════════════════════════════════════ */
.areas-section {
    padding: 100px 5vw;
    background: var(--white);
    position: relative;
}

.areas-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ─── LEFT SIDE ──────────────────────────────── */
.areas-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Tabs ── */
.areas-tabs {
    display: flex;
    gap: 8px;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 4px;
    width: fit-content;
    flex-wrap: wrap;
}

.areas-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--muted);
    background: transparent;
    border: none;
    padding: 9px 18px;
    border-radius: calc(var(--r-sm) - 4px);
    cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s;
    white-space: nowrap;
}

.areas-tab.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--sh-sm);
}

.areas-tab i { font-size: 13px; }

/* ── List ── */
.areas-list {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.areas-list.active {
    display: flex;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    border: 1.5px solid transparent;
    transition: background .2s, border-color .2s, transform .2s;
    cursor: default;
}

.area-item:hover {
    background: var(--off);
    border-color: var(--border);
    transform: translateX(4px);
}

/* ── Dot ── */
.area-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: var(--navy);
    position: relative;
    flex-shrink: 0;
}

.area-dot.travel  { background: var(--gold); }

/* NEW: acting dot — purple */
.area-dot.acting  { background: #7c3aed; }

.area-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid var(--navy);
    opacity: .2;
}

.area-dot.travel::after  { border-color: var(--gold); }
.area-dot.acting::after  { border-color: #7c3aed; }

/* ── Info ── */
.area-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.area-info strong {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--navy);
}

.area-info span {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
}

/* ── Badge ── */
.area-badge {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(11, 19, 64, .07);
    border: 1px solid rgba(11, 19, 64, .12);
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.area-badge.travel {
    color: #a37200;
    background: rgba(240, 165, 0, .1);
    border-color: rgba(240, 165, 0, .25);
}

/* NEW: acting badge — purple */
.area-badge.acting {
    color: #6d28d9;
    background: rgba(124, 58, 237, .08);
    border-color: rgba(124, 58, 237, .2);
}

/* ── Acting Driver Coverage Banner ── */
.acting-coverage-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--navy);
    border-radius: var(--r-lg);
    padding: 18px 20px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

/* Gold shimmer top */
.acting-coverage-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.acb-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--r-sm);
    background: rgba(240, 165, 0, .15);
    border: 1.5px solid rgba(240, 165, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.acb-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.acb-body strong {
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.acb-body span {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
}

/* ── Bottom CTA link ── */
.areas-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border: 1.5px solid var(--border);
    padding: 10px 20px;
    border-radius: var(--r-sm);
    width: fit-content;
    transition: border-color .2s, color .2s, background .2s, transform .2s;
}

.areas-cta-link:hover {
    border-color: var(--gold);
    color: var(--navy);
    background: rgba(240, 165, 0, .08);
    transform: translateX(3px);
}

.areas-cta-link .fa-arrow-right {
    font-size: 12px;
    transition: transform .2s;
}

.areas-cta-link:hover .fa-arrow-right {
    transform: translateX(3px);
}

/* ─── RIGHT SIDE — MAP ───────────────────────── */
.areas-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.areas-map-wrap {
    position: relative;
    width: 420px;
    height: 420px;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-md);
}

/* Grid pattern */
.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11,19,64,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11,19,64,.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ── SVG Lines ── */
.map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-line {
    stroke: var(--navy);
    stroke-width: 1.5;
    stroke-dasharray: 5 4;
    opacity: .2;
}

/* Gold line for Arupadai Veedu */
.map-line--gold {
    stroke: var(--gold);
    opacity: .5;
}

/* ── Radius rings ── */
.map-radius-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(11, 19, 64, .1);
    pointer-events: none;
    z-index: 1;
}

.ring-1 { width: 180px; height: 180px; }
.ring-2 { width: 310px; height: 310px; }

/* ── Pins ── */
.map-pin {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: translate(-50%, -50%);
}

.map-pin-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid var(--white);
    box-shadow: 0 2px 6px rgba(11,19,64,.3);
    transition: transform .2s;
    position: relative;
}

/* travel dot on map — gold */
.map-pin-dot.travel {
    background: var(--gold);
    box-shadow: 0 2px 8px rgba(240,165,0,.4);
}

.map-pin:hover .map-pin-dot {
    transform: scale(1.4);
}

/* Center pin */
.pin-center .map-pin-dot {
    width: 18px;
    height: 18px;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 2px 12px rgba(240,165,0,.4);
}

/* Pulse animation */
.map-pin-dot.pulse::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
    0%   { opacity: .6; transform: scale(1); }
    100% { opacity: 0;  transform: scale(2.2); }
}

.map-pin-label {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: var(--sh-sm);
}

.map-pin-label.center {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
    font-size: 11px;
}

/* ── Pin positions (inside 420×420 box) ── */
.pin-center { top: 50%;  left: 50%;  }
.pin-1      { top: 19%;  left: 24%;  } /* Tirupati       */
.pin-2      { top: 81%;  left: 62%;  } /* Pondicherry    */
.pin-3      { top: 64%;  left: 81%;  } /* Mahabalipuram  */
.pin-4      { top: 43%;  left: 19%;  } /* Vellore        */
.pin-5      { top: 71%;  left: 31%;  } /* Kanchipuram    */
.pin-6      { top: 74%;  left: 14%;  } /* Ooty           */
.pin-7      { top: 36%;  left: 74%;  } /* Arupadai Veedu */

/* ── Stat card on map ── */
.map-stat-card {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    border-radius: var(--r-md);
    padding: 12px 16px;
    box-shadow: var(--sh-md);
}

.map-stat-card i {
    color: var(--gold);
    font-size: 18px;
}

.map-stat-card div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.map-stat-card strong {
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.map-stat-card span {
    font-family: var(--font);
    font-size: 10px;
    color: rgba(255,255,255,.5);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .areas-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .areas-right { order: -1; }

    .areas-map-wrap {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 640px) {
    .areas-section { padding: 72px 4vw; }

    .areas-map-wrap {
        width: 320px;
        height: 320px;
    }

    .areas-tabs {
        width: 100%;
    }

    .areas-tab {
        flex: 1;
        justify-content: center;
        padding: 9px 10px;
        font-size: 11px;
    }

    .acting-coverage-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 380px) {
    .areas-map-wrap {
        width: 280px;
        height: 280px;
    }
}


/* ========================
   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;
    }
}