/* ─── 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; }
  }
  

  /* ============================================================ */
/*  TRAVELS HERO SECTION                                        */
/* ============================================================ */
.tv-hero-section {
    min-height: 100vh;
    padding: 120px 5vw 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  
  /* Dot pattern */
  .tv-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(11,19,64,.05) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
  }
  
  /* Gold shimmer bottom */
  .tv-hero-section::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 5;
  }
  
  /* ========== Inner Grid ========== */
  .tv-hero-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  /* ========== LEFT CONTENT ========== */
  .tv-hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  
  /* Tag */
  .tv-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 700;
    color: #5a3e00;
    background: linear-gradient(135deg, #fff8e6, #fff3d0);
    border: 1px solid rgba(240,165,0,.35);
    padding: 7px 16px;
    border-radius: 999px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(240,165,0,.12);
  }
  .tv-tag-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(240,165,0,.22);
    flex-shrink: 0;
    animation: pulseDot 2s ease-in-out infinite;
  }
  
  /* Heading */
  .tv-hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.06;
    letter-spacing: -0.03em;
  }
  .tv-hero-h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--gold) 0%, #FFD060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Sub */
  .tv-hero-sub {
    font-family: var(--font);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    max-width: 460px;
  }
  
  /* Feature pills */
  .tv-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .tv-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--navy);
    background: var(--off);
    border: 1.5px solid var(--border);
    padding: 7px 14px;
    border-radius: var(--r-sm);
    transition: background .2s, border-color .2s, color .2s;
  }
  .tv-pill i {
    color: var(--gold);
    font-size: 12px;
  }
  .tv-pill:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
  }
  .tv-pill:hover i { color: var(--gold); }
  
  /* Buttons */
  .tv-hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
/* Book a Cab button — gold theme */
.tv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    padding: 14px 26px;
    border-radius: var(--r-sm);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(240,165,0,.35);
    transition: background .2s, transform .2s, box-shadow .2s;
  }
  .tv-btn-primary:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240,165,0,.55);
  }
  .tv-btn-arrow { transition: transform .2s; }
  .tv-btn-primary:hover .tv-btn-arrow { transform: translateX(4px); }
  
  .tv-btn-secondary {
    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 24px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
  }
  .tv-btn-secondary i  { color: var(--gold); }
  .tv-btn-secondary:hover {
    background: var(--off);
    border-color: rgba(240,165,0,.4);
    transform: translateY(-2px);
  }
  
  /* Stats strip */
  .tv-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 20px 24px;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
  }
  .tv-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    text-align: center;
  }
  .tv-stat strong {
    font-family: var(--font-h);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
  }
  .tv-stat span {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--muted);
  }
  .tv-stat-div {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
  }
  
  /* ========== RIGHT COLLAGE ========== */
  .tv-hero-collage {
    position: relative;
    width: 100%;
    height: 580px;
  }
  
  /* All collage images */
  .tv-col-img {
    position: absolute;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--sh-lg);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), z-index 0s;
  }
  .tv-col-img:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--sh-xl);
    z-index: 10;
  }
  .tv-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s var(--ease);
  }
  .tv-col-img:hover img { transform: scale(1.06); }
  
  /* Label overlay on small images */
  .tv-col-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 8px 12px;
    background: linear-gradient(to top, rgba(11,19,64,.85), transparent);
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--white);
    letter-spacing: .04em;
  }
  
  /* Badge on main image */
  .tv-col-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(11,19,64,.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.15);
  }
  .tv-col-badge i { color: var(--gold); font-size: 11px; }
  
  /* ---- Grid Positions ---- */
  
  /* Main — large top-left */
  .col-main {
    top: 0; left: 0;
    width: 58%; height: 55%;
    z-index: 3;
  }
  
  /* Top-right */
  .col-tr {
    top: 0; right: 0;
    width: 38%; height: 34%;
    z-index: 2;
  }
  
  /* Middle-right */
  .col-mr {
    top: 38%; right: 0;
    width: 38%; height: 34%;
    z-index: 2;
  }
  
  /* Bottom-left */
  .col-bl {
    bottom: 0; left: 0;
    width: 37%; height: 34%;
    z-index: 2;
  }
  
  /* Bottom-right */
  .col-br {
    bottom: 0; left: 41%;
    width: 37%; height: 34%;
    z-index: 2;
  }
  
  /* ========== Floating Cards ========== */
  .tv-col-float-card {
    position: absolute;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 16px;
    box-shadow: var(--sh-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
    animation: floatCard 3.5s ease-in-out infinite;
  }
  .fc-top {
    top: 46%; left: 53%;
    transform: translateX(-50%);
    animation-delay: 0s;
  }
  .fc-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    right: 0; bottom: 36%;
    animation-delay: 1.2s;
  }
  @keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
  }
  .fc-top { animation: floatCard 3.5s ease-in-out infinite; }
  .fc-bot { animation: floatCard 3.5s ease-in-out 1.2s infinite; }
  
  .tv-fc-icon {
    width: 36px; height: 36px;
    min-width: 36px;
    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: 15px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .tv-fc-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .tv-fc-body strong,
  .fc-bot strong {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
  }
  .tv-fc-body span,
  .fc-bot span {
    font-family: var(--font);
    font-size: var(--text-xs);
    color: var(--muted);
    white-space: nowrap;
  }
  .tv-fc-stars {
    display: flex;
    gap: 2px;
  }
  .tv-fc-stars i {
    color: var(--gold);
    font-size: 11px;
  }
  
  /* ========== Responsive ========== */
  @media (max-width: 1100px) {
    .tv-hero-inner   { gap: 48px; }
    .tv-hero-collage { height: 500px; }
  }
  
  @media (max-width: 900px) {
    .tv-hero-section { padding: 110px 5vw 72px; }
    .tv-hero-inner   {
      grid-template-columns: 1fr;
      gap: 52px;
    }
    .tv-hero-collage { height: 460px; }
    .tv-hero-h1      { font-size: clamp(34px, 6vw, 52px); }
  }
  
  @media (max-width: 640px) {
    .tv-hero-section  { padding: 100px 4vw 60px; }
    .tv-hero-collage  { height: 360px; }
    .col-main         { width: 60%; height: 52%; }
    .col-tr           { width: 36%; height: 32%; }
    .col-mr           { width: 36%; height: 32%; top: 36%; }
    .col-bl           { width: 36%; height: 32%; }
    .col-br           { width: 36%; left: 40%; }
    .tv-hero-pills    { gap: 8px; }
    .tv-pill          { font-size: 11px; padding: 6px 11px; }
    .tv-col-float-card { display: none; }
    .tv-hero-stats    { padding: 16px; }
  }
  
  @media (max-width: 480px) {
    .tv-hero-collage { height: 300px; }
    .tv-hero-stats   {
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }
    .tv-stat-div     { display: none; }
    .tv-stat         { flex: 0 0 calc(50% - 7px); }
    .tv-hero-btns    { flex-direction: column; width: 100%; }
    .tv-btn-primary,
    .tv-btn-secondary { width: 100%; justify-content: center; }
  }
  


  /* ============================================================ */
/*  TRAVELS SERVICES — 2 ROW GRID                              */
/* ============================================================ */
.tv-services-section {
    padding: 100px 5vw;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  
  /* Navy bg subtle dot texture */
  .tv-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
  }
  
  /* ========== Header ========== */
  .tv-srv-header {
    max-width: 1200px;
    margin: 0 auto 52px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
  }
  .tv-srv-header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  /* Override eyebrow + title colors for navy bg */
  .tv-services-section .eyebrow {
    color: var(--gold);
    background: rgba(240,165,0,.12);
    border: 1.5px solid rgba(240,165,0,.25);
  }
  .tv-services-section .section-title       { color: var(--white); }
  .tv-services-section .section-title span  { color: var(--gold); }
  
  .tv-srv-header-desc {
    font-family: var(--font);
    font-size: var(--text-md);
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    max-width: 340px;
    text-align: right;
  }
  
  /* ========== Grid rows ========== */
  .tv-srv-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  .row-top {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 16px;
  }
  .row-bot {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* ========== Card ========== */
  .tv-srv-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    cursor: pointer;
    min-height: 340px;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transition: transform .4s var(--ease),
                box-shadow .4s var(--ease);
  }
  .row-bot .tv-srv-card { min-height: 320px; }
  
  .tv-srv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
  }
  
  /* Dark overlay — lifts on hover */
  .tv-srv-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(11,19,64,.96) 0%,
      rgba(11,19,64,.75) 45%,
      rgba(11,19,64,.35) 100%
    );
    transition: background .4s var(--ease);
    z-index: 1;
  }
  .tv-srv-card:hover::before {
    background: linear-gradient(
      to top,
      rgba(11,19,64,.98) 0%,
      rgba(11,19,64,.6)  40%,
      rgba(11,19,64,.15) 100%
    );
  }
  
  /* Gold shimmer top on hover */
  .tv-srv-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity .35s;
    z-index: 3;
  }
  .tv-srv-card:hover::after { opacity: 1; }
  
  /* ---- Card inner ---- */
  .tv-srv-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
  }
  
  /* Top row — number + icon */
  .tv-srv-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .tv-sc-num {
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 900;
    color: rgba(255,255,255,.2);
    letter-spacing: .1em;
    transition: color .3s;
  }
  .tv-srv-card:hover .tv-sc-num { color: rgba(255,255,255,.35); }
  
  .tv-sc-icon {
    width: 44px; height: 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);
    transition: background .3s, transform .3s;
  }
  .tv-srv-card:hover .tv-sc-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.08) rotate(-4deg);
  }
  
  /* Body — title, desc, tags, cta */
  .tv-srv-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .tv-srv-card-body h3 {
    font-family: var(--font-h);
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .tv-srv-card-body p {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s .05s, transform .35s .05s;
  }
  .tv-srv-card:hover .tv-srv-card-body p {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Tags */
  .tv-sc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s .1s, transform .35s .1s;
  }
  .tv-srv-card:hover .tv-sc-tags {
    opacity: 1;
    transform: translateY(0);
  }
  .tv-sc-tags span {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
  }
  
  /* CTA link */
  .tv-sc-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s .15s, transform .35s .15s, gap .2s;
  }
  .tv-srv-card:hover .tv-sc-link {
    opacity: 1;
    transform: translateY(0);
  }
  .tv-sc-link i { font-size: 11px; transition: transform .2s; }
  .tv-sc-link:hover { gap: 11px; }
  .tv-sc-link:hover i { transform: translateX(3px); }
  
  /* ========== Responsive ========== */
  @media (max-width: 1024px) {
    .row-top { grid-template-columns: repeat(3, 1fr); }
    .row-bot { grid-template-columns: repeat(2, 1fr); }
    .tv-srv-card     { min-height: 300px; }
    .row-bot .tv-srv-card { min-height: 280px; }
  }
  @media (max-width: 860px) {
    .tv-services-section { padding: 80px 5vw; }
    .tv-srv-header       { flex-direction: column; align-items: flex-start; }
    .tv-srv-header-desc  { text-align: left; max-width: 100%; }
    .row-top { grid-template-columns: repeat(2, 1fr); }
    .row-bot { grid-template-columns: repeat(2, 1fr); }
    /* Show desc + tags always on touch */
    .tv-srv-card-body p,
    .tv-sc-tags,
    .tv-sc-link {
      opacity: 1;
      transform: none;
    }
  }
  @media (max-width: 580px) {
    .tv-services-section { padding: 64px 4vw; }
    .row-top,
    .row-bot             { grid-template-columns: 1fr; }
    .tv-srv-card         { min-height: 260px; }
  }
  


  /* ============================================================ */
/*  HOW IT WORKS — HAIRPIN ROAD                                */
/* ============================================================ */
.tv-hiw-section {
    padding: 100px 5vw 80px;
    background: var(--off);
    position: relative;
    overflow: hidden;
  }
  .tv-hiw-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  
  /* ========== Road Wrapper ========== */
  .tv-road-wrap {
    position: relative;
    max-width: 1100px;
    margin: 56px auto 0;
    height: 650px;
  }
  
  /* ========== SVG ========== */
  .tv-road-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .tv-road-dash {
    animation: dashMove 2.6s linear infinite;
  }
  @keyframes dashMove {
    from { stroke-dashoffset: 96; }
    to   { stroke-dashoffset: 0;  }
  }
  
  /* ========== Steps ========== */
  .tv-hiw-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    transform: translate(-50%, -50%);
  }
  
  /*
    ViewBox: 1100 x 480
    Top road    y=150 → 150/480 = 31.25%
    Bottom road y=330 → 330/480 = 68.75%
  
    Top row steps (left → right):
      s1: x=160  → 160/1100 = 14.5%
      s2: x=430  → 430/1100 = 39.1%
      s3: x=700  → 700/1100 = 63.6%
  
    Bottom row steps (right → left):
      s4: x=700  → 700/1100 = 63.6%
      s5: x=370  → 370/1100 = 33.6%
  */
  .s1 { left: 15%; top: 12%; }
  .s2 { left: 45%; top: 12%; }
  .s3 { left: 75%; top: 12%; }
  .s4 { left: 60%; top: 88%; }
  .s5 { left: 30%; top: 88%; }
  
  /* ========== Diamond ========== */
  .tv-step-diamond {
    width: 72px; height: 72px;
    background: var(--white);
    border: 3px solid var(--gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 22px rgba(240,165,0,.22),
                0 0 0 5px rgba(240,165,0,.07);
    transition: background .3s,
                transform .3s var(--ease),
                box-shadow .3s;
    flex-shrink: 0;
    z-index: 2;
  }
  .tv-step-diamond.gold {
    background: var(--gold);
    box-shadow: 0 6px 28px rgba(240,165,0,.5),
                0 0 0 6px rgba(240,165,0,.12);
  }
  .tv-hiw-step:hover .tv-step-diamond {
    background: var(--navy);
    border-color: var(--gold);
    transform: rotate(45deg) scale(1.12);
    box-shadow: 0 10px 36px rgba(11,19,64,.3);
  }
  .tv-hiw-step:hover .tv-step-diamond.gold {
    background: #e0a800;
  }
  
  /* Counter-rotate text */
  .tv-diamond-inner {
    transform: rotate(-45deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    pointer-events: none;
  }
  .tv-d-num {
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    display: block;
    transition: color .3s;
  }
  .tv-step-diamond.gold .tv-d-num { color: var(--navy); }
  .tv-hiw-step:hover .tv-step-diamond .tv-d-num { color: var(--gold); }
  
  .tv-d-label {
    font-family: var(--font);
    font-size: 8px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .14em;
    text-transform: uppercase;
    display: block;
    transition: color .3s;
  }
  .tv-hiw-step:hover .tv-step-diamond .tv-d-label {
    color: rgba(255,206,60,.6);
  }
  
  /* ========== Connector ========== */
  .tv-step-connector {
    width: 1.5px;
    height: 24px;
    background: linear-gradient(to bottom,
      rgba(240,165,0,.12), var(--gold));
    flex-shrink: 0;
  }
  .tv-step-connector.gold {
    background: var(--gold);
    opacity: .65;
  }
  
  /* ========== Content ========== */
  .tv-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 148px;
  }
  
  .tv-step-icon {
    width: 42px; height: 42px;
    border-radius: var(--r-sm);
    background: var(--white);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy);
    box-shadow: var(--sh-sm);
    transition: background .3s, color .3s,
                border-color .3s, transform .3s;
  }
  .tv-step-icon.gold {
    background: rgba(240,165,0,.1);
    border-color: rgba(240,165,0,.3);
    color: var(--gold);
  }
  .tv-hiw-step:hover .tv-step-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
  }
  
  .tv-step-content h4 {
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin: 0;
  }
  .tv-step-content p {
    font-family: var(--font);
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
  }
  
  /* ========== Static Car Image ========== */
  /* Placed between s1 and s2 on the top road, facing right */
  .tv-road-car {
    position: absolute;
    left: 5.5%;
    top: 90%;
    transform: translate(-50%, -65%);
    width: 300px;
    height: auto;
    object-fit: contain;
    z-index: 6;
    pointer-events: none;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.4));
  }
  
  /* ========== End Board — bottom-left ========== */
  .tv-road-end {
    position: absolute;
    left: 5.5%;
    top: 68.75%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    background: var(--navy);
    border: 2.5px solid var(--gold);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    z-index: 6;
    box-shadow: 0 4px 16px rgba(240,165,0,.3);
  }
  /* ========== Mobile Fallback — BASE (must come BEFORE media queries) ========== */
.tv-hiw-mobile {
    display: none;
    flex-direction: column;
    max-width: 480px;
    margin: 48px auto 0;
    position: relative;
  }
  .tv-hiw-mobile::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(240,165,0,.08));
    z-index: 0;
  }
  .tv-hiw-m-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 32px;
    position: relative;
    z-index: 1;
  }
  .tv-hiw-m-step:last-child { padding-bottom: 0; }
  .tv-hiw-m-diamond {
    width: 56px; height: 56px;
    min-width: 56px;
    background: var(--white);
    border: 2.5px solid var(--gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(240,165,0,.18),
                0 0 0 4px rgba(240,165,0,.06);
    flex-shrink: 0;
    z-index: 2;
  }
  .tv-hiw-m-diamond.gold {
    background: var(--gold);
    box-shadow: 0 6px 20px rgba(240,165,0,.4),
                0 0 0 5px rgba(240,165,0,.1);
  }
  .tv-hiw-m-body {
    padding-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .tv-hiw-m-body h4 {
    font-family: var(--font-h);
    font-size: var(--text-md);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
  }
  .tv-hiw-m-body p {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.65;
  }
  
  /* ========== Responsive — AFTER base styles ========== */
  @media (max-width: 1100px) {
    .tv-road-wrap {
      transform: scale(.88);
      transform-origin: top center;
      margin-bottom: -80px;
    }
  }
  @media (max-width: 960px) {
    .tv-road-wrap {
      transform: scale(.75);
      transform-origin: top center;
      margin-bottom: -165px;
    }
  }
  @media (max-width: 860px) {
    .tv-hiw-section { padding: 80px 5vw 60px; }
    .tv-road-wrap   { display: none; }
    .tv-hiw-mobile  { display: flex; } /* ✅ now wins — comes after base */
  }
  @media (max-width: 580px) {
    .tv-hiw-section { padding: 64px 4vw 48px; }
  }
  @media (max-width: 420px) {
    .tv-hiw-m-diamond   { width: 48px; height: 48px; min-width: 48px; }
    .tv-d-num           { font-size: 16px; }
    .tv-d-label         { font-size: 7px; }
    .tv-hiw-m-body h4   { font-size: var(--text-base); }
    .tv-hiw-m-body p    { font-size: 12px; }
    .tv-hiw-m-step      { gap: 14px; padding-bottom: 26px; }
  }
  

  /* ============================================================ */
/*  TRAVELS CTA BANNER                                         */
/* ============================================================ */
.tv-cta-section {
    position: relative;
    padding: 110px 5vw;
    overflow: hidden;
    isolation: isolate;
  }
  
  /* ---- Background image ---- */
  .tv-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/travels/travels-cta-banner.jpg');
    background-size: cover;
    background-position: center 60%;
    background-attachment: fixed;
    z-index: -2;
    transition: transform .6s var(--ease);
  }
  .tv-cta-section:hover .tv-cta-bg {
    transform: scale(1.02);
  }
  
  /* ---- Overlay — dark navy gradient ---- */
  .tv-cta-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        105deg,
        rgba(11,19,64,.96) 0%,
        rgba(11,19,64,.88) 45%,
        rgba(11,19,64,.65) 100%
      );
    z-index: -1;
  }
  
  /* ---- Road decoration ---- */
  .tv-cta-road {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    z-index: 0;
    opacity: .18;
  }
  .tv-cta-road-line {
    height: 2px;
    background: var(--white);
    width: 100%;
  }
  .tv-cta-road-dash {
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--white) 0px,
      var(--white) 40px,
      transparent 40px,
      transparent 68px
    );
    width: 100%;
    animation: roadScroll 3s linear infinite;
  }
  @keyframes roadScroll {
    from { background-position: 0 0; }
    to   { background-position: -108px 0; }
  }
  
  /* ---- Inner layout ---- */
  .tv-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
  }
  
  /* ============================================================ */
  /*  LEFT — Text                                                 */
  /* ============================================================ */
  .tv-cta-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  /* Eyebrow */
  .tv-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;
  }
  .tv-cta-eyebrow i { font-size: 13px; }
  
  /* Title */
  .tv-cta-title {
    font-family: var(--font-h);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
  .tv-cta-title span {
    color: var(--gold);
    position: relative;
  }
  /* Gold underline on span */
  .tv-cta-title span::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 3px;
    background: var(--gold);
    border-radius: 999px;
    opacity: .5;
  }
  
  /* Description */
  .tv-cta-desc {
    font-family: var(--font);
    font-size: var(--text-md);
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    max-width: 480px;
  }
  
  /* Stats */
  .tv-cta-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
  }
  .tv-cta-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .tv-cta-stat strong {
    font-family: var(--font-h);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  .tv-cta-stat span {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
  }
  .tv-cta-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.15);
  }
  
  /* ============================================================ */
  /*  RIGHT — Action Card                                         */
  /* ============================================================ */
  .tv-cta-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: var(--r-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,.3);
  }
  
  /* Card header */
  .tv-cta-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .tv-cta-card-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    border-radius: var(--r-sm);
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    box-shadow: 0 6px 18px rgba(240,165,0,.4);
  }
  .tv-cta-card-label {
    font-family: var(--font-h);
    font-size: var(--text-md);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 2px;
  }
  .tv-cta-card-sub {
    font-family: var(--font);
    font-size: 11px;
    color: rgba(255,255,255,.45);
    margin: 0;
  }
  
  /* Divider */
  .tv-cta-card-divider {
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 2px 0;
  }
  
  /* ---- CTA Buttons ---- */
  .tv-cta-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: background .25s, border-color .25s,
                transform .25s var(--ease), box-shadow .25s;
    cursor: pointer;
  }
  .tv-cta-btn:hover {
    transform: translateX(4px);
  }
  
  /* WhatsApp */
  .tv-cta-btn.whatsapp {
    background: rgba(37,211,102,.1);
    border-color: rgba(37,211,102,.2);
  }
  .tv-cta-btn.whatsapp:hover {
    background: rgba(37,211,102,.18);
    border-color: rgba(37,211,102,.4);
    box-shadow: 0 8px 24px rgba(37,211,102,.15);
  }
  .tv-cta-btn.whatsapp .tv-cta-btn-icon {
    background: #25d366;
    color: var(--white);
  }
  
  /* Call */
  .tv-cta-btn.call {
    background: rgba(240,165,0,.1);
    border-color: rgba(240,165,0,.2);
  }
  .tv-cta-btn.call:hover {
    background: rgba(240,165,0,.18);
    border-color: rgba(240,165,0,.4);
    box-shadow: 0 8px 24px rgba(240,165,0,.15);
  }
  .tv-cta-btn.call .tv-cta-btn-icon {
    background: var(--gold);
    color: var(--navy);
  }
  
  /* Enquiry */
  .tv-cta-btn.enquiry {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.1);
  }
  .tv-cta-btn.enquiry:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
  }
  .tv-cta-btn.enquiry .tv-cta-btn-icon {
    background: rgba(255,255,255,.1);
    color: var(--white);
  }
  
  /* Button icon box */
  .tv-cta-btn-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: transform .25s;
  }
  .tv-cta-btn:hover .tv-cta-btn-icon {
    transform: scale(1.08);
  }
  
  /* Button text */
  .tv-cta-btn-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .tv-cta-btn-label {
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
  }
  .tv-cta-btn-sub {
    font-family: var(--font);
    font-size: 11px;
    color: rgba(255,255,255,.45);
  }
  
  /* Arrow */
  .tv-cta-btn-arrow {
    font-size: 12px;
    color: rgba(255,255,255,.3);
    transition: transform .25s, color .25s;
    flex-shrink: 0;
  }
  .tv-cta-btn:hover .tv-cta-btn-arrow {
    transform: translateX(4px);
    color: rgba(255,255,255,.7);
  }
  
  /* Trust note */
  .tv-cta-trust {
    font-family: var(--font);
    font-size: 11px;
    color: rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 4px 0 0;
    text-align: center;
    justify-content: center;
  }
  .tv-cta-trust i {
    color: var(--gold);
    font-size: 10px;
    flex-shrink: 0;
  }
  
  /* ============================================================ */
  /*  Responsive                                                  */
  /* ============================================================ */
  @media (max-width: 1024px) {
    .tv-cta-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .tv-cta-card {
      max-width: 480px;
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .tv-cta-section { padding: 80px 5vw; }
    .tv-cta-bg      { background-attachment: scroll; }
    .tv-cta-title   { font-size: clamp(32px, 8vw, 48px); }
    .tv-cta-stats   { gap: 16px; }
  }
  @media (max-width: 480px) {
    .tv-cta-section { padding: 64px 4vw; }
    .tv-cta-card    { padding: 20px; }
    .tv-cta-stats   { flex-wrap: wrap; gap: 12px 20px; }
    .tv-cta-stat-div { display: none; }
    .tv-cta-btn     { padding: 12px 14px; gap: 12px; }
  }

  /* ══════════════════════════════════════
   TOUR PACKAGES SECTION
══════════════════════════════════════ */
.tp-section {
  padding: 100px 5vw;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.tp-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;
}

/* ── Tabs ── */
.tp-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px auto 48px;
  position: relative;
  z-index: 2;
}

.tp-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 32px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all .25s var(--ease);
  box-shadow: var(--sh-sm);
}

.tp-tab i { font-size: 13px; }

.tp-tab:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.tp-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  box-shadow: 0 6px 20px rgba(11,19,64,.22);
}

/* ── Swiper Wrapper ── */
.tp-swiper-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: tpFadeIn .35s var(--ease);
}

.tp-hidden {
  display: none;
}

@keyframes tpFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Swiper Slides — Full Image, No Crop ── */
.tp-swiper-wrap .swiper {
  width: 100%;
  padding-bottom: 52px !important; /* space for pagination */
}

.tp-swiper-wrap .swiper-slide {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-swiper-wrap .swiper-slide img {
  width: 100%;
  height: auto;           /* full image — no cropping */
  display: block;
  object-fit: contain;    /* entire image always visible */
  transition: transform .5s var(--ease);
}

.tp-swiper-wrap .swiper-slide:hover img {
  transform: scale(1.03);
}

/* ── Arrows ── */
.tp-prev,
.tp-next {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: var(--sh-md) !important;
  top: 42% !important;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease) !important;
}

.tp-prev:hover,
.tp-next:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.tp-prev::after,
.tp-next::after {
  font-size: 13px !important;
  font-weight: 900 !important;
  color: var(--navy) !important;
}

.tp-prev { left: -8px !important; }
.tp-next { right: -8px !important; }

/* ── Pagination ── */
.tp-pagination {
  bottom: 14px !important;
}

.tp-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--border);
  opacity: 1;
  transition: all .3s var(--ease);
}

.tp-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 860px) {
  .tp-section { padding: 80px 5vw; }
  .tp-prev { left: 0 !important; }
  .tp-next { right: 0 !important; }
}

@media (max-width: 640px) {
  .tp-section { padding: 64px 4vw; }

  .tp-tabs { gap: 10px; }

  .tp-tab {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
  }

  .tp-prev,
  .tp-next {
    display: none !important; /* swipe gesture on mobile */
  }
}


  /* ============================================================ */
/*  TRAVELS CONTACT CARDS                                      */
/* ============================================================ */
.tv-contact-cards-section {
    background: var(--white);
    padding: 0 5vw;
    position: relative;
    z-index: 5;
    margin-top: -36px;
  }
  
  .tv-contact-cards-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .tv-cq-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    box-shadow: var(--sh-sm);
    transition:
      box-shadow .3s var(--ease),
      border-color .3s var(--ease),
      transform .3s var(--ease);
    cursor: pointer;
  }
  
  .tv-cq-card:hover {
    box-shadow: var(--sh-md);
    border-color: rgba(240,165,0,.35);
    transform: translateY(-4px);
  }
  
  .tv-cq-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background .2s, color .2s, border-color .2s;
  }
  
  .tv-cq-icon.call {
    background: rgba(11,19,64,.07);
    border: 1.5px solid rgba(11,19,64,.12);
    color: var(--navy);
  }
  .tv-cq-icon.whatsapp {
    background: rgba(37,211,102,.08);
    border: 1.5px solid rgba(37,211,102,.2);
    color: #25d366;
  }
  .tv-cq-icon.email {
    background: rgba(234,67,53,.07);
    border: 1.5px solid rgba(234,67,53,.15);
    color: #ea4335;
  }
  .tv-cq-icon.visit {
    background: rgba(240,165,0,.1);
    border: 1.5px solid rgba(240,165,0,.25);
    color: var(--gold);
  }
  
  .tv-cq-card:hover .tv-cq-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
  }
  
  .tv-cq-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .tv-cq-body strong {
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--navy);
  }
  .tv-cq-body span {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text);
  }
  .tv-cq-body p {
    font-size: var(--text-xs);
    color: var(--muted);
    margin: 0;
  }
  
  .tv-cq-arrow {
    color: var(--border);
    font-size: 13px;
    flex-shrink: 0;
    transition: color .2s, transform .2s;
  }
  .tv-cq-card:hover .tv-cq-arrow {
    color: var(--gold);
    transform: translateX(4px);
  }
  
  /* Responsive cards */
  @media (max-width: 1024px) {
    .tv-contact-cards-inner {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }
  @media (max-width: 580px) {
    .tv-contact-cards-section {
      margin-top: -24px;
      padding: 0 4vw;
    }
    .tv-contact-cards-inner {
      grid-template-columns: 1fr;
    }
    .tv-cq-card {
      padding: 18px 16px;
    }
  }
  /* ============================================================ */
/*  TRAVELS CONTACT SECTION                                     */
/* ============================================================ */
.tv-contact-section {
    padding: 100px 5vw;
    background: var(--off);
    position: relative;
    overflow: hidden;
  }
  
  /* Dot pattern */
  .tv-contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(11,19,64,.035) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
  }
  
  /* Gold glow top-right */
  .tv-contact-section::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(240,165,0,.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  
  /* ===== Layout ===== */
  .tv-contact-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: start;
  }
  
  /* ============================================================ */
  /*  LEFT PANEL                                                   */
  /* ============================================================ */
  .tv-contact-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
  }
  
  .tv-contact-section .section-title {
    color: var(--navy);
    margin: 0;
  }
  .tv-contact-section .section-title span {
    color: var(--gold);
  }
  
  .tv-contact-desc {
    font-family: var(--font);
    font-size: var(--text-md);
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
  }
  
  /* Tags */
  .tv-contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .tv-contact-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 999px;
  }
  .tv-contact-tags span i {
    color: var(--gold);
    font-size: 10px;
  }
  
  /* Contact items */
  .tv-left-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .tv-left-citem {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    text-decoration: none;
    transition:
      border-color .25s var(--ease),
      box-shadow .25s var(--ease),
      transform .25s var(--ease);
  }
  .tv-left-citem:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(11,19,64,.08);
    transform: translateX(5px);
  }
  
  .tv-left-cicon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: background .2s, color .2s, border-color .2s;
  }
  .tv-left-cicon.call {
    background: rgba(11,19,64,.07);
    border: 1.5px solid rgba(11,19,64,.12);
    color: var(--navy);
  }
  .tv-left-cicon.wa {
    background: rgba(37,211,102,.08);
    border: 1.5px solid rgba(37,211,102,.22);
    color: #25d366;
  }
  .tv-left-cicon.email {
    background: rgba(234,67,53,.07);
    border: 1.5px solid rgba(234,67,53,.15);
    color: #ea4335;
  }
  .tv-left-cicon.visit {
    background: rgba(240,165,0,.1);
    border: 1.5px solid rgba(240,165,0,.25);
    color: var(--gold);
  }
  .tv-left-citem:hover .tv-left-cicon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
  }
  
  .tv-left-cbody {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .tv-left-cbody strong {
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
  }
  .tv-left-cbody span {
    font-family: var(--font);
    font-size: var(--text-xs);
    color: var(--muted);
  }
  
  .tv-left-carrow {
    font-size: 12px;
    color: var(--border);
    flex-shrink: 0;
    transition: color .2s, transform .2s;
  }
  .tv-left-citem:hover .tv-left-carrow {
    color: var(--gold);
    transform: translateX(3px);
  }
  
  /* ============================================================ */
  /*  RIGHT — FORM CARD                                           */
  /* ============================================================ */
  .tv-form-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(11,19,64,.10),
                0 1px 4px rgba(11,19,64,.06);
    border: 1.5px solid var(--border);
  }
  
  /* Card Header */
  .tv-form-card-header {
    background: var(--navy);
    padding: 26px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 3px solid var(--gold);
  }
  .tv-form-header-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--r-sm);
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    box-shadow: 0 6px 18px rgba(240,165,0,.4);
    flex-shrink: 0;
  }
  .tv-form-card-header h3 {
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 4px;
    line-height: 1.2;
  }
  .tv-form-card-header p {
    font-family: var(--font);
    font-size: 12.5px;
    color: rgba(255,255,255,.4);
    margin: 0;
  }
  
  /* Form body */
  .tv-enquiry-form {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .tv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .tv-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .tv-form-group.full {
    grid-column: 1 / -1;
  }
  
  .tv-form-group label {
    font-family: var(--font);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .05em;
    text-transform: uppercase;
  }
  .tv-form-group label span {
    color: #dc2626;
    margin-left: 2px;
  }
  
  /* Input wrap */
  .tv-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .tv-input-wrap > i:first-child {
    position: absolute;
    left: 14px;
    font-size: 13px;
    color: var(--muted);
    pointer-events: none;
    z-index: 1;
    transition: color .2s;
  }
  .tv-input-wrap.textarea > i:first-child {
    top: 14px;
    align-self: flex-start;
  }
  
  .tv-input-wrap input,
  .tv-input-wrap select,
  .tv-input-wrap textarea {
    width: 100%;
    padding: 13px 16px 13px 40px;
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--text);
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1.5;
  }
  .tv-input-wrap textarea {
    resize: vertical;
    min-height: 96px;
    padding-top: 13px;
  }
  .tv-input-wrap input::placeholder,
  .tv-input-wrap textarea::placeholder {
    color: rgba(0,0,0,.25);
    font-size: var(--text-sm);
  }
  .tv-input-wrap input:focus,
  .tv-input-wrap select:focus,
  .tv-input-wrap textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240,165,0,.12);
  }
  .tv-input-wrap:focus-within > i:first-child {
    color: var(--gold);
  }
  
  /* Select arrow */
  .tv-select-arrow {
    position: absolute;
    right: 14px;
    font-size: 10px;
    color: var(--muted);
    pointer-events: none;
  }
  
  /* Submit button */
  .tv-form-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-h);
    font-size: var(--text-md);
    font-weight: 800;
    border: none;
    border-radius: var(--r-md);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .25s, transform .2s, box-shadow .25s;
    margin-top: 4px;
  }
  .tv-form-submit::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
  }
  .tv-form-submit:hover {
    background: #0d1f8c;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(11,19,64,.22);
  }
  .tv-form-submit:active {
    transform: translateY(0);
  }
  
  .tv-submit-text,
  .tv-submit-loader {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .tv-submit-loader               { display: none; }
  .tv-form-submit.loading .tv-submit-text   { display: none; }
  .tv-form-submit.loading .tv-submit-loader { display: flex; }
  
  /* Success */
  .tv-form-success {
    display: none;
    align-items: center;
    gap: 14px;
    background: rgba(34,197,94,.06);
    border: 1.5px solid rgba(34,197,94,.22);
    border-radius: var(--r-md);
    padding: 14px 18px;
  }
  .tv-form-success.show { display: flex; }
  .tv-form-success > i {
    font-size: 26px;
    color: #22c55e;
    flex-shrink: 0;
  }
  .tv-form-success strong {
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--navy);
    display: block;
    margin-bottom: 3px;
  }
  .tv-form-success p {
    font-family: var(--font);
    font-size: 12px;
    color: var(--muted);
    margin: 0;
  }
  
  /* ============================================================ */
  /*  RESPONSIVE                                                  */
  /* ============================================================ */
  @media (max-width: 1024px) {
    .tv-contact-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .tv-contact-left  { order: 1; }
    .tv-contact-right { order: 2; }
  }
  
  @media (max-width: 768px) {
    .tv-contact-section   { padding: 80px 5vw; }
    .tv-form-card-header  { padding: 22px 24px; }
    .tv-enquiry-form      { padding: 24px; gap: 16px; }
    .tv-form-row          { grid-template-columns: 1fr; gap: 16px; }
  }
  
  @media (max-width: 480px) {
    .tv-contact-section  { padding: 64px 4vw; }
    .tv-enquiry-form     { padding: 18px; gap: 14px; }
    .tv-form-card-header { padding: 18px 20px; }
    .tv-left-citem       { padding: 14px 16px; }
    .tv-left-cicon {
      width: 40px;
      height: 40px;
      font-size: 15px;
    }
  }

  
  /* ============================================================ */
/*  TRAVELS FAQ SECTION                                         */
/* ============================================================ */
.tv-faq-section {
    padding: 100px 5vw;
    background: var(--off);
    position: relative;
    overflow: hidden;
  }
  
  /* Dot pattern */
  .tv-faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(11,19,64,.03) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
  }
  
  /* Gold glow */
  .tv-faq-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240,165,0,.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  
  /* Header */
  .tv-faq-section .section-header {
    position: relative;
    z-index: 1;
  }
  
  /* ===== Inner 2-col grid ===== */
  .tv-faq-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
  }
  
  .tv-faq-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  /* ============================================================ */
  /*  FAQ ITEM                                                    */
  /* ============================================================ */
  .tv-faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition:
      border-color .25s var(--ease),
      box-shadow   .25s var(--ease);
  }
  .tv-faq-item:hover {
    border-color: rgba(240,165,0,.3);
    box-shadow: 0 6px 20px rgba(11,19,64,.06);
  }
  .tv-faq-item.open {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(11,19,64,.09);
  }
  
  /* ===== Question button ===== */
  .tv-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }
  .tv-faq-q span {
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    transition: color .2s;
  }
  .tv-faq-item.open .tv-faq-q span {
    color: var(--navy);
  }
  
  /* Icon circle */
  .tv-faq-icon-wrap {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: rgba(11,19,64,.06);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--navy);
    flex-shrink: 0;
    transition:
      background    .25s var(--ease),
      border-color  .25s var(--ease),
      color         .25s var(--ease),
      transform     .35s var(--ease);
  }
  .tv-faq-item:hover .tv-faq-icon-wrap {
    background: rgba(240,165,0,.1);
    border-color: rgba(240,165,0,.3);
    color: var(--gold);
  }
  .tv-faq-item.open .tv-faq-icon-wrap {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
  }
  
  /* ===== Answer ===== */
  .tv-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
  }
  .tv-faq-item.open .tv-faq-a {
    max-height: 220px;
  }
  .tv-faq-a p {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
    padding: 16px 22px 22px;
    border-top: 1px solid var(--border);
  }
  
  /* ============================================================ */
  /*  BOTTOM CTA                                                  */
  /* ============================================================ */
  .tv-faq-cta {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 52px auto 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    overflow: hidden;
  }
  
  /* Gold top line */
  .tv-faq-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  
  .tv-faq-cta-text h3 {
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 6px;
  }
  .tv-faq-cta-text p {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    margin: 0;
  }
  
  .tv-faq-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  /* Buttons */
  .tv-faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 800;
    border-radius: var(--r-md);
    text-decoration: none;
    transition:
      background  .25s var(--ease),
      transform   .2s  var(--ease),
      box-shadow  .25s var(--ease);
  }
  .tv-faq-btn.primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(11,19,64,.18);
  }
  .tv-faq-btn.primary:hover {
    background: #0d1f8c;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(11,19,64,.28);
  }
  .tv-faq-btn.wa {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37,211,102,.25);
  }
  .tv-faq-btn.wa:hover {
    background: #1ebe58;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,211,102,.35);
  }
  
  /* ============================================================ */
  /*  RESPONSIVE                                                  */
  /* ============================================================ */
  @media (max-width: 860px) {
    .tv-faq-inner {
      grid-template-columns: 1fr;
      gap: 14px;
    }
  }
  @media (max-width: 768px) {
    .tv-faq-section {
      padding: 80px 5vw;
    }
    .tv-faq-inner {
      margin-top: 48px;
    }
    .tv-faq-cta {
      flex-direction: column;
      align-items: flex-start;
      padding: 28px 24px;
    }
    .tv-faq-cta-btns {
      width: 100%;
    }
    .tv-faq-btn {
      flex: 1;
      justify-content: center;
    }
  }
  @media (max-width: 480px) {
    .tv-faq-section {
      padding: 64px 4vw;
    }
    .tv-faq-q {
      padding: 18px;
    }
    .tv-faq-a p {
      padding: 14px 18px 18px;
    }
    .tv-faq-cta {
      padding: 22px 18px;
    }
    .tv-faq-cta-btns {
      flex-direction: column;
    }
    .tv-faq-btn {
      flex: unset;
      width: 100%;
      justify-content: center;
    }
  }
  
  /* ========================
   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;
    }
}