/* ─── 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; }
  }
  

/* ============================================================ */
/*  DRIVING CENTER HERO                                         */
/* ============================================================ */
.dc-hero {
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 5vw;
  overflow: hidden;
}

/* Decorative shapes */
.dc-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.dc-shape.s1 {
  width: 600px; height: 600px;
  top: -250px; right: -180px;
  background: radial-gradient(circle, rgba(240,165,0,.07) 0%, transparent 65%);
  border: 1px solid rgba(240,165,0,.07);
}
.dc-shape.s2 {
  width: 380px; height: 380px;
  bottom: -140px; left: -100px;
  background: radial-gradient(circle, rgba(11,19,64,.04) 0%, transparent 65%);
}
.dc-dot-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background-image: radial-gradient(rgba(11,19,64,.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  z-index: 0;
  mask-image: linear-gradient(to left, rgba(0,0,0,.4), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.4), transparent);
}

/* ========== Inner Grid ========== */
.dc-hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ========== LEFT ========== */
.dc-hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Eyebrow */
.dc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(240,165,0,.08);
  border: 1.5px solid rgba(240,165,0,.25);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}
.dc-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,.2);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

/* Title */
.dc-hero-title {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.dc-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold) 0%, #FFD060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sub */
.dc-hero-sub {
  font-family: var(--font);
  font-size: var(--text-md);
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
}

/* Pills */
.dc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dc-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  background: var(--off);
  border: 1.5px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  transition: background .2s, border-color .2s, color .2s;
  cursor: default;
}
.dc-pills span:hover {
  background: rgba(240,165,0,.08);
  border-color: rgba(240,165,0,.35);
  color: #a37200;
}
.dc-pills span i { font-size: 12px; color: var(--gold); }

/* CTA Buttons */
.dc-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.dc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  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, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(240,165,0,.3);
}
.dc-btn-primary:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,165,0,.45);
}
.dc-btn-arrow { transition: transform .2s; }
.dc-btn-primary:hover .dc-btn-arrow { transform: translateX(4px); }

.dc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.dc-btn-outline:hover {
  background: var(--off);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* Social Proof */
.dc-proof { display: flex; align-items: center; gap: 12px; }
.dc-proof-avatars { display: flex; }
.dc-proof-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
}
.dc-proof-avatars img:first-child { margin-left: 0; }
.dc-proof-text  { display: flex; flex-direction: column; gap: 2px; }
.dc-proof-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: var(--gold);
}
.dc-proof-stars span {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy);
  margin-left: 4px;
}
.dc-proof-text > span {
  font-family: var(--font);
  font-size: var(--text-xs);
  color: var(--muted);
}

/* ========== RIGHT — Bento Grid ========== */
.dc-hero-bento {
  position: relative;
  width: 100%;
  height: 520px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1.3fr 1fr;
  gap: 10px;
}

/* ---- Base cell ---- */
.dc-bento-cell {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--sh-md);
  transition: transform .35s var(--ease),
              box-shadow .35s var(--ease);
}
.dc-bento-cell:hover {
  transform: scale(1.02);
  box-shadow: var(--sh-xl);
  z-index: 5;
}
.dc-bento-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.dc-bento-cell:hover img { transform: scale(1.07); }

/* ---- Grid positions ---- */

/* Large — top-left */
.bc-large {
  grid-column: 1;
  grid-row: 1;
}

/* Tall — right side, spans both rows */
.bc-tall {
  grid-column: 2;
  grid-row: 1 / 3;
  border-radius: var(--r-lg);
}

/* Small bottom-left */
.bc-sm1 {
  grid-column: 1;
  grid-row: 2;
}

/* Small bottom-right (below tall) — hidden, using chip instead */
.bc-sm2 {
  display: none;
}

/* ---- Overlay on large cell ---- */
.dc-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,19,64,.65) 0%,
    transparent 55%
  );
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}
.dc-bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.95);
  color: var(--navy);
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(11,19,64,.14);
  letter-spacing: .03em;
}
.dc-bento-badge i { color: var(--gold); font-size: 10px; }

/* ---- Label on small cells ---- */
.dc-bento-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(11,19,64,.82), transparent);
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dc-bento-label i { color: var(--gold); font-size: 10px; }

/* ---- Stat chips ---- */
.dc-bento-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  box-shadow: var(--sh-md);
  z-index: 10;
  animation: bentoFloat 3.5s ease-in-out infinite alternate;
}
.chip-top {
  top: -14px;
  right: 10px;
  animation-delay: 0s;
}
.chip-bot {
  bottom: 8px;
  left: -14px;
  animation-delay: 1s;
}
@keyframes bentoFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-7px); }
}

.dc-chip-icon {
  width: 34px; height: 34px;
  min-width: 34px;
  border-radius: var(--r-sm);
  background: rgba(240,165,0,.1);
  border: 1.5px solid rgba(240,165,0,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.dc-chip-icon.navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}
.dc-chip-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.dc-chip-body strong {
  font-family: var(--font-h);
  font-size: var(--text-base);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.dc-chip-body span {
  font-family: var(--font);
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .dc-hero-bento { height: 460px; gap: 8px; }
}
@media (max-width: 1024px) {
  .dc-hero-inner  { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .dc-hero-left   { align-items: center; }
  .dc-hero-sub    { max-width: 100%; }
  .dc-pills,
  .dc-btns,
  .dc-proof       { justify-content: center; }
  .dc-hero-bento  { height: 420px; max-width: 560px; margin: 0 auto; }
  .chip-top       { right: 16px; }
  .chip-bot       { left: 0; }
}
@media (max-width: 640px) {
  .dc-hero        { padding: 60px 4vw; }
  .dc-hero-bento  { height: 340px; gap: 7px; }
  .dc-bento-chip  { display: none; }
  .dc-btns        { flex-direction: column; width: 100%; }
  .dc-btn-primary,
  .dc-btn-outline { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  .dc-hero-bento  { height: 280px; gap: 6px; }
}


  /* ============================================================ */
/*  HOW WE HELP YOU DRIVE COMFORTABLY                          */
/* ============================================================ */
.comfort-section {
    padding: 100px 5vw;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  /* ========== Steps Row ========== */
  .comfort-inner {
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
  
  /* ========== Single Step ========== */
  .comfort-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 190px;
    position: relative;
    transition: transform .3s var(--ease);
  }
  .comfort-step:hover {
    transform: translateY(-6px);
  }
  
  /* Top — icon + connector line */
  .cs-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
  }
  
  /* Icon */
  .cs-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--off);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--navy);
    position: relative;
    z-index: 2;
    transition: background .3s, border-color .3s, color .3s, box-shadow .3s;
    flex-shrink: 0;
  }
  .comfort-step:hover .cs-icon,
  .comfort-step.featured .cs-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
    box-shadow: 0 8px 28px rgba(11,19,64,.2);
  }
  
  /* Featured (last) step — always gold */
  .comfort-step.featured .cs-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    box-shadow: 0 8px 28px rgba(240,165,0,.35);
  }
  
  /* Vertical connector below icon */
  .cs-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, var(--border), transparent);
    margin-top: 4px;
  }
  .comfort-step.featured .cs-line {
    background: linear-gradient(to bottom, var(--gold), transparent);
  }
  
  /* Step number */
  .cs-num {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  
  /* Body */
  .cs-body { display: flex; flex-direction: column; gap: 8px; }
  .cs-body h3 {
    font-family: var(--font-h);
    font-size: var(--text-md);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
  }
  .cs-body p {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.7;
  }
  
  /* ========== Arrow Between Steps ========== */
  .comfort-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 22px; /* align with icon center */
    color: rgba(240,165,0,.5);
    font-size: 18px;
    margin: 0 8px;
  }
  
  /* ========== Bottom CTA ========== */
  .comfort-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 52px;
  }
  .comfort-cta p {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .comfort-cta p i {
    color: var(--gold);
    font-size: 13px;
  }
  
  /* ========== Responsive ========== */
  @media (max-width: 1024px) {
    .comfort-inner { gap: 0; }
    .comfort-step  { max-width: 160px; }
    .cs-icon       { width: 60px; height: 60px; font-size: 22px; }
    .cs-body h3    { font-size: var(--text-base); }
    .cs-body p     { font-size: 11px; }
    .comfort-arrow { font-size: 15px; padding-top: 18px; }
  }
  
  @media (max-width: 768px) {
    .comfort-inner {
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .comfort-step {
      max-width: 100%;
      width: 100%;
      flex-direction: row;
      text-align: left;
      gap: 20px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .comfort-step:last-child { border-bottom: none; }
    .comfort-step:hover      { transform: none; }
    .cs-top {
      flex-direction: column;
      align-items: center;
      width: auto;
      margin-bottom: 0;
      flex-shrink: 0;
    }
    .cs-line {
      width: 2px;
      height: 40px;
      margin-top: 4px;
      margin-bottom: 0;
    }
    .cs-num { margin-bottom: 4px; }
    .comfort-arrow {
      display: none;
    }
  }
  
  @media (max-width: 520px) {
    .comfort-section { padding: 64px 4vw; }
    .cs-icon         { width: 52px; height: 52px; font-size: 18px; }
    .cs-body h3      { font-size: var(--text-base); }
  }
  


/* ============================================================ */
/*  DRIVING RULES — ORBITAL / CIRCLE LAYOUT                    */
/* ============================================================ */
.rules-section {
    padding: 80px 5vw 80px;
    background: var(--off);
    position: relative;
    overflow: hidden;
  }
  
  .rules-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(11,19,64,.05) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
  }
  
  /* ========== ORBIT CONTAINER ========== */
  .rules-orbit {
    position: relative;
    width: 860px;
    height: 620px;
    margin: 50px auto 0;
    z-index: 1;
  }
  
  /* Dashed rings */
  .orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1.5px dashed rgba(240,165,0,.25);
    pointer-events: none;
    animation: orbitSpin 40s linear infinite;
  }
  .orbit-ring.inner {
    width: 440px; height: 440px;
    border-color: rgba(11,19,64,.07);
    border-style: dotted;
    animation-direction: reverse;
    animation-duration: 28s;
  }
  @keyframes orbitSpin {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
  }
  
  /* ========== CENTER CAR ========== */
  .orbit-car {
    position: absolute;
    top: 60%; left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    z-index: 3;
  }
  .orbit-car img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--r-lg);
    position: relative;
    z-index: 1;
    transition: transform .6s var(--ease);
  }
  .orbit-car:hover img { transform: scale(1.03); }
  
  /* ========== ORBIT ITEMS — icon always on TOP ========== */
  .orbit-item {
    position: absolute;
    display: flex;
    flex-direction: column; /* icon on top, text below — ALL positions */
    align-items: center;
    text-align: center;
    gap: 10px;
    max-width: 170px;
    z-index: 4;
    transition: transform .3s var(--ease);
  }
  
  /* Left side — align content to the right edge */
  .pos-tl,
  .pos-bl {
    align-items: flex-end;
    text-align: right;
  }
  
  /* Right side — align content to the left edge */
  .pos-tr,
  .pos-br {
    align-items: flex-start;
    text-align: left;
  }
  
  /* Icon circle */
  .oi-icon {
    width: 56px; height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(240,165,0,.22);
    box-shadow: 0 4px 16px rgba(11,19,64,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--navy);
    transition: background .25s, border-color .25s, color .25s;
    flex-shrink: 0;
  }
  .orbit-item:hover .oi-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
  }
  
  /* Body text */
  .oi-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .oi-body h3 {
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
  }
  .oi-body p {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.65;
  }
  
  /* ========== 5 CLOCK POSITIONS ========== */
  
  /* 12 o'clock — Top Center */
  .pos-top {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    text-align: center;
  }
  .pos-top:hover { transform: translateX(-50%) scale(1.04); }
  
  /* 2 o'clock — Top Right */
  .pos-tr {
    top: 80px;
    right: 40px;
  }
  .pos-tr:hover { transform: scale(1.04); }
  
  /* 4 o'clock — Bottom Right */
  .pos-br {
    bottom: 120px;
    right: -10px;
  }
  .pos-br:hover { transform: scale(1.04); }
  
  /* 8 o'clock — Bottom Left */
  .pos-bl {
    bottom: 120px;
    left: -10px;
  }
  .pos-bl:hover { transform: scale(1.04); }
  
  /* 10 o'clock — Top Left */
  .pos-tl {
    top: 80px;
    left: 40px;
  }
  .pos-tl:hover { transform: scale(1.04); }
  
 /* ========== Responsive ========== */
@media (max-width: 1024px) {
  .rules-orbit {
    width: 700px;
    height: 660px; /* increased to fit taller car */
  }
  .orbit-ring       { width: 480px; height: 480px; }
  .orbit-ring.inner { width: 360px; height: 360px; }
  .orbit-car        { width: 250px; top: 60%; }
  .orbit-car img    { height: 320px; } /* scaled proportionally */
  .orbit-item       { max-width: 150px; }
  .oi-body h3       { font-size: var(--text-sm); }
  .oi-body p        { font-size: 11px; }
  .oi-icon          { width: 46px; height: 46px; min-width: 46px; font-size: 18px; }
  .pos-top          { top: 10px; }
  .pos-tr           { top: 70px; right: 20px; }
  .pos-br           { bottom: 100px; right: 0px; }
  .pos-bl           { bottom: 100px; left: 0px; }
  .pos-tl           { top: 70px; left: 20px; }
}

@media (max-width: 860px) {
  .rules-orbit {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 20px 0;
  }
  .orbit-ring,
  .orbit-ring.inner,
  .orbit-car-glow { display: none; }
  .orbit-car {
    position: relative;
    top: auto; left: auto;
    transform: none;
    width: 100%;
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }
  .orbit-car img {
    height: 260px;
    width: 100%;
  }
  .orbit-item {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 100%;
  }
  .orbit-item:hover     { transform: none !important; }
  .pos-tl .oi-body,
  .pos-bl .oi-body      { align-items: center; }
}

@media (max-width: 520px) {
  .rules-section        { padding: 60px 4vw 60px; }
  .rules-orbit          { grid-template-columns: 1fr; gap: 20px; }
  .orbit-car img        { height: 200px; }
  .oi-icon              { width: 48px; height: 48px; min-width: 48px; font-size: 18px; }
  .oi-body h3           { font-size: var(--text-sm); }
}


/* ══════════════════════════════════════
   CAR TRAINING INCLUDES SECTION
══════════════════════════════════════ */
.cti-section {
  padding: 100px 5vw;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle dot pattern background */
.cti-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11,19,64,.045) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Gold shimmer top */
.cti-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Grid ── */
.cti-grid {
  max-width: 1200px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.cti-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
}

/* Gold top border slide in on hover */
.cti-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 0.35s var(--ease);
  border-radius: 0 0 3px 3px;
}

.cti-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,165,0,.3);
  box-shadow: var(--sh-lg);
}

.cti-card:hover::before {
  transform: scaleX(1);
}

/* ── Icon ── */
.cti-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--r-md);
  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: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.cti-card:hover .cti-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(11,19,64,.2);
}

/* ── Body ── */
.cti-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cti-body h3 {
  font-family: var(--font-h);
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}

.cti-body p {
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Watermark Number ── */
.cti-num {
  position: absolute;
  bottom: 12px;
  right: 18px;
  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 0.3s;
}

.cti-card:hover .cti-num {
  color: rgba(240,165,0,.07);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cti-grid { gap: 18px; }

  .cti-body h3 { font-size: var(--text-base); }
}

@media (max-width: 860px) {
  .cti-section { padding: 80px 5vw; }

  .cti-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .cti-section { padding: 64px 4vw; }

  .cti-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cti-card {
    padding: 26px 22px 22px;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  .cti-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .cti-num { display: none; }
}



/* ============================================================ */
/*  CTA BANNER — DRIVING CENTER                                 */
/* ============================================================ */
.dc-cta-section {
    padding: 110px 5vw;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  /* Background image */
  .dc-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/cta-banner-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
    z-index: 0;
  }
  .dc-cta-section:hover .dc-cta-bg {
    transform: scale(1);
  }
  
  /* Dark overlay */
  .dc-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(11,19,64,.93) 0%,
      rgba(11,19,64,.82) 50%,
      rgba(11,19,64,.90) 100%
    );
    z-index: 1;
  }
  
  /* Gold shimmer top */
  .dc-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 */
  .dc-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;
  }
  
  /* Decorative blobs */
  .dc-cta-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
  }
  .dc-cta-blob.b1 {
    width: 500px; height: 500px;
    top: -200px; right: -150px;
    background: rgba(240,165,0,.06);
    border: 1px solid rgba(240,165,0,.08);
  }
  .dc-cta-blob.b2 {
    width: 300px; height: 300px;
    bottom: -120px; left: -80px;
    background: rgba(240,165,0,.04);
    border: 1px solid rgba(240,165,0,.06);
  }
  
  /* ========== Inner Content ========== */
  .dc-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  /* Eyebrow */
  .dc-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;
  }
  .dc-cta-eyebrow i { font-size: 11px; }
  
  /* Title */
  .dc-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;
  }
  .dc-cta-title em {
    font-style: normal;
    color: var(--gold);
  }
  
  /* Description */
  .dc-cta-desc {
    font-family: var(--font);
    font-size: var(--text-md);
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    max-width: 580px;
  }
  
  /* Feature points */
  .dc-cta-feats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
  }
  .dc-cta-feat {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255,255,255,.8);
  }
  .dc-cta-feat i {
    color: var(--gold);
    font-size: 13px;
  }
  
  /* Buttons */
  .dc-cta-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .dc-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--r-sm);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(240,165,0,.4);
    transition: background .2s, transform .2s, box-shadow .2s;
  }
  .dc-cta-btn-primary:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240,165,0,.55);
  }
  .dc-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--white);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--r-sm);
    border: 1.5px solid rgba(255,255,255,.3);
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
  }
  .dc-cta-btn-secondary:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
    transform: translateY(-2px);
  }
  
  /* Stats strip */
  .dc-cta-stats {
    display: flex;
    align-items: center;
    justify-content: 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: 20px 40px;
    width: 100%;
    gap: 0;
  }
  .dc-cta-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .dc-cta-stat strong {
    font-family: var(--font-h);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  .dc-cta-stat span {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255,255,255,.5);
    white-space: nowrap;
  }
  .dc-cta-stat-div {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
  }
  
  /* ========== Responsive ========== */
  @media (max-width: 860px) {
    .dc-cta-section { padding: 90px 5vw; }
    .dc-cta-stats   { padding: 18px 24px; }
  }
  @media (max-width: 640px) {
    .dc-cta-section  { padding: 72px 4vw; }
    .dc-cta-stats    {
      flex-wrap: wrap;
      gap: 20px;
      padding: 22px 20px;
      justify-content: center;
    }
    .dc-cta-stat-div { display: none; }
    .dc-cta-stat     { flex: 0 0 calc(50% - 10px); }
    .dc-cta-btns     { flex-direction: column; width: 100%; }
    .dc-cta-btn-primary,
    .dc-cta-btn-secondary { width: 100%; justify-content: center; }
    .dc-cta-feats    { gap: 8px 16px; }
  }
  @media (max-width: 420px) {
    .dc-cta-stat { flex: 0 0 100%; }
  }


  /* ══════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════ */
.vid-section {
  padding: 100px 5vw;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

/* Dot pattern */
.vid-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11,19,64,.045) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Gold shimmer top */
.vid-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Grid ── */
.vid-grid {
  max-width: 1200px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* ── Video Wrapper ── */
.vid-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-md);
  background: var(--navy);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.vid-wrap:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-xl);
}

.vid-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-xl);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 860px) {
  .vid-section { padding: 80px 5vw; }
  .vid-grid    { gap: 18px; }
}

@media (max-width: 640px) {
  .vid-section { padding: 64px 4vw; }

  .vid-grid {
    grid-template-columns: 1fr;  /* stack on mobile */
    gap: 16px;
  }
}

  
  /* ============================================================ */
/*  ENQUIRE SECTION — DRIVING CENTER                            */
/* ============================================================ */
.dc-enquire-section {
    padding: 100px 5vw;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  /* Dot pattern — hidden */
  .dc-enq-bg { display: none; }
  
  /* ========== Grid ========== */
  .dc-enquire-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
  }
  
  /* ========== LEFT — Plain White Panel ========== */
  .dc-enq-left {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    overflow: visible;
  }
  
  /* Remove blobs */
  .dc-enq-left::before,
  .dc-enq-left::after { display: none; }
  
  /* Eyebrow */
  .dc-enq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(11,19,64,.07);
    border: 1.5px solid rgba(11,19,64,.12);
    padding: 6px 16px;
    border-radius: 999px;
    align-self: flex-start;
  }
  .dc-enq-eyebrow i { font-size: 11px; }
  
  /* Title */
  .dc-enq-title {
    font-family: var(--font-h);
    font-size: clamp(26px, 3.2vw, 46px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
  }
  .dc-enq-title em {
    font-style: normal;
    color: var(--gold);
  }
  
  /* Description */
  .dc-enq-desc {
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--muted);
    line-height: 1.75;
  }
  
  /* Divider */
  .dc-enq-divider {
    height: 1px;
    background: var(--border);
  }
  
  /* Stats */
  .dc-enq-stats {
    display: flex;
    gap: 0;
  }
  .dc-enq-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 20px;
    border-right: 1px solid var(--border);
  }
  .dc-enq-stat:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 20px;
  }
  .dc-enq-stat:not(:first-child):not(:last-child) {
    padding-left: 20px;
  }
  .dc-enq-stat strong {
    font-family: var(--font-h);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
  }
  .dc-enq-stat span {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--muted);
    line-height: 1.4;
  }
  
  /* Contact links */
  .dc-enq-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .dc-enq-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--border);
    background: var(--off);
    transition: background .25s, border-color .25s, box-shadow .25s;
  }
  .dc-enq-contact:hover {
    background: var(--white);
    border-color: rgba(240,165,0,.4);
    box-shadow: var(--sh-sm);
  }
  .dc-enq-contact-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,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
    transition: background .25s, border-color .25s;
  }
  .dc-enq-contact-icon.whatsapp {
    background: rgba(37,211,102,.12);
    border-color: rgba(37,211,102,.25);
    color: #25d366;
  }
  .dc-enq-contact:hover .dc-enq-contact-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
  }
  .dc-enq-contact:hover .dc-enq-contact-icon.whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: var(--white);
  }
  .dc-enq-contact-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .dc-enq-contact-body span {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
  }
  .dc-enq-contact-body strong {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--navy);
  }
  
  /* Trust note */
  .dc-enq-trust {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-size: var(--text-xs);
    color: var(--muted);
    margin-top: auto;
  }
  .dc-enq-trust i { color: var(--gold); font-size: 11px; }
  
  /* ========== RIGHT — Form Card Only ========== */
  .dc-enq-form-wrap {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 44px 40px;
    box-shadow: var(--sh-lg);
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 86px;
    /* for ::before to work */
    overflow: hidden;
  }
  
  /* Gold top accent line on form card */
  .dc-enq-form-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    pointer-events: none;
    z-index: 1;
  }
  
  /* Form heading */
  .dc-enq-form-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .dc-enq-form-head h3 {
    font-family: var(--font-h);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .dc-enq-form-head h3 span { color: var(--gold); }
  .dc-enq-form-head p {
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--muted);
  }
  
  /* Form */
  .dc-enq-form  { display: flex; flex-direction: column; gap: 16px; }
  .dc-enq-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .dc-enq-field { display: flex; flex-direction: column; gap: 6px; }
  
  .dc-enq-field label {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .dc-enq-field label span {
    color: #ef4444;
    margin-left: 2px;
    text-transform: none;
    letter-spacing: 0;
  }
  
  /* Input wrap */
  .dc-enq-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .dc-enq-input-wrap i {
    position: absolute;
    left: 13px;
    font-size: 13px;
    color: var(--muted);
    pointer-events: none;
    z-index: 1;
    transition: color .2s;
  }
  .dc-enq-input-wrap input,
  .dc-enq-input-wrap select {
    width: 100%;
    padding: 12px 14px 12px 38px;
    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(--navy);
    background: var(--off);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    line-height: 1.5;
  }
  .dc-enq-input-wrap input:focus,
  .dc-enq-input-wrap select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240,165,0,.1);
  }
  .dc-enq-input-wrap:focus-within i { color: var(--gold); }
  .dc-enq-input-wrap input::placeholder {
    color: var(--muted);
    font-size: var(--text-sm);
    font-weight: 400;
  }
  .dc-enq-input-wrap 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/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    background-size: 14px;
    padding-right: 36px;
    cursor: pointer;
  }
  
  /* Submit button */
  .dc-enq-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 28px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(240,165,0,.35);
    transition: background .2s, transform .2s, box-shadow .2s;
    margin-top: 4px;
  }
  .dc-enq-submit:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240,165,0,.5);
  }
  .dc-enq-arrow { margin-left: auto; transition: transform .2s; }
  .dc-enq-submit:hover .dc-enq-arrow { transform: translateX(4px); }
  
  /* Success message */
  .dc-enq-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(22,163,74,.08);
    border: 1.5px solid rgba(22,163,74,.25);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 600;
    color: #15803d;
  }
  .dc-enq-success i      { font-size: 17px; flex-shrink: 0; }
  .dc-enq-success.hidden { display: none; }
  
  /* Bottom note */
  .dc-enq-note {
    font-family: var(--font);
    font-size: var(--text-xs);
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
  }
  .dc-enq-note i { color: var(--gold); font-size: 11px; }
  
  /* ========== Responsive ========== */
  @media (max-width: 1024px) {
    .dc-enquire-section { padding: 80px 5vw; }
    .dc-enquire-inner   { gap: 56px; }
    .dc-enq-form-wrap   { padding: 36px 32px; }
  }
  
  @media (max-width: 860px) {
    .dc-enquire-section { padding: 80px 5vw; }
    .dc-enquire-inner   {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .dc-enq-form-wrap   {
      position: static;
      padding: 36px 32px;
    }
    .dc-enq-trust { margin-top: 0; }
  }
  
  @media (max-width: 580px) {
    .dc-enquire-section { padding: 60px 4vw; }
    .dc-enq-form-wrap   { padding: 28px 20px; }
    .dc-enq-row         { grid-template-columns: 1fr; }
    .dc-enq-stats       { flex-wrap: wrap; gap: 16px; }
    .dc-enq-stat        {
      flex: 0 0 calc(50% - 8px);
      border-right: none;
      padding: 0;
    }
  }

  
  /* ============================================================ */
/*  FAQ SECTION — DRIVING CENTER                                */
/* ============================================================ */
.faq-section {
    padding: 100px 5vw;
    position: relative;
  }
  
  /* ========== Two Column Grid ========== */
  .faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    align-items: start;
  }
  
  .faq-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  /* ========== FAQ Item ========== */
  .faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    background: var(--white);
    overflow: hidden;
    transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
  }
  .faq-item:hover {
    border-color: rgba(240,165,0,.35);
    box-shadow: var(--sh-sm);
  }
  .faq-item.open {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(240,165,0,.1);
  }
  
  /* ========== Question Button ========== */
  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
    transition: background .2s;
  }
  .faq-q:hover { background: rgba(240,165,0,.03); }
  .faq-item.open .faq-q { background: rgba(240,165,0,.05); }
  
  /* Icon wrap */
  .faq-icon-wrap {
    width: 28px; height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(240,165,0,.1);
    border: 1.5px solid rgba(240,165,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 11px;
    transition: background .25s, transform .35s var(--ease), border-color .25s;
  }
  .faq-item.open .faq-icon-wrap {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
  }
  
  /* ========== Answer ========== */
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s var(--ease);
  }
  .faq-a p {
    padding: 0 20px 18px 20px;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid rgba(240,165,0,.15);
    padding-top: 14px;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
  }
  
  /* ========== Responsive ========== */
  @media (max-width: 860px) {
    .faq-section { padding: 80px 5vw; }
    .faq-inner   { grid-template-columns: 1fr; gap: 12px; }
  }
  @media (max-width: 580px) {
    .faq-section { padding: 64px 4vw; }
    .faq-q       { font-size: var(--text-base); padding: 16px 16px; }
    .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;
    }
}