
/* =========================================================
   NAVYA RIDES 2.0  |  PREMIUM EDITION
   Award-winning · Glassmorphism · GSAP-ready
   ========================================================= */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Backgrounds — clean white/light system */
  --bg-0: #ffffff;
  --bg-1: #f7f8fc;
  --bg-2: #f0f3f9;
  --bg-3: #e6eaf4;
  --bg-4: #d9dff0;

  /* Glass surfaces — light theme */
  --glass: rgba(255, 255, 255, 0.95);
  --glass-h: rgba(255, 255, 255, 1);
  --glass-b: rgba(0, 0, 0, 0.08);
  --glass-b-h: rgba(245, 180, 33, 0.50);
  --blur: blur(20px);

  /* Brand — JS Tours amber */
  --gold: #F5B421;
  --gold-d: #d99a0e;
  --gold-l: rgba(245, 180, 33, 0.10);
  --gold-glow: rgba(245, 180, 33, 0.22);
  --gold-shine: #ffd25a;

  /* Green (WhatsApp) */
  --wa: #22c55e;
  --wa-d: #16a34a;
  --wa-glow: rgba(34, 197, 94, 0.28);

  /* Text scale — dark for light bg */
  --t1: #0d0f14;
  --t2: #3d4555;
  --t3: #6b7485;

  /* Gradients */
  --g-gold: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold) 50%, #d99a0e 100%);
  --g-navy: linear-gradient(135deg, #010101 0%, #0d1020 50%, #010101 100%);
  --g-hero: linear-gradient(105deg, rgba(1,1,1,.90) 0%, rgba(1,1,1,.65) 50%, rgba(1,1,1,.20) 100%);
  --g-card: linear-gradient(145deg, #ffffff 0%, #f7f8fc 100%);
  --g-shine: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.80) 50%, transparent 100%);

  /* Shadows — lighter for white bg */
  --sh-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --sh-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --sh-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --sh-gold: 0 8px 36px rgba(245, 180, 33, 0.32);
  --sh-wa: 0 8px 32px rgba(34, 197, 94, 0.30);

  /* Typography — Poppins */
  --fd: 'Poppins', sans-serif;
  --fb: 'Poppins', sans-serif;

  /* Layout */
  --mw: 1320px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --pill: 100px;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--fb);
  background: var(--bg-1);
  color: var(--t1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: var(--fd);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--t1);
}

h2 {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--t1);
}

h3 {
  font-family: var(--fd);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--t1);
}

h4, h5 {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--t1);
}

p {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  color: var(--t2);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

/* ─── SECTION HEADER ─────────────────────────────────────── */
.sh {
  text-align: center;
  margin-bottom: 2rem;
}

.sh-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-l);
  border: 1px solid rgba(245, 180, 33, 0.22);
  padding: 0.5rem 1.2rem;
  border-radius: var(--pill);
  margin-bottom: 1.2rem;
}

.sh-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 1rem;
}

.sh-title .accent {
  -webkit-text-fill-color: var(--gold);
}

.sh-desc {
  color: var(--t2);
  font-size: clamp(15px, 2vw, 17px);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 17px);
  border: 2px solid transparent;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.02em;
  z-index: 1;
}

.btn::before,
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  transition: all ease 0.5s;
  z-index: -1;
  border-radius: inherit;
}
.btn::before { transform: rotateX(90deg); }
.btn::after  { transform: rotateY(90deg); }
.btn:hover::before { transform: rotateX(0deg); }
.btn:hover::after  { transform: rotateY(0deg); }

.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: 1.05rem;
}


/* Gold gradient button */
.btn-gold {
  background: var(--g-gold);
  background-size: 200% 100%;
  color: #111;
  box-shadow: var(--sh-gold);
}
.btn-gold::before,
.btn-gold::after { background: #c8870c; }

.btn-gold:hover {
  background-position: right;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(247, 160, 0, 0.5);
}

.btn-gold:active {
  transform: scale(0.97);
}

/* Pulse glow on nav Book Now */
.nav-actions .btn-gold {
  animation: btnPulse 2.5s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245,180,33,0.3); }
  50%      { box-shadow: 0 4px 30px rgba(245,180,33,0.6), 0 0 15px rgba(245,180,33,0.3); }
}

/* Outline gold */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 0 var(--gold);
}
.btn-outline::before,
.btn-outline::after { background: var(--gold); }

.btn-outline:hover {
  border-color: var(--gold);
  color: #111;
  transform: translateY(-3px);
  box-shadow: var(--sh-gold);
}

.btn-outline:active {
  transform: scale(0.97);
}

/* WhatsApp */
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: var(--sh-wa);
}
.btn-wa::before,
.btn-wa::after { background: var(--wa-d); }

.btn-wa:hover {
  background: var(--wa-d);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.5);
}

.btn-wa:active {
  transform: scale(0.97);
}

.bxl-whatsapp:before {
  font-size: 1.5rem;
}
.bxs-phone-call:before {
  font-size: 1.2rem;
}
.bxs-phone:before {
  font-size: 1.2rem;
}

/* Icon only */
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.2rem;
}

/* ─── HEADER / NAV ───────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: padding var(--t), background var(--t), box-shadow var(--t), transform 0.4s ease;
}

.header > .container {
  padding: 1.2rem 0;
  transition: padding var(--t);
}

.header.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 4px 28px rgba(0,0,0,0.10);
}

.header.scrolled > .container {
  padding: 0.6rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 12px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  outline: 1.5px solid rgba(247, 160, 0, 0.2);
  box-shadow: 0 2px 16px rgba(247, 160, 0, 0.12);
  transition: var(--t);
}

.nav-logo:hover img {
  transform: scale(1.05);
  outline-color: rgba(247, 160, 0, 0.5);
  box-shadow: 0 4px 24px rgba(247, 160, 0, 0.3);
}


/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--fd);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: #0d0f14;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--g-gold);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 30px;
  padding: 3px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #0d0f14;
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile close btn */
.nav-close {
  display: none;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--t1);
  cursor: pointer;
  transition: color var(--t);
}

.nav-close:hover {
  color: var(--gold);
}

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-overlay.show {
  display: block;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #08090f;
  justify-content: center;
}


/* Decorative orbs */
.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 160, 0, 0.12) 0%, transparent 70%);
  top: -10%;
  left: -5%;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 80, 255, 0.1) 0%, transparent 70%);
  bottom: 10%;
  right: 5%;
}

.hero-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 160, 220, 0.07) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

/* Particle canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ─── BANNER CONTENT (Travhub-style centered layout) ─────── */
.banner-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 0;
  width: 100%;
}

/* Eyebrow label with decorative lines */
.banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

/* Main headline */
.banner-title {
  font-family: var(--fd);
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 2px;
  color: var(--bg-0);
  margin-bottom: 1.5rem;
  max-width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

/* Gold shimmer accent word */
.banner-accent {
  background: linear-gradient(90deg, var(--gold-shine), var(--gold), #fff5dc, var(--gold), var(--gold-shine));
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroShimmer 4s ease-in-out infinite;
}

/* Description */
.banner-desc {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 750px;
  line-height: 1.85;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}
.banner-desc strong {
  color: var(--gold);
  font-weight: 700;
}

/* ─── HORIZONTAL SEARCH CARD ─────────────────────────────── */
.banner-search-card {
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--pill);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.40), 0 4px 16px rgba(0, 0, 0, 0.20);
  overflow: hidden;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.banner-search-card form {
  display: flex;
  align-items: stretch;
  padding: 0.45rem 0.45rem 0.45rem 1.6rem;
}

.bsc-fields {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.bsc-field {
  flex: 1;
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
}

.bsc-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #8899b0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.bsc-label i {
  color: var(--gold);
  font-size: 0.95rem;
}

.bsc-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.15rem;
  font-weight: 500;
  color: #151e30;
  font-family: var(--fd);
  width: 100%;
  padding: 0;
  transition: color 0.2s ease;
}
.bsc-input:focus {
  color: #060f22;
}
.bsc-input::placeholder {
  color: #b8c3d4;
  font-weight: 400;
}
input[type="date"].bsc-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.45;
}

.field-error {
  color: #ef4444;
  font-size: 0.72rem;
  margin-top: 0.35rem;
  font-weight: 500;
  display: none;
}
.field-error.show {
  display: block;
  animation: fadeUp 0.3s ease;
}
.bsc-input.has-error {
  color: #ef4444;
}

/* Separator line between fields */
.bsc-sep {
  width: 1px;
  height: 38px;
  background: #e4eaf4;
  flex-shrink: 0;
  align-self: center;
}

/* Book button inside the card */
.bsc-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wa);
  color: #fff;
  font-family: var(--fd);
  font-size: 1.12rem;
  font-weight: 700;
  padding: 0 2rem;
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.15s ease;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.40);
  min-height: 54px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.bsc-btn::before,
.bsc-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--wa-d);
  transition: all ease 0.5s;
  z-index: -1;
  border-radius: inherit;
}
.bsc-btn::before { transform: rotateX(90deg); }
.bsc-btn::after  { transform: rotateY(90deg); }
.bsc-btn:hover::before { transform: rotateX(0deg); }
.bsc-btn:hover::after  { transform: rotateY(0deg); }
.bsc-btn:hover {
  box-shadow: 0 10px 36px rgba(34, 197, 94, 0.55);
  transform: translateY(-1px);
}
.bsc-btn i { font-size: 1.3rem; }


@keyframes heroShimmer {
  0%, 100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}


/* ─── TICKER ─────────────────────────────────────────────── */
.ticker {
  background: var(--g-gold);
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--gold) 0%, transparent 100%);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--gold-d) 0%, transparent 100%);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #111;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-item i {
  font-size: 1.2rem;
}

.ticker-sep {
  color: rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 2.5rem 1.6rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Gold accent line at bottom */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--g-gold);
  border-radius: 3px 3px 0 0;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(245, 180, 33, 0.18);
}

.service-card:hover::after {
  width: 100%;
}

.svc-icon {
  width: 68px;
  height: 68px;
  background: var(--g-gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  color: #0b0f19;
  box-shadow: 0 6px 20px rgba(245, 180, 33, 0.35);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .svc-icon {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(245, 180, 33, 0.5);
}

.service-card h3 {
  font-size: clamp(17px, 1.8vw, 20px) !important;
  font-weight: 600 !important;
  color: var(--t1) !important;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover h3 {
  color: var(--gold-d) !important;
}

.service-card p {
  font-size: clamp(14.5px, 1.5vw, 16px) !important;
  color: var(--t3) !important;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

/* ─── STATS ──────────────────────────────────────────────── */
.stats-strip {
  background: var(--g-gold);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: statsShine 3s ease infinite;
}

@keyframes statsShine {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #111;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-lbl {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
  font-size: 1rem;
}

/* ─── FLEET ──────────────────────────────────────────────── */
.fleet-section {
  background: var(--bg-1);
}

.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--pill);
  color: var(--t3);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--t);
  cursor: pointer;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--g-gold);
  border-color: transparent;
  color: #111;
  box-shadow: var(--sh-gold);
}

/* ─── FLEET SLIDER ───────────────────────────────────────── */
.fleet-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  flex: 1;
  min-width: 0;
}

.fleet-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  box-shadow: var(--sh-sm);
  position: relative;
  z-index: 2;
}
.fleet-arrow:hover {
  background: var(--g-gold);
  color: #111;
  border-color: transparent;
  box-shadow: var(--sh-gold);
  transform: scale(1.08);
}
.fleet-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.fleet-nav-row {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.fleet-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.fleet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-4);
  border: none;
  cursor: pointer;
  transition: var(--t);
  padding: 0;
}
.fleet-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(245,180,33,0.4);
}

.car-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-slow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.car-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(247, 160, 0, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 160, 0, 0.4);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(247, 160, 0, 0.12);
}

.car-card:hover::after {
  opacity: 1;
}

.car-img-wrap {
  height: 190px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 70%, var(--bg-3) 0%, var(--bg-0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
}

/* Subtle grid pattern in card bg */
.car-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

.car-img-wrap img {
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.car-card:hover .car-img-wrap img {
  transform: scale(1.08) translateY(-4px);
}

.car-info {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.car-category {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.car-name {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.car-desc {
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  color: var(--t3);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.car-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.car-spec {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 15px;
  color: var(--t2);
}

.car-spec i {
  color: var(--gold);
  font-size: 1.1rem;
}

.car-actions {
  display: flex;
  gap: 0.6rem;
}

.car-actions .btn {
  flex: 1;
  font-size: 1.05rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--pill);
}

/* ─── WHY CHOOSE US / ABOUT ──────────────────────────────── */
.why-section {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 160, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin: 2rem 0;
}

.why-feat {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b);
  border-radius: var(--r);
  padding: 1.25rem;
  transition: var(--t);
}

.why-feat:hover {
  border-color: var(--glass-b-h);
  transform: translateY(-3px);
  background: var(--glass-h);
}


.why-feat i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.why-feat h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.why-feat p {
  font-size: 0.95rem;
  color: var(--t3);
  line-height: 1.4;
}

.why-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-visuals img {
  border-radius: var(--r-lg);
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--glass-b);
  background: radial-gradient(ellipse at 50% 70%, var(--bg-3) 0%, var(--bg-0) 100%);
  padding: 1rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.why-visuals img:hover {
  transform: scale(1.05);
  box-shadow: var(--sh-lg);
  border-color: rgba(245,180,33,0.25);
}

.why-visuals img:nth-child(odd) {
  transform: translateY(1.5rem);
}

.why-visuals img:nth-child(even) {
  transform: translateY(-1.5rem);
}

.why-visuals img:nth-child(odd):hover {
  transform: translateY(1.5rem) scale(1.05);
}

.why-visuals img:nth-child(even):hover {
  transform: translateY(-1.5rem) scale(1.05);
}

/* ─── ROUTES ─────────────────────────────────────────────── */
.routes-section {
  background: var(--bg-2);
}

/* ─── ROUTES GRID ─────────────────────────────────────────── */
.routes-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.route-item {
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--r);
  padding: 1rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: var(--t);
  cursor: default;
  text-align: center;
}

.route-item:hover {
  border-color: rgba(245, 180, 33, 0.5);
  box-shadow: 0 8px 28px rgba(245, 180, 33, 0.14);
  transform: translateY(-3px);
  background: #fffdf7;
}

.rc-city {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t1);
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rc-sep {
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--t);
}

.route-item:hover .rc-sep {
  transform: scale(1.25);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-0);
  overflow: hidden;
}

.test-wrapper {
  position: relative;
}

.test-track-outer {
  overflow: hidden;
}

.test-track {
  display: flex;
  gap: 1.75rem;
  will-change: transform;
}

.review-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b);
  border-radius: var(--r-xl);
  padding: 2rem;
  flex: 0 0 calc(33.333% - 1.2rem);
  transition: var(--t);
}

.review-card:hover {
  border-color: rgba(247, 160, 0, 0.35);
  transform: translateY(-4px);
}

.stars {
  display: flex;
  gap: 0.2rem;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.review-text {
  font-size: 1.05rem;
  color: var(--t2);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.4rem;
}

.review-text::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 0;
  font-size: 3rem;
  font-family: var(--fd);
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-l);
  border: 2px solid rgba(247, 160, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.reviewer-info h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.reviewer-info p {
  font-size: 0.85rem;
  color: var(--t3);
}

/* Slider controls */
.test-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.test-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  box-shadow: var(--sh-sm);
  flex-shrink: 0;
}

.test-btn:hover {
  background: var(--g-gold);
  color: #111;
  border-color: transparent;
  box-shadow: var(--sh-gold);
  transform: scale(1.08);
}

.test-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.test-dots {
  display: flex;
  gap: 0.5rem;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-b);
  cursor: pointer;
  transition: var(--t);
}

.test-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: var(--pill);
  box-shadow: 0 0 8px var(--gold);
}

/* ─── CTA ────────────────────────────────────────────────── */
/* ─── CTA SECTION — PARALLAX REDESIGN ───────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
  background: #06101e;
  isolation: isolate;
}

/* ── Static background layer ── */
.cta-parallax {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 18% 55%, rgba(245,180,33,0.16) 0%, transparent 52%),
    radial-gradient(ellipse 70% 80% at 82% 45%, rgba(34,197,94,0.07) 0%, transparent 52%),
    linear-gradient(160deg, #040d1a 0%, #0e1e38 45%, #060f1e 100%);
  z-index: 0;
}

/* ── Subtle dot-grid texture ── */
.cta-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  z-index: 1;
  pointer-events: none;
}


/* ── Ambient glow orbs ── */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.cta-orb--left {
  width: 380px;
  height: 380px;
  background: rgba(245,180,33,0.10);
  top: -80px;
  left: -100px;
  animation: ctaOrbFloat 7s ease-in-out infinite;
}
.cta-orb--right {
  width: 280px;
  height: 280px;
  background: rgba(34,197,94,0.07);
  bottom: -60px;
  right: 10%;
  animation: ctaOrbFloat 9s ease-in-out infinite reverse;
}
@keyframes ctaOrbFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-24px); }
}

/* ── Content ── */
.cta-inner {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,180,33,0.10);
  border: 1px solid rgba(245,180,33,0.25);
  border-radius: var(--pill);
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.5rem;
}
.cta-eyebrow i { font-size: 1.1rem; }

.cta-divider {
  width: 56px;
  height: 3px;
  background: var(--g-gold);
  border-radius: 2px;
  margin: 0 auto 1.6rem;
}

.cta-title {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 0;
}

.cta-accent {
  background: linear-gradient(90deg, var(--gold-shine), var(--gold), #fff5c0, var(--gold));
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroShimmer 4s ease-in-out infinite;
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  margin: 1.5rem auto 0;
  max-width: 520px;
}
.cta-br { display: none; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.75rem;
}

/* ─── FOOTER (4-column compact) ─────────────────────────── */
.footer {
  background: #0b0f19;
  padding: 2.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 0.8rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.f-link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.f-link:hover {
  color: var(--gold);
  padding-left: 4px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
}

.contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer { padding: 2rem 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-brand { grid-column: unset; }
  .footer-desc { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .footer-legal { justify-content: center; }
}

/* ─── FLOATING BUTTONS ───────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  z-index: 900;
  transition: var(--t);
  animation: waPulse 2.8s ease infinite;
  box-shadow: var(--sh-wa);
}

.float-wa:hover {
  background: var(--wa-d);
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.55);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--wa-glow);
  }

  55% {
    box-shadow: 0 0 0 18px rgba(34, 197, 94, 0);
  }
}

.float-call {
  position: fixed;
  bottom: 1.75rem;
  right: 5.5rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--g-gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 900;
  transition: var(--t);
  box-shadow: var(--sh-gold);
}

.float-call:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(247, 160, 0, 0.55);
}

/* ─── CSS ANIMATIONS (no JS dependency) ─────────────────── */

/* ── Keyframes ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}


/* ── Scroll-reveal: JS adds .is-visible when element enters viewport ── */
.sr {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.sr.is-visible {
  opacity: 1;
  transform: none;
}

.sr-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.sr-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.sr-left.is-visible,
.sr-right.is-visible {
  opacity: 1;
  transform: none;
}

.sr-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.sr-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children with .sr */
.sr-d1 {
  transition-delay: 0.08s;
}

.sr-d2 {
  transition-delay: 0.16s;
}

.sr-d3 {
  transition-delay: 0.24s;
}

.sr-d4 {
  transition-delay: 0.32s;
}

.sr-d5 {
  transition-delay: 0.40s;
}

.sr-d6 {
  transition-delay: 0.48s;
}

.sr-d7 {
  transition-delay: 0.56s;
}

.sr-d8 {
  transition-delay: 0.64s;
}

.sr-d9 {
  transition-delay: 0.72s;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE  —  Mobile-first, thorough
   Breakpoints: 1100 | 900 | 700 | 480 | 380
   ═══════════════════════════════════════════════════════════ */


/* ─── SCROLL PROGRESS BAR ────────────────────────────────── */
.scroll-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--g-gold);
  width: 0%; z-index: 9999;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(245,180,33,0.5);
}

/* ─── OFFER BANNER (duplicate removed) ──────────────────── */


/* ─── FAQ SECTION ────────────────────────────────────────── */
.faq-section { background: var(--bg-1); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item.open {
  border-color: rgba(245, 180, 33, 0.45);
  box-shadow: 0 6px 28px rgba(245, 180, 33, 0.10);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--t1);
  transition: color var(--t);
}

.faq-q:hover { color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }

.faq-q i {
  color: var(--gold);
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.25rem; }

.faq-a p {
  font-size: 0.95rem;
  color: var(--t2);
  line-height: 1.75;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.9rem;
}

/* ─── CURSOR GLOW ───────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,180,33,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════
   LIGHT BRAND THEME  |  JS Tours & Travels
   Primary #F5B421  ·  Secondary #010101
   ═══════════════════════════════════════════════════════════ */

/* ── Global glass → white cards ── */
.car-card,
.why-feat,
.review-card {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.07);
}

.why-text .why-features .why-feat {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.car-card:hover {
  border-color: transparent;
}

.why-feat:hover {
  border-color: rgba(245,180,33,0.35);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  background: #ffffff;
}

.review-card:hover {
  border-color: rgba(245,180,33,0.28);
}


/* ── Filter buttons ── */
.filter-btn {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.09);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--t2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.filter-btn:hover {
  background: rgba(245,180,33,0.06);
  border-color: var(--gold);
  color: var(--gold-d);
}
.filter-btn.active {
  color: #111;
}

/* ── Route items (light theme already white, no override needed) ── */

/* ── Testimonial controls (light theme — already matches fleet arrows) ── */
.test-dot {
  background: rgba(0,0,0,0.12);
}

/* ── Car image bg — light ── */
.car-img-wrap {
  background: radial-gradient(ellipse at 50% 70%, #f0f3f9 0%, #e6eaf4 100%);
}
.car-img-wrap::before {
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
}

/* ── Why visuals ── */
.why-visuals img {
  background: radial-gradient(ellipse at 50% 70%, #f0f3f9 0%, #e6eaf4 100%);
  border-color: rgba(0,0,0,0.07);
}

/* ── Footer text colours ── */
.footer .footer-col-title { color: #ffffff; }
.footer .footer-desc,
.footer .contact-item,
.footer .f-link,
.footer .contact-item a,
.footer .footer-bottom p,
.footer .footer-legal a { color: rgba(255,255,255,0.75); }
.footer .f-link:hover,
.footer .contact-item a:hover,
.footer .footer-legal a:hover { color: var(--gold); }
.footer .footer-bottom { border-top-color: rgba(255,255,255,0.08); }
.footer .social-btn {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
}
.footer .social-btn:hover {
  background: rgba(245,180,33,0.12);
  border-color: rgba(245,180,33,0.35);
  color: var(--gold);
}

/* ── Nav close button ── */
.nav-close { color: #0d0f14; }
.nav-close:hover { color: var(--gold); }

/* ── Booking card (banner search) on white bg ── */
.bsc-btn { background: var(--gold); color: #111; }
.bsc-btn::before,
.bsc-btn::after { background: var(--gold-d); }
.bsc-btn:hover {
  box-shadow: 0 10px 36px rgba(245,180,33,0.45);
}

/* ── Cursor glow — amber on white ── */
.cursor-glow {
  background: radial-gradient(circle, rgba(245,180,33,0.06) 0%, transparent 70%);
  mix-blend-mode: multiply;
}

/* ── Scroll progress bar ── */
.scroll-progress-bar {
  box-shadow: 0 0 10px rgba(245,180,33,0.45);
}
