/* ================= 1st Choice Travels — Emerald Green & Gold luxury theme ================= */
:root {
  /* Palette: #083327 dark green · #1E5A45 green · #9BB8A8 sage · #F5F7F6 off-white · #C9A56A gold */
  --green-dark: #083327;
  --green: #1e5a45;
  --sage: #9bb8a8;
  --offwhite: #f5f7f6;
  --tan: #c9a56a;

  --maroon: #1e7a56;
  --maroon-2: #ff1414;
  --maroon-dark: #0a4030;
  --rose: #9bb8a8;

  --black: #f5f7f6;          /* off-white page background */
  --black-2: #eef4f0;        /* soft section */
  --black-3: #e3ede8;        /* slightly deeper */
  --panel: #ffffff;          /* card background */
  --line: #d5e4dc;           /* light border */
  --gold: #ffae2b;           /* primary accent = bright gold */
  --gold-2: #e6c07e;         /* lighter gold */
  --gold-soft: rgba(212, 168, 96, 0.14);
  --hero: #ffffff;
  --text: #0a3327;           /* dark green text */
  --muted: #47665a;          /* muted body text */
  --muted-2: #85a094;        /* lighter muted */
  --radius: 18px;
  --shadow: 0 22px 55px rgba(8, 51, 39, 0.14), 0 6px 18px rgba(8, 51, 39, 0.08);
  --gold-grad: linear-gradient(135deg, #eac583, #d4a860 55%, #c19246);
  --glow: 0 12px 40px rgba(212, 168, 96, 0.25);
  --glass: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(30, 90, 69, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 15% 5%, rgba(201, 165, 106, 0.05), transparent),
    radial-gradient(ellipse 700px 500px at 85% 85%, rgba(30, 90, 69, 0.04), transparent);
}
/* Splatter/spray paint texture - green to orange gradient */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='sp'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' seed='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3ClinearGradient id='gc' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%232e9e5b'/%3E%3Cstop offset='0.5' stop-color='%2368b85a'/%3E%3Cstop offset='1' stop-color='%23e8a54c'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23gc)' filter='url(%23sp)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
h1, h2, h3, .serif { font-family: 'Playfair Display', Georgia, serif; color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, 92%); margin: 0 auto; position: relative; z-index: 1; }
section { position: relative; }
::selection { background: rgba(13, 155, 106, 0.3); color: #fff; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  color: var(--maroon-2); text-transform: uppercase; letter-spacing: 5px;
  font-size: 12px; font-weight: 700; display: inline-block; margin-bottom: 16px;
}

/* Black alignment/ruling lines */
.lined {
  position: relative;
}
.lined::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 59px,
    rgba(0, 0, 0, 0.04) 59px,
    rgba(0, 0, 0, 0.04) 60px
  );
}
/* Vertical ruling lines */
.lined-v::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 199px,
    rgba(0, 0, 0, 0.025) 199px,
    rgba(0, 0, 0, 0.025) 200px
  );
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #e7f0ea; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--maroon-2), var(--maroon)); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--maroon-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 40px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid transparent; transition: all .3s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }
.btn-gold { background: var(--gold-grad); color: #fff; font-weight: 700;
  box-shadow: 0 10px 28px rgba(78, 122, 95, 0.32), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn-gold:hover { transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 44px rgba(78, 122, 95, 0.44), inset 0 1px 0 rgba(255,255,255,0.28); }
.btn-gold:active { transform: translateY(-1px) scale(0.99); }
.btn-outline { background: transparent; border-color: var(--maroon); color: var(--maroon); font-weight: 600; }
.btn-outline:hover { background: var(--maroon); color: #fff; transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(78, 122, 95, .28); }
.btn-outline.danger { border-color: #c0392b; color: #c0392b; }
.btn-outline.danger:hover { background: #c0392b; color: #fff; }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--maroon); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn.block { width: 100%; }

/* ---------- Header ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all .4s cubic-bezier(.4, 0, .2, 1);
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line); padding: 12px 0;
  box-shadow: 0 6px 30px rgba(40, 70, 52, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 24px; letter-spacing: .2px; }
.logo .mark { width: 62px; height: 62px; display: grid; place-items: center;
  animation: pinFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(78,122,95,.35)) drop-shadow(0 3px 6px rgba(0,0,0,.15));
  transform-style: preserve-3d; perspective: 200px; }
.logo .mark img, .logo .mark svg { width: 100%; height: 100%;
  filter: drop-shadow(2px 4px 3px rgba(0,0,0,.25));
  transform: rotateY(-5deg) rotateX(3deg); transition: transform .4s; }
.logo:hover .mark img, .logo:hover .mark svg { transform: rotateY(5deg) rotateX(-3deg) scale(1.05); }
@keyframes pinFloat { 0%,100% { transform: translateY(0) rotateZ(0deg); } 50% { transform: translateY(-5px) rotateZ(1deg); } }
/* Default = dark text (for light-background pages like Track / Reset) */
.logo .brand { font-weight: 800; letter-spacing: .3px; font-size: 24px; color: var(--text); transition: color .4s; }
.logo .brand b { color: var(--maroon); font-weight: 800; font-style: normal; }
.logo .brand span { color: var(--maroon); font-weight: 700; }
/* White over the dark hero nav; back to dark once scrolled onto white */
header.nav .logo .brand { color: #fff; }
header.nav .logo .brand b, header.nav .logo .brand span { color: var(--rose); }
header.nav.scrolled .logo .brand { color: var(--text); }
header.nav.scrolled .logo .brand b, header.nav.scrolled .logo .brand span { color: var(--maroon); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500; transition: all .25s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2px;
  background: var(--gold-grad); border-radius: 2px; transition: all .3s cubic-bezier(.4, 0, .2, 1); transform: translateX(-50%); }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 60%; }
header.nav.scrolled .nav-links a { color: var(--text); }
header.nav.scrolled .nav-links a:hover { color: var(--maroon); }
.burger { display: none; font-size: 26px; color: #fff; background: none; border: none; cursor: pointer; }
header.nav.scrolled .burger { color: var(--maroon); }

/* ---------- Hero (cinematic, centered, dark video) ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: visible; z-index: 5; padding: 150px 0 80px; text-align: center;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover;
  background: #0b0f0d; filter: brightness(0.95);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1100px 640px at 50% 44%, rgba(6,9,8,.52), rgba(6,9,8,.14) 55%, transparent 78%),
    linear-gradient(180deg, rgba(6,9,8,.42) 0%, rgba(6,9,8,0) 26%, rgba(6,9,8,0) 68%, rgba(255,255,255,1) 100%);
}
.hero-content { position: relative; z-index: 2; width: min(1180px, 94%); }

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 800;
  font-size: clamp(50px, 8vw, 112px); line-height: 1.0; letter-spacing: -2px;
  color: #ffffff; text-shadow: 0 6px 50px rgba(0,0,0,.5);
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) both;
}
.hero-headline span {
  display: inline;
  background: linear-gradient(135deg, #d7ecdf, #a9cbb4, #a9cbb4);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) both, gradientShift 7s ease infinite;
}
@keyframes gradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.hero-sub {
  color: rgba(255, 240, 244, 0.92); font-size: clamp(16px, 2.2vw, 22px); margin: 28px auto 0;
  max-width: 620px; font-weight: 400; letter-spacing: 0.3px; line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) .15s both;
}

/* Segmented toggle */
.booking-bar-wrap { margin-top: 50px; animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) .28s both; position: relative; }
.booking-bar-wrap::before {
  content: ''; display: block; width: 80px; height: 3px; margin: 0 auto 30px;
  background: linear-gradient(90deg, transparent, #cfe6d6, #a9cbb4, transparent);
  border-radius: 3px;
}
.toggle-pill {
  position: relative; display: inline-flex; background: rgba(255,255,255,.14); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 40px; padding: 5px; margin-bottom: 24px;
  box-shadow: 0 8px 26px rgba(0,0,0,.3);
}
.toggle-pill .tg {
  position: relative; z-index: 2; border: none; background: transparent; color: #fff;
  font-family: inherit; font-size: 15px; font-weight: 600; padding: 11px 26px; border-radius: 40px;
  cursor: pointer; transition: color .3s; white-space: nowrap; opacity: .85;
}
.toggle-pill .tg.active { color: #fff; opacity: 1; }
.tg-slider {
  position: absolute; z-index: 1; top: 5px; left: 5px; height: calc(100% - 10px); width: 100px;
  background: var(--gold-grad); border-radius: 40px;
  transition: left .35s cubic-bezier(.4,1.2,.5,1), width .35s cubic-bezier(.4,1.2,.5,1);
  box-shadow: 0 8px 24px rgba(78, 122, 95, .5);
}

/* Horizontal booking bar — white card floating on the dark hero */
.booking-bar {
  display: flex; align-items: stretch; gap: 4px;
  background: #ffffff; border: 1px solid var(--line); border-radius: 18px; padding: 12px 12px 12px 8px;
  box-shadow: 0 30px 70px rgba(15, 30, 20, 0.45); text-align: left;
}
.bb-field { position: relative; flex: 1 1 0; padding: 10px 18px; min-width: 0; border-radius: 12px;
  transition: all .25s cubic-bezier(.4, 0, .2, 1); }
.bb-field:hover { background: var(--black-2); }
.bb-field:focus-within { background: var(--gold-soft); }
.bb-field.bb-sm { flex: 0 0 150px; }
.bb-field label { display: block; font-size: 11px; color: var(--maroon); font-weight: 700; margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: 0.8px; }
.bb-field input, .bb-field select {
  width: 100%; background: transparent; border: none; padding: 4px 0; color: var(--text); font-size: 15px; border-radius: 0;
}
.bb-field input::placeholder { color: #b0a2a6; }
.bb-field input:focus, .bb-field select:focus { outline: none; box-shadow: none; }
.bb-field select option { background: #fff; color: var(--text); }
.bb-sep { width: 1px; background: var(--line); margin: 8px 0; flex: 0 0 1px; }
.bb-go { flex: 0 0 auto; align-self: center; margin-left: 8px; padding: 16px 32px; font-size: 15px; }
.hero-trust { display: inline-flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin-top: 28px; color: rgba(255,240,244,0.9); font-size: 14px; animation: fadeUp 1s ease .45s both;
  padding: 14px 24px; background: rgba(255,255,255,.10); border-radius: 40px;
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); }
.hero-trust i { width: 5px; height: 5px; border-radius: 50%; background: var(--rose); display: inline-block; }
.hero-trust span:first-child { color: #d7ecdf; font-weight: 700; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* Ambient orbs (maroon) */
.hero-orbs { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.orb-1 { width: 500px; height: 500px; background: rgba(111, 154, 124, 0.28); top: -10%; right: -5%; animation: orbFloat1 13s ease-in-out infinite; }
.orb-2 { width: 350px; height: 350px; background: rgba(78, 122, 95, 0.22); bottom: 8%; left: -5%; animation: orbFloat2 16s ease-in-out infinite; }
.orb-3 { width: 220px; height: 220px; background: rgba(168, 200, 178, 0.2); top: 40%; left: 50%; animation: orbFloat3 11s ease-in-out infinite; }
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-30px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-20px,20px) scale(1.1)} }

/* Stack booking bars above trust strip */
.booking-bar { position: relative; z-index: 30; }
.return-bar { position: relative; z-index: 20; }
.hero-trust { position: relative; z-index: 1; }
.booking-bar-wrap:has(.ac-list.open) .hero-trust { visibility: hidden; }

/* Return journey bar (two-way) */
.return-bar {
  display: flex; align-items: stretch; gap: 4px; margin-top: 12px;
  background: #ffffff; border: 1px dashed var(--maroon-2); border-radius: 18px; padding: 12px 12px 12px 8px;
  box-shadow: 0 24px 55px rgba(15,30,20,.35); text-align: left; animation: fadeUp .4s ease both;
}
.return-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--maroon); font-size: 12px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 0 10px; align-self: center; }

.bb-field .ac-list { min-width: 340px; top: calc(100% + 20px); }

.hidden { display: none !important; }

/* ===== Scroll progress bar ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300;
  background: linear-gradient(90deg, #6f9a7c, #4e7a5f, #3a5e49);
  box-shadow: 0 0 12px rgba(78,122,95,.6); transition: width .1s linear; }

/* ===== Kinetic headline ===== */
.hero-headline { animation: none !important; opacity: 1 !important; }
.hero-headline .kw { display: inline-block; opacity: 0; transform: translateY(48px) scale(.94);
  filter: blur(14px); animation: kwIn 1s cubic-bezier(.2,.85,.25,1) both; }
@keyframes kwIn { to { opacity: 1; transform: none; filter: blur(0); } }

/* ===== Trust marquee ===== */
.marquee { overflow: hidden; background: linear-gradient(90deg, #183524, #23472f, #183524); color: #fff;
  padding: 18px 0; position: relative; z-index: 6; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.marquee-track { display: inline-flex; align-items: center; gap: 36px; animation: marquee 34s linear infinite; }
.marquee span { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 600; letter-spacing: .4px; opacity: .92; }
.marquee i { color: var(--rose); font-style: normal; font-size: 13px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Animated stats band ===== */
.stats-band { position: relative; overflow: hidden; padding: 92px 0; background: var(--black-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Playfair Display', serif; font-size: clamp(40px, 5.2vw, 64px); font-weight: 800; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-item .lbl { color: var(--muted); margin-top: 12px; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 600; }
.aurora { position: absolute; inset: -20%; z-index: 1; pointer-events: none; opacity: .7;
  background:
    radial-gradient(500px 320px at 18% 30%, rgba(111,154,124,.28), transparent 60%),
    radial-gradient(520px 320px at 82% 72%, rgba(78,122,95,.22), transparent 60%),
    radial-gradient(360px 260px at 55% 20%, rgba(169,203,180,.25), transparent 60%);
  animation: auroraShift 16s ease-in-out infinite alternate; }
@keyframes auroraShift { from { transform: translate(0,0) scale(1); } to { transform: translate(-26px, 24px) scale(1.12); } }

/* ===== Testimonials ===== */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.tst-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
  box-shadow: 0 8px 24px rgba(40,70,52,.05); transition: all .4s cubic-bezier(.2,.8,.2,1); position: relative; overflow: hidden; }
.tst-card::before { content: '\201C'; position: absolute; top: 6px; right: 24px; font-family: Georgia, serif;
  font-size: 100px; line-height: 1; color: var(--gold-soft); }
.tst-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(78,122,95,.35); }
.tst-card .stars { color: #e0a92b; letter-spacing: 3px; margin-bottom: 14px; font-size: 15px; }
.tst-card p { color: var(--text); font-size: 15.5px; line-height: 1.75; font-style: italic; position: relative; z-index: 2; }
.tst-by { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.tst-by .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold-grad); color: #fff; font-weight: 700; font-size: 15px; flex: 0 0 auto; }
.tst-by b { display: block; font-size: 15px; color: var(--text); }
.tst-by small { color: var(--muted); font-size: 13px; }
@media (max-width: 820px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 16px; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* (floating/tilt effects removed) */
.steps .step:nth-child(4) .num { animation-delay: 2.4s; }
@media (prefers-reduced-motion: reduce) {
  .serv-card .ic, .step .num, .tilt-glow { animation: none !important; }
  .fleet-card.tilt-glow, .serv-card.tilt-glow { transition: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media, .logo .mark, .orb { animation: none; }
}

/* ---------- Booking widget (legacy card) ---------- */
.book-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px; box-shadow: var(--shadow); }
.book-card h3 { font-size: 22px; margin-bottom: 4px; }
.book-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.field { margin-bottom: 16px; position: relative; }
.field label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 7px; }
.field .inwrap { position: relative; }
.field .inwrap .pin { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--maroon); font-size: 15px; }
input, select, textarea {
  width: 100%; padding: 13px 14px; background: #fff; border: 1px solid var(--line);
  color: var(--text); border-radius: 12px; font-size: 15px; font-family: inherit;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}
.field .inwrap input { padding-left: 38px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--maroon);
  box-shadow: 0 0 0 3px var(--gold-soft); }
input::placeholder, textarea::placeholder { color: var(--muted-2); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* autocomplete dropdown (light) */
.ac-list {
  position: absolute; z-index: 500; left: 0; right: 0; top: calc(100% + 6px);
  background: #ffffff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,30,20,.28); max-height: 280px; overflow-y: auto; display: none;
}
.ac-list.open { display: block; animation: fadeUp .2s ease; }
.ac-item { padding: 13px 16px; cursor: pointer; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--text); display: flex; gap: 10px; align-items: flex-start; line-height: 1.35; transition: all .2s; }
.ac-item:last-child { border-bottom: none; }
.ac-item:hover, .ac-item.active { background: var(--gold-soft); }
.ac-item .ai { color: var(--maroon); margin-top: 1px; display: inline-flex; flex: 0 0 auto; }
.ac-item .ai svg { display: block; }
.ac-item small { color: var(--muted); display: block; margin-top: 2px; }
.bb-field:focus-within, .field:focus-within, .field-a:focus-within { z-index: 400; }

/* ---------- Sections ---------- */
.section-head { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 700; letter-spacing: -0.5px; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 17px; line-height: 1.7; }
.pad { padding: 110px 0; }
.pad-sm { padding: 80px 0; }

/* ---------- Fleet ---------- */
/* Right-to-left floating marquee */
.fleet-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.fleet-track {
  display: flex; gap: 28px; width: max-content;
  animation: fleetScroll 32s linear infinite;
  padding: 16px 0;
}
.fleet-marquee:hover .fleet-track { animation-play-state: paused; }
@keyframes fleetScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.fleet-card {
  flex: 0 0 330px; width: 330px;
  position: relative;
  border-radius: 28px; overflow: hidden;
  min-height: 540px;
  display: flex; flex-direction: column;
  padding: 24px;
  color: #ffffff;
  cursor: pointer;
  transition: all .4s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 20px 50px rgba(20, 50, 40, 0.3);
}
/* Bright gradient variants (emerald, teal-green, gold) */
.fleet-card.grad-0 { background: linear-gradient(160deg, #17b47e 0%, #1e8a5f 50%, #0d5a3e 100%); }
.fleet-card.grad-1 { background: linear-gradient(160deg, #2ec48a 0%, #1e9e6c 50%, #106b48 100%); }
.fleet-card.grad-2 { background: linear-gradient(160deg, #e6bd7a 0%, #d0a259 50%, #a87d3a 100%); }

.fleet-card:hover { transform: translateY(-10px) scale(1.03);
  box-shadow: 0 34px 75px rgba(20, 50, 40, 0.45); }

.fc-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.fc-top .cat {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  color: #fff; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 30px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
}
.fc-top .fc-menu { color: rgba(255,255,255,0.7); font-size: 18px; }

.fc-img {
  flex: 1; margin: 16px -10px; background-position: center; background-size: cover;
  background-repeat: no-repeat; min-height: 260px; position: relative; z-index: 1;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: transform .5s ease;
}
.fleet-card:hover .fc-img { transform: scale(1.05); }

.fc-info { position: relative; z-index: 2; text-align: center; }
.fc-specs { display: flex; justify-content: center; gap: 18px; font-size: 13px;
  color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.fc-info h3 { font-size: 21px; color: #fff; text-transform: uppercase; letter-spacing: 1px;
  font-family: 'Playfair Display', serif; margin-bottom: 8px; }
.fc-info .desc { color: rgba(255,255,255,0.75); font-size: 13px; line-height: 1.5; margin-bottom: 16px;
  min-height: 34px; }
.fc-foot { display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 16px; }
.fc-book { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: #fff; }
.fc-plus { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.15);
  display: grid; place-items: center; font-size: 20px; transition: all .3s;
  border: 1px solid rgba(255,255,255,0.2); }
.fleet-card:hover .fc-plus { background: var(--gold); color: #fff; transform: rotate(90deg); }

@media (prefers-reduced-motion: reduce) {
  .fleet-track { animation: none; flex-wrap: wrap; }
}

/* ---------- Services ---------- */
.serv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px; }
.serv-card { background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1); position: relative; overflow: hidden;
  opacity: 0; transform: translateX(-30px);
  animation: slideInLeft 0.6s ease forwards; animation-play-state: paused; }
.serv-card.in { animation-play-state: running; }
.serv-card:nth-child(1) { animation-delay: 0s; }
.serv-card:nth-child(2) { animation-delay: 0.12s; }
.serv-card:nth-child(3) { animation-delay: 0.24s; }
.serv-card:nth-child(4) { animation-delay: 0.36s; }
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}
.serv-card:hover { border-color: rgba(13, 155, 106, .3); transform: translateY(-6px); box-shadow: var(--shadow); }
.serv-card .ic { width: 64px; height: 64px; border-radius: 16px; background: var(--gold-soft);
  display: grid; place-items: center; font-size: 28px; margin-bottom: 22px;
  border: 1px solid var(--line); transition: all .3s; }
.serv-card:hover .ic { transform: scale(1.08) rotate(-3deg); background: rgba(78,122,95,.12); }
.serv-card h3 { font-size: 20px; margin-bottom: 10px; }
.serv-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.step { text-align: center; padding: 24px; position: relative; }
.step::after { content: ''; position: absolute; top: 50px; right: -14px; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--maroon), transparent); opacity: 0.35; }
.step:last-child::after { display: none; }
.step .num { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #fff;
  background: var(--gold-grad); transition: all .3s; box-shadow: 0 10px 26px rgba(78, 122, 95, .28); }
.step:hover .num { transform: scale(1.1) translateY(-2px); box-shadow: 0 16px 34px rgba(78, 122, 95, .4); }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #1e5a45, #124234 55%, #083327); padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-band::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px 250px at 70% 30%, rgba(201, 165, 106, .12), transparent 70%); pointer-events: none; }
.cta-band h2 { font-size: clamp(30px, 4vw, 44px); color: #ffffff; position: relative; }
.cta-band p { color: rgba(245, 247, 246, 0.8); margin: 16px 0 30px; font-size: 17px; position: relative; }
.cta-band .btn-gold { box-shadow: 0 12px 30px rgba(201, 165, 106, .3); }

/* ---------- Footer ---------- */
footer { background: #083327; color: #cdddd4; padding: 70px 0 28px; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--tan), #d8b884, var(--tan), transparent); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
footer .logo .brand { color: #fff; }
footer .logo .brand b, footer .logo .brand span { color: var(--rose); }
footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--rose); margin-bottom: 20px; }
footer ul { list-style: none; }
footer li { margin-bottom: 11px; }
footer a, footer p.f { color: #c5dece; font-size: 14px; transition: color .25s; }
footer a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; text-align: center; color: #a0bfa9; font-size: 13px; }
.admin-access { color: #a0bfa9; font-size: 12px; margin-left: 8px; opacity: .6; transition: all .25s; }
.admin-access:hover { color: var(--rose); opacity: 1; }
.foot-socials { display: flex; gap: 10px; margin-top: 20px; }
.foot-socials a { width: 40px; height: 40px; border-radius: 12px; display: inline-grid; place-items: center;
  color: #b3c9ba; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04);
  transition: all .3s cubic-bezier(.4, 0, .2, 1); }
.foot-socials a:hover { color: #fff; border-color: var(--rose); background: var(--maroon); transform: translateY(-3px); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(20, 40, 28, .55); backdrop-filter: blur(8px);
  z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #ffffff; border: 1px solid var(--line);
  border-radius: 22px; width: min(720px, 100%); max-height: 92vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(15,30,20,.4); animation: pop .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes pop { from { transform: translateY(24px) scale(0.96); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.modal-head { padding: 22px 28px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between;
  align-items: center; position: sticky; top: 0; background: #fff; z-index: 2; }
.modal-head h3 { font-size: 22px; }
.modal-head .x { background: none; border: none; color: var(--muted); font-size: 28px; cursor: pointer; line-height: 1;
  transition: all .25s; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; }
.modal-head .x:hover { color: var(--maroon); background: var(--gold-soft); }
.modal-body { padding: 28px; }

/* progress */
.progress { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.progress .dot { flex: 1; height: 4px; border-radius: 4px; background: var(--line); transition: all .4s cubic-bezier(.4, 0, .2, 1); }
.progress .dot.on { background: var(--gold-grad); }

/* quote list */
.quote-item {
  display: flex; gap: 18px; align-items: center; padding: 18px; border: 1px solid var(--line);
  border-radius: 16px; margin-bottom: 14px; cursor: pointer;
  transition: all .3s cubic-bezier(.4, 0, .2, 1); background: #fff;
}
.quote-item:hover { border-color: rgba(78, 122, 95, .4); background: var(--gold-soft); transform: translateX(4px); }
.quote-item.selected { border-color: var(--maroon); box-shadow: 0 0 0 3px var(--gold-soft); }
.quote-item img { width: 115px; height: 78px; object-fit: cover; border-radius: 12px; background: #e7f0ea; }
.quote-item .qinfo { flex: 1; }
.quote-item .qinfo h4 { font-size: 17px; }
.quote-item .qinfo .qmeta { color: var(--muted); font-size: 13px; }
.quote-item .qprice { text-align: right; }
.quote-item .qprice .p { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--maroon); font-weight: 700; }
.quote-item .qprice small { color: var(--muted); }

.route-summary { background: var(--black-2); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 20px; font-size: 14px; color: var(--muted); }
.route-summary b { color: var(--text); }

.summary-box { background: var(--black-2); border: 1px solid var(--line); border-radius: 12px; padding: 18px; margin-bottom: 20px; }
.summary-box .row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; }
.summary-box .row .k { color: var(--muted); }
.summary-box .total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; font-size: 20px; }
.summary-box .total .p { color: var(--maroon); font-family: 'Playfair Display', serif; font-weight: 700; }

.bank-box { background: var(--gold-soft); border: 1px solid rgba(78,122,95,.25); border-radius: 12px; padding: 18px; font-size: 14px; margin-bottom: 18px; }
.bank-box .row { display: flex; justify-content: space-between; padding: 5px 0; }
.bank-box .row .k { color: var(--muted); }

/* Visa card payment box */
.pay-card-box { background: var(--black-2); border: 1px solid var(--line); border-radius: 12px; padding: 18px; margin-bottom: 16px; }
.pay-brands { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.visa-badge { background: #1a1f71; color: #fff; font-weight: 800; font-style: italic; letter-spacing: 1px; padding: 5px 13px; border-radius: 6px; font-size: 16px; font-family: Arial, Helvetica, sans-serif; }
.pay-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; }
.stripe-input { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px; transition: .2s; }
.stripe-input.StripeElement--focus { border-color: var(--maroon); box-shadow: 0 0 0 3px var(--gold-soft); }
.stripe-input.StripeElement--invalid { border-color: #c0392b; }
.card-error { color: #c0392b; font-size: 13px; margin-top: 8px; min-height: 16px; }

.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #183524, #0d1c13); border: 1px solid var(--maroon-2); color: #fff;
  padding: 16px 24px; border-radius: 14px; z-index: 500; box-shadow: 0 16px 50px rgba(15,30,20,.4); display: none; font-weight: 500; }
.toast.show { display: block; animation: pop .35s cubic-bezier(.2,.7,.2,1); }
.spinner { width: 22px; height: 22px; border: 3px solid var(--line); border-top-color: var(--maroon); border-radius: 50%; animation: spin 1s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.center-load { text-align: center; padding: 40px; color: var(--muted); }

.badge-secure { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; margin-top: 14px; }
.badge-secure .ico { color: var(--maroon); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .booking-bar, .return-bar { flex-direction: column; align-items: stretch; gap: 2px; padding: 8px; }
  .bb-field { flex: 1 1 auto; padding: 12px 14px; }
  .bb-field.bb-sm { flex: 1 1 auto; }
  .bb-field:not(:last-child) { border-bottom: 1px solid var(--line); }
  .bb-sep { display: none; }
  .bb-go { width: 100%; margin: 8px 0 0; }
  .bb-field .ac-list { min-width: 0; }
  .return-tag { justify-content: center; padding: 6px 0 2px; }
}
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(18px);
    padding: 24px; gap: 18px; border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(15,30,20,.15); animation: fadeUp .3s ease;
  }
  .nav-links.mobile-open a { color: var(--text); }
  .nav-links.mobile-open a::after { display: none; }
}
@media (max-width: 520px) {
  .two { grid-template-columns: 1fr; }
  .quote-item { flex-wrap: wrap; }
  .quote-item img { width: 100%; height: 150px; }
  .toggle-pill { display: flex; width: 100%; }
  .toggle-pill .tg { flex: 1; padding: 11px 10px; }
}

/* ================= Fleet floating marquee (right → left, smaller cards) ================= */
/* Stats 3-up (Journeys Completed removed) */
.stats-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .stats-3 { grid-template-columns: 1fr 1fr; } }

/* ================= Cinematic showcase (real photography, parallax) ================= */
.showcase { position: relative; min-height: 78vh; display: flex; align-items: center;
  overflow: hidden; color: #fff; }
.sc-media { position: absolute; inset: -12% 0; z-index: 0;
  background: #0b0f0d url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&w=1920&q=80') center 38%/cover no-repeat;
  transform: scale(1.06); will-change: transform;
  transition: transform .15s linear; }
.sc-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(8,12,10,.86) 0%, rgba(8,12,10,.55) 42%, rgba(8,12,10,.08) 75%),
    linear-gradient(0deg, rgba(8,12,10,.55), transparent 35%); }
.sc-sweep { position: absolute; inset: 0; z-index: 2; pointer-events: none; mix-blend-mode: screen;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,.13) 50%, transparent 58%);
  background-size: 300% 100%; animation: scSweep 9s cubic-bezier(.6,.1,.3,.9) infinite; }
@keyframes scSweep { 0% { background-position: 130% 0; } 55%, 100% { background-position: -60% 0; } }
.sc-content { position: relative; z-index: 3; max-width: 620px; margin-left: max(4%, calc((100% - 1200px) / 2)); padding: 90px 0; }
.sc-content h2 { color: #fff; font-size: clamp(40px, 6vw, 76px); line-height: 1.04; letter-spacing: -1.5px; margin: 6px 0 18px; }
.sc-content h2 span { background: linear-gradient(135deg, #d7ecdf, #a9cbb4);
  -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.sc-content p { color: rgba(235,244,238,.88); font-size: 17px; max-width: 460px; margin-bottom: 30px; line-height: 1.7; }
@media (max-width: 900px) {
  .showcase { min-height: 64vh; }
  .sc-content { margin-left: 6%; padding: 70px 0; }
  .sc-overlay { background: linear-gradient(90deg, rgba(8,12,10,.9) 0%, rgba(8,12,10,.72) 55%, rgba(8,12,10,.35) 100%),
    linear-gradient(0deg, rgba(8,12,10,.6), transparent 40%); }
}
@media (prefers-reduced-motion: reduce) { .sc-media, .sc-sweep { animation: none; } }

/* ================= Photoreal nav drive scene (real photograph) ================= */
.drive-pill { position: relative; width: 300px; height: 46px; border-radius: 40px; overflow: hidden;
  flex: 0 0 auto; margin: 0 16px; align-self: center;
  background: radial-gradient(120% 160% at 50% 30%, #101010 0%, #050505 55%, #000 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 26px rgba(0,0,0,.35), inset 0 0 24px rgba(0,0,0,.8); }
.dp-road { position: absolute; left: 6%; right: 6%; bottom: 7px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22) 20%, rgba(255,255,255,.22) 80%, transparent); }
.dp-car { position: absolute; bottom: 5px; height: 34px; width: auto; left: 0;
  /* fade the photo's edges so it melts into the stage */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  animation: dpDrive 12s infinite; will-change: transform, filter; }
@keyframes dpDrive {
  0%   { transform: translateX(315px); filter: blur(2px) brightness(1.05); animation-timing-function: cubic-bezier(.16,.84,.35,1); opacity: 1; }
  15%  { transform: translateX(82px); filter: blur(0); animation-timing-function: ease-out; }
  17%  { transform: translateX(79px) rotate(-.7deg); }
  19%  { transform: translateX(80px) rotate(0deg); }
  63%  { transform: translateX(80px); filter: blur(0); animation-timing-function: cubic-bezier(.65,.05,.85,.3); }
  78%  { transform: translateX(-230px); filter: blur(2.6px) brightness(1.04); opacity: 1; }
  78.5%,100% { transform: translateX(-230px); opacity: 0; }
}
/* headlight flash "hello" (car nose points left) */
.dp-flash { position: absolute; left: 44px; bottom: 12px; width: 46px; height: 15px; pointer-events: none;
  background: radial-gradient(ellipse at right, rgba(255,252,235,.95), rgba(255,252,235,.25) 55%, transparent 75%);
  transform: translateX(-38px); opacity: 0; filter: blur(1px);
  animation: dpFlash 12s infinite; }
@keyframes dpFlash {
  0%,23% { opacity: 0; } 25% { opacity: 1; } 27% { opacity: .08; }
  29% { opacity: 1; } 32%,100% { opacity: 0; }
}
/* speed streaks on launch */
.dp-streaks i { position: absolute; height: 1.5px; border-radius: 2px; opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: dpStreak 12s infinite; }
.dp-streaks i:nth-child(1) { top: 13px; width: 66px; animation-delay: 0s; }
.dp-streaks i:nth-child(2) { top: 24px; width: 92px; animation-delay: .12s; }
.dp-streaks i:nth-child(3) { top: 34px; width: 54px; animation-delay: .22s; }
@keyframes dpStreak {
  0%,63% { opacity: 0; transform: translateX(40px); }
  67% { opacity: .9; }
  74% { opacity: 0; transform: translateX(330px); }
  100% { opacity: 0; }
}
@media (max-width: 1280px) { .drive-pill { display: none; } }
@media (prefers-reduced-motion: reduce) { .drive-pill { display: none; } }

/* Keep nav items on one line beside the drive scene */
.logo .brand, .nav-links a { white-space: nowrap; }
@media (max-width: 1500px) { .nav-links { gap: 20px; } }
