/* =========================================================
   CityBird - Global Styles
   ========================================================= */
/* Screen-reader-only (accessible + SEO headings without visual change) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
:root {
  --primary: #e96b56;
  --primary-dark: #d3503a;
  --primary-soft: #fde6e1;
  --accent: #1f2937;
  --accent-2: #2d3a4d;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --success: #16a34a;
  --danger: #dc2626;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 8px 24px rgba(31,41,55,.10);
  --radius: 12px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Anchor lands behind the sticky header so the section's own padding
     (70px) becomes the visible gap above the heading. Tweak this number to
     change the space between header and section__head. */
  scroll-padding-top: 30px;
}
body {
  font-family: 'Fira Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { color: var(--accent); font-weight: 700; margin: 0 0 12px; line-height: 1.25; }
h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: 20px; }
p { margin: 0 0 12px; color: var(--text); }

.section { padding: 70px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section__head .eyebrow { color: var(--primary-dark); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }
.section__head h2 { margin-top: 6px; }
.section__head p { color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-weight: 600; padding: 12px 22px; border-radius: 999px;
  border: 0; cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--dark { background: var(--accent); color: #fff; }
.btn--dark:hover { background: var(--accent-2); color: #fff; }
.btn--block { width: 100%; }
.btn--book {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 10px 24px 10px 14px;
  box-shadow: 0 10px 22px -8px rgba(233,107,86,.55);
}
.btn--book:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  filter: brightness(1.08);
  color: #fff;
  box-shadow: 0 14px 28px -8px rgba(233,107,86,.65);
}
.btn--book .btn__badge {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn--book .btn__badge svg { width: 14px; height: 14px; display: block; }

/* ========== Top bar ========== */
.topbar {
  position: relative;
  background:
    radial-gradient(60% 140% at 12% 50%, rgba(233,107,86,.20) 0%, transparent 60%),
    linear-gradient(90deg, #0b1220 0%, #1f2937 100%);
  color: #fff;
  font-size: 14px;
}
.topbar::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: rgba(255,255,255,.10);
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--primary); }
.topbar__contact { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar__contact span { display: inline-flex; align-items: center; gap: 6px; }
.topbar__contact svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.topbar__social a { margin-left: 12px; }

/* ========== Header / Nav ========== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  box-shadow: 0 4px 16px rgba(31, 41, 55, .08), 0 1px 3px rgba(31, 41, 55, .06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 22px; color: var(--accent);
}
.brand__mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.brand-icons { display: none; }
.nav__links {
  display: flex; gap: 26px; list-style: none; padding: 0; margin: 0;
}
.nav__links a {
  color: var(--text); font-weight: 500; padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--accent); border-bottom-color: var(--primary);
}
.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--accent); margin: 5px auto;
  transition: transform .25s var(--ease-soft, ease), opacity .2s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  padding: 70px 0 90px;
  background:
    radial-gradient(80% 60% at 20% 30%, #2a3950 0%, transparent 60%),
    radial-gradient(70% 50% at 90% 80%, #3d2a2a 0%, transparent 55%),
    linear-gradient(135deg, #0f172a 0%, #1f2937 55%, #3a2225 100%);
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch;
  position: relative;
  z-index: 2;
}

/* ----- Animated background layer ----- */
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
/* dotted texture overlay */
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .55;
}
/* subtle vignette so cards have contrast */
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 40%, transparent 50%, rgba(0,0,0,.35) 100%);
}
/* film-grain texture for a less flat, more premium gradient */
.hero__grain {
  position: absolute; inset: 0;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}
/* faint distant skyline sitting just above the road */
.hero__skyline {
  position: absolute; left: 0; right: 0; bottom: 118px;
  width: 100%; height: 110px;
  opacity: .6;
  pointer-events: none;
}

/* drifting blurred blobs */
.hero__blob {
  position: absolute;
  width: 540px; height: 540px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  will-change: transform;
}
.hero__blob--1 {
  background: rgba(233, 107, 86, .55);
  top: -180px; left: -160px;
  animation: blobDrift 22s ease-in-out infinite;
}
.hero__blob--2 {
  background: rgba(255, 180, 0, .35);
  bottom: -200px; right: -140px;
  width: 620px; height: 620px;
  animation: blobDrift 26s ease-in-out -8s infinite;
}
.hero__blob--3 {
  background: rgba(124, 58, 237, .30);
  top: 30%; left: 55%;
  width: 460px; height: 460px;
  animation: blobDrift 24s ease-in-out -14s infinite;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0,0)        scale(1); }
  33%      { transform: translate(70px,-50px) scale(1.08); }
  66%      { transform: translate(-50px,40px) scale(0.94); }
}

/* stylised road at the bottom */
.hero__road {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 220px;
  opacity: .85;
}
.hero__road-surface { fill: rgba(0,0,0,.30); }
.hero__road-edge {
  fill: none;
  stroke: rgba(255,255,255,.18);
  stroke-width: 1.5;
}
.hero__road-lane {
  fill: none;
  stroke: rgba(255,255,255,.55);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 22 22;
  animation: laneMove 1.6s linear infinite;
}
@keyframes laneMove {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -44; }
}

/* pulsing location pins (map "pings") */
.hero__pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow:
    0 0 0 4px rgba(233,107,86,.25),
    0 0 0 0 rgba(233,107,86,.65);
  animation: pinPulse 2.4s ease-out infinite;
}
.hero__pin--small {
  width: 8px; height: 8px;
  background: #ffb400;
  box-shadow:
    0 0 0 3px rgba(255,180,0,.25),
    0 0 0 0 rgba(255,180,0,.6);
  animation-name: pinPulseAmber;
}
@keyframes pinPulse {
  0%   { box-shadow: 0 0 0 4px rgba(233,107,86,.25), 0 0 0 0 rgba(233,107,86,.65); }
  70%  { box-shadow: 0 0 0 4px rgba(233,107,86,.10), 0 0 0 36px rgba(233,107,86,0); }
  100% { box-shadow: 0 0 0 4px rgba(233,107,86,.25), 0 0 0 0 rgba(233,107,86,0); }
}
@keyframes pinPulseAmber {
  0%   { box-shadow: 0 0 0 3px rgba(255,180,0,.25), 0 0 0 0 rgba(255,180,0,.55); }
  70%  { box-shadow: 0 0 0 3px rgba(255,180,0,.08), 0 0 0 30px rgba(255,180,0,0); }
  100% { box-shadow: 0 0 0 3px rgba(255,180,0,.25), 0 0 0 0 rgba(255,180,0,0); }
}

/* horizontal light streaks - cars passing */
.hero__streak {
  position: absolute;
  width: 220px; height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  filter: blur(1px);
  opacity: .8;
  will-change: transform;
}
.hero__streak--1 { top: 42%; animation: streakRun 7.5s linear infinite; }
.hero__streak--2 { top: 68%; animation: streakRun 9.5s linear infinite 3s; height: 1.5px; opacity: .6; }
.hero__streak--3 { top: 80%; animation: streakRun 6.2s linear infinite 5s; opacity: .5; }
@keyframes streakRun {
  from { transform: translate3d(-260px, 0, 0); }
  to   { transform: translate3d(110vw,   0, 0); }
}

/* respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero__blob, .hero__road-lane, .hero__pin, .hero__streak {
    animation: none !important;
  }
}

/* ========== Booking Form Card ========== */
.booking-card {
  background: #fff; color: var(--text);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.booking-card > form {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.booking-card h3 {
  margin: 0 0 16px;
  display: flex; align-items: center; gap: 8px;
}
.trip-toggle {
  display: flex; background: var(--bg-alt); border-radius: 999px; padding: 4px; margin-bottom: 16px;
}
.trip-toggle label {
  flex: 1; text-align: center; padding: 10px 12px; border-radius: 999px; cursor: pointer;
  font-weight: 600; color: var(--muted); transition: all .2s;
}
.trip-toggle input { display: none; }
.trip-toggle input:checked + label { background: var(--accent); color: #fff; }

/* Vehicle picker - radio cards with images */
.vehicle-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.vehicle-picker input { display: none; }
.vehicle-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 12px 6px 10px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s, transform .12s;
}
.vehicle-tile:hover {
  border-color: var(--primary);
  background: #fff;
}
.vehicle-tile img {
  width: 56px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.vehicle-tile__name {
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  line-height: 1.1;
}
.vehicle-tile__sub {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.2;
}
.vehicle-picker input:checked + .vehicle-tile {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-1px);
}
.vehicle-picker input:checked + .vehicle-tile .vehicle-tile__name { color: var(--primary-dark); }
@media (max-width: 720px) {
  .vehicle-picker { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .vehicle-picker { grid-template-columns: repeat(2, 1fr); }
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.form-grid--single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--border);
  border-radius: 10px; font: inherit; background: #fff; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(233,107,86,.22);
}
/* ========== Autocomplete ========== */
.autocomplete { position: relative; }
.autocomplete__list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  max-height: 240px; overflow-y: auto;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; box-shadow: var(--shadow);
  list-style: none; padding: 4px; margin: 0;
  z-index: 30;
  display: none;
}
.autocomplete__list.show { display: block; }
.autocomplete__list li {
  padding: 9px 12px; border-radius: 8px; cursor: pointer;
  font-size: 14px; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.autocomplete__list li:hover,
.autocomplete__list li.active {
  background: var(--bg-alt); color: var(--accent);
}
.autocomplete__list li .pin { color: var(--primary-dark); font-size: 12px; }
.autocomplete__list .empty {
  color: var(--muted); cursor: default; font-style: italic;
}
.autocomplete__list .empty:hover { background: transparent; color: var(--muted); }

.fare-output {
  background: var(--bg-alt); border-radius: 10px; padding: 12px 14px; margin-top: 12px;
  font-size: 14px; color: var(--accent); display: none;
}
.fare-output.show { display: block; }
.fare-output strong { color: var(--primary-dark); }

/* Booking form submit button row */
.booking-card__submit {
  text-align: center;
  margin-top: auto;
  padding-top: 28px;
}
.booking-card__submit .btn {
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 15px;
}

/* ========== Estimate Card (right of hero) ========== */
.estimate-card {
  background: #fff; color: var(--text);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.estimate-card h3 {
  margin: 0 0 4px;
  display: flex; align-items: center; gap: 8px;
}
.estimate-card__sub { color: var(--muted); margin: 0 0 16px; font-size: 14px; }

.estimate-route {
  background: var(--bg-alt); border-radius: 10px; padding: 12px 14px; margin-bottom: 14px;
}
.estimate-route__row {
  display: grid; grid-template-columns: 16px 60px 1fr; align-items: center; gap: 10px;
  padding: 6px 0;
}
.estimate-route__row + .estimate-route__row { border-top: 1px dashed var(--border); }
.estimate-route__label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .8px; }
.estimate-route__val { color: var(--accent); font-weight: 600; font-size: 14px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot--start { background: var(--success); box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
.dot--end { background: var(--danger); box-shadow: 0 0 0 3px rgba(220,38,38,.15); }

.estimate-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px;
}
.est-cell {
  background: var(--bg-alt); border-radius: 8px; padding: 10px 12px;
  display: flex; flex-direction: column;
}
.est-cell__label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }
.est-cell__val { color: var(--accent); font-weight: 700; margin-top: 2px; }

.estimate-breakup {
  border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border);
  padding: 12px 0; margin-bottom: 14px;
}
.estimate-breakup .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0; font-size: 15px;
}
.estimate-breakup .row strong { color: var(--accent); }
.estimate-breakup .row.total {
  margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 17px;
}
.estimate-breakup .row.total strong {
  color: var(--primary-dark); font-size: 22px;
}

.estimate-note { color: var(--muted); font-size: 12.5px; margin: 0 0 6px; line-height: 1.5; }
.estimate-status {
  font-size: 13px; color: var(--primary-dark); min-height: 18px; margin-top: 6px;
}
.estimate-status.error { color: var(--danger); }

/* "Use current location" button inside the label */
.field label {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.loc-btn {
  background: transparent; border: 1px solid var(--primary);
  color: var(--primary-dark); cursor: pointer;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  transition: background .15s, color .15s;
}
.loc-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.loc-btn:disabled { opacity: .6; cursor: wait; }

/* Hero grid - swap to 1fr 1fr so both columns are equal */
.hero__grid { grid-template-columns: 1fr 1fr; }

/* ========== Stats ========== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-align: center; box-shadow: var(--shadow-sm);
}
.stat__num { font-size: 36px; color: var(--primary-dark); font-weight: 800; margin: 0; }
.stat__label { color: var(--muted); margin: 4px 0 0; font-weight: 500; }

/* ========== Services ========== */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; transition: transform .25s, box-shadow .25s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service__icon {
  width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.service h3 { margin-bottom: 8px; }
.service p { color: var(--muted); margin: 0; font-size: 15px; }

/* ========== Vehicles ========== */
.vehicles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vehicle {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.vehicle:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vehicle__img {
  background: var(--bg-alt); aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.vehicle__body { padding: 18px 20px 22px; }
.vehicle__name { margin: 0 0 4px; }
.vehicle__seats { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.vehicle__rates { font-size: 14px; color: var(--text); }
.vehicle__rates strong { color: var(--primary-dark); }

/* ========== Taxi Services We Offer (service-cards) ========== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  box-shadow: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card__img {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: transparent;
  transition: transform .35s var(--ease-soft, ease);
  will-change: transform;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 26px;
}
.service-card__name {
  font-size: 22px;
  color: #1a1a1a;
  font-weight: 800;
  margin: 4px 0 20px;
}
.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.service-card__btn:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(31,41,55,.20);
}

/* ========== Section variants (dark) ========== */
.section--dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(80% 60% at 20% 20%, #2a3950 0%, transparent 60%),
    radial-gradient(60% 50% at 90% 90%, #3a2225 0%, transparent 55%),
    linear-gradient(135deg, #0f172a 0%, #1f2937 60%, #2a1a1c 100%);
}
.section--dark__bg {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none; overflow: hidden;
}
/* dotted texture */
.section--dark__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
/* edge vignette so cards pop */
.section--dark__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 50%, transparent 55%, rgba(0,0,0,.35) 100%);
}
.section--dark .container { position: relative; z-index: 2; }
.section--dark .section__head .eyebrow { color: var(--primary); }
.section--dark .section__head h2 { color: #fff; }
.section--dark .section__head p { color: rgba(255,255,255,.7); }

/* ========== Choose Your Ride (taxi-section) ========== */
.taxi-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 22px;
}
.taxi-card {
  --card-c1: #fb923c;
  --card-c2: #ea580c;
  --card-tint: #fff7ed;
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 22px 26px;
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.taxi-card--orange { --card-c1: #fb923c; --card-c2: #ea580c; --card-tint: #fff7ed; }
.taxi-card--blue   { --card-c1: #60a5fa; --card-c2: #2563eb; --card-tint: #eff6ff; }
.taxi-card--teal   { --card-c1: #34d399; --card-c2: #059669; --card-tint: #ecfdf5; }
.taxi-card--purple { --card-c1: #a78bfa; --card-c2: #7c3aed; --card-tint: #f5f3ff; }
.taxi-card--rose   { --card-c1: #fb7185; --card-c2: #e11d48; --card-tint: #fff1f2; }
.taxi-card--amber  { --card-c1: #fbbf24; --card-c2: #b45309; --card-tint: #fffbeb; }
.taxi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,0,0,.30);
}
.taxi-card__ribbon {
  position: absolute;
  top: 16px;
  left: -6px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--card-c1), var(--card-c2));
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 9px 20px 9px 14px;
  border-radius: 8px 4px 4px 8px;
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
  box-shadow: 0 8px 16px -4px rgba(0,0,0,.35);
}
.taxi-card__ribbon svg { width: 15px; height: 15px; flex-shrink: 0; }
.taxi-card__seats {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px 6px 9px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.14);
}
.taxi-card__seats svg { width: 13px; height: 13px; color: var(--muted); flex-shrink: 0; }
.taxi-card__img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.taxi-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}
.taxi-card:hover .taxi-card__img img { transform: scale(1.05) translateY(-2px); }
.taxi-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.taxi-card__name {
  font-size: 21px;
  color: #1a1a1a;
  font-weight: 800;
  margin: 4px 0 0;
}
.taxi-card__divider-line {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--card-c1), var(--card-c2));
  margin: 10px 0 12px;
}
.taxi-card__type {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}
.taxi-card__price-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.taxi-card__price {
  color: var(--card-c2);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin: 6px 0 20px;
  letter-spacing: -0.5px;
}
.taxi-card__price-unit {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
}
.taxi-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 4px;
  margin: 0 0 22px;
  background: rgba(255,255,255,.6);
}
.taxi-card__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4px;
}
.taxi-card__stat + .taxi-card__stat::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: var(--border);
}
.taxi-card__stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card-tint);
  color: var(--card-c2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.taxi-card__stat-icon svg { width: 18px; height: 18px; }
.taxi-card__stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.2;
}
.taxi-card__stat-val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.taxi-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--card-c1), var(--card-c2));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 22px -8px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.taxi-card__btn-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.taxi-card__btn-arrow svg { width: 15px; height: 15px; }
.taxi-card__btn:hover {
  color: #fff;
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -8px rgba(0,0,0,.42);
}

/* ========== Features / Why Us ========== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31,41,55,.08);
  border-color: var(--feat-c1, var(--primary-soft));
}
.feature__icon {
  width: 72px; height: 72px; border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--feat-c1, #f0836c), var(--feat-c2, var(--primary-dark)));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, transform .25s;
}
.feature__icon svg { width: 32px; height: 32px; display: block; }
.feature--blue   { --feat-c1: #60a5fa; --feat-c2: #2563eb; --feat-shadow: rgba(37,99,235,.42); }
.feature--rose   { --feat-c1: #fb7185; --feat-c2: #e11d48; --feat-shadow: rgba(225,29,72,.42); }
.feature--teal   { --feat-c1: #34d399; --feat-c2: #059669; --feat-shadow: rgba(5,150,105,.42); }
.feature--indigo { --feat-c1: #818cf8; --feat-c2: #4f46e5; --feat-shadow: rgba(79,70,229,.42); }
.feature--green  { --feat-c1: #4ade80; --feat-c2: #16a34a; --feat-shadow: rgba(22,163,74,.42); }
.feature--orange { --feat-c1: #fb923c; --feat-c2: #ea580c; --feat-shadow: rgba(234,88,12,.42); }
.feature--amber  { --feat-c1: #fbbf24; --feat-c2: #d97706; --feat-shadow: rgba(217,119,6,.42); }
.feature--purple { --feat-c1: #a78bfa; --feat-c2: #7c3aed; --feat-shadow: rgba(124,58,237,.42); }
.feature h3 { font-size: 18px; }
.feature p { color: var(--muted); margin: 0; }

/* ========== Tariff Table ========== */
.tariff-block { margin-top: 30px; }
.tariff-block h3 { color: var(--accent); margin-bottom: 12px; }
.tariff-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.tariff-table th, .tariff-table td {
  padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border);
}
.tariff-table thead { background: var(--accent); color: #fff; }
.tariff-table tr:last-child td { border-bottom: 0; }
.tariff-table tbody tr:hover { background: var(--bg-alt); }
.tariff-notes {
  background: var(--primary-soft); border-left: 4px solid var(--primary);
  padding: 16px 20px; border-radius: 8px; margin-top: 20px;
}
.tariff-notes h4 { margin: 0 0 8px; color: var(--accent); }
.tariff-notes ul { margin: 0; padding-left: 18px; color: var(--text); }

/* One-way fare cards grid */
.fare-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.fare-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.fare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(31, 41, 55, .10);
  border-color: var(--primary-soft);
}
.fare-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.fare-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-soft), #ffe9df);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -8px rgba(233,107,86,.5);
  transition: transform .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
}
.fare-card:hover .fare-card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 18px -8px rgba(233,107,86,.6);
}
.fare-card__icon svg { width: 22px; height: 22px; }
.fare-card__head h4 {
  margin: 0;
  font-size: 16px;
  color: var(--accent);
  flex: 1;
}
.fare-card__seats {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 3px 8px;
  border-radius: 999px;
  width: 100%;
  text-align: center;
  margin-top: 4px;
}
.fare-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fare-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--border);
}
.fare-card__list li:last-child { border-bottom: 0; }
.fare-card__list span { color: var(--muted); }
.fare-card__list strong { color: var(--accent); font-weight: 700; }

@media (max-width: 1100px) {
  .fare-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .fare-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .fare-cards { grid-template-columns: 1fr; }
}

/* Fare formula callout */
.tariff-formula {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  border-radius: 14px;
  padding: 26px 28px;
  margin-top: 30px;
  box-shadow: 0 14px 32px rgba(31, 41, 55, .15);
}
.tariff-formula__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.tariff-formula__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tariff-formula__icon svg { width: 22px; height: 22px; }
.tariff-formula__head h3 { color: #fff; margin: 0; font-size: 20px; }
.tariff-formula__equation {
  background: rgba(255, 255, 255, .06);
  border: 1px dashed rgba(255, 255, 255, .25);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  margin: 0 0 12px;
}
.tariff-formula__equation strong { color: var(--primary); font-weight: 700; }
.tariff-formula__equation em { color: #ffd9d2; font-style: normal; font-weight: 600; }
.tariff-formula__note {
  color: rgba(255, 255, 255, .75);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.6;
}

/* ========== Routes carousel ========== */
.routes-carousel {
  position: relative;
}
.routes-carousel__viewport {
  overflow: hidden;
  margin: 0 -8px;
}
.routes-carousel__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 8px 14px;
}
.routes-carousel__track::-webkit-scrollbar { display: none; }

.route-card {
  flex: 0 0 calc((100% - 44px) / 3);  /* 3 visible + 2 gaps (22px) */
  scroll-snap-align: start;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,.20);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0,0,0,.32);
}
.route-card__img {
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.route-card:hover .route-card__img { transform: scale(1.04); }

.route-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.route-card__head {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.route-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}
.route-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 13.5px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.route-card__meta > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.route-card__meta svg {
  width: 18px; height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  background: var(--primary-soft);
  padding: 4px;
  border-radius: 50%;
  box-sizing: content-box;
}
.route-card__meta-label {
  flex: 1;
  color: var(--muted);
  font-size: 13.5px;
}
.route-card__meta-val {
  color: var(--accent);
  font-weight: 700;
  font-size: 13.5px;
  text-align: right;
}
.route-card__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.route-card__price-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.route-card__price-val {
  font-size: 26px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}
.route-card__btn {
  display: inline-flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-top: auto;
}
.route-card__btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(233,107,86,.35);
}

/* Arrow buttons */
.carousel__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,.30);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background .2s, color .2s, transform .2s;
}
.carousel__arrow svg { width: 20px; height: 20px; }
.carousel__arrow:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.carousel__arrow:disabled {
  opacity: .4; cursor: not-allowed;
  background: #fff; color: var(--accent);
  transform: translateY(-50%);
}
.carousel__arrow--prev { left: -22px; }
.carousel__arrow--next { right: -22px; }

/* Dots */
.carousel__dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 22px;
}
.carousel__dot {
  width: 10px; height: 10px; padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  border: 0; cursor: pointer;
  transition: background .2s, width .2s;
}
.carousel__dot:hover { background: rgba(255,255,255,.45); }
.carousel__dot.active {
  width: 30px;
  background: var(--primary);
}

@media (max-width: 1024px) {
  .route-card { flex: 0 0 calc((100% - 22px) / 2); }   /* 2 visible */
}
@media (max-width: 720px) {
  .route-card { flex: 0 0 100%; }                       /* 1 visible */
  .carousel__arrow--prev { left: 4px; }
  .carousel__arrow--next { right: 4px; }
}

/* ========== Routes (legacy grid - kept for any other page that might use it) ========== */
.routes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.route {
  background: #fff; border: 1px solid var(--border); padding: 16px;
  border-radius: 10px; display: flex; justify-content: space-between; align-items: center;
  transition: all .2s;
}
.route:hover { border-color: var(--primary); transform: translateY(-2px); }
.route__name { font-weight: 600; color: var(--accent); }
.route__km { color: var(--muted); font-size: 14px; }

/* ========== Testimonials ========== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: #fff; border-radius: 18px; padding: 30px 26px 26px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column;
}
.testimonial__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.testimonial__quote {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(233,107,86,.55);
}
.testimonial__quote svg { width: 20px; height: 20px; }
.testimonial__tag {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.testimonial__tag--orange { background: #fff7ed; color: #ea580c; }
.testimonial__tag--teal   { background: #ecfdf5; color: #059669; }
.testimonial__tag--blue   { background: #eff6ff; color: #2563eb; }
.testimonial__stars { display: flex; gap: 3px; color: #f59e0b; margin-bottom: 14px; }
.testimonial__stars svg { width: 16px; height: 16px; }
.testimonial p { color: var(--text); font-style: normal; line-height: 1.65; margin: 0; flex: 1; }
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--border);
}
.testimonial__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px;
}
.testimonial__name { margin: 0; font-weight: 600; color: var(--accent); }
.testimonial__role { margin: 0; color: var(--muted); font-size: 13px; }

/* ========== FAQ ========== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 16px 20px; font-weight: 600; color: var(--accent);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; color: var(--primary-dark);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { padding: 0 20px 16px; margin: 0; color: var(--muted); }

/* ========== Contact ========== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 30px;
}
.contact-info { background: var(--accent); color: #fff; border-radius: var(--radius); padding: 30px; }
.contact-info h3 { color: #fff; }
.contact-info a { color: var(--primary); }
.contact-info .info-row {
  display: flex; gap: 14px; align-items: flex-start; margin: 16px 0;
}
.contact-info .info-row .icn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm);
}

/* ========== CTA Strip ========== */
.cta-strip {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(80% 60% at 20% 20%, #2a3950 0%, transparent 60%),
    radial-gradient(60% 50% at 90% 90%, #3a2225 0%, transparent 55%),
    linear-gradient(135deg, #0f172a 0%, #1f2937 60%, #2a1a1c 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-strip::before {
  /* dotted texture + soft coral glow behind the heading */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 50% 45%, rgba(233, 107, 86, .18), transparent 70%),
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: auto, 26px 26px;
  pointer-events: none;
}
.cta-strip::after {
  /* edge vignette so the buttons pop */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.cta-strip > .container { position: relative; z-index: 1; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: #d1d5db; margin-bottom: 20px; }
.cta-strip .btn,
.cta-strip .btn:hover {
  color: #fff;
}
/* force the inline phone/glyph icons to use text color (white) instead of OS emoji color */
.cta-strip .btn { font-variant-emoji: text; }
.cta-strip .btn .btn__icon { color: #fff; }

/* ========== Footer ========== */
.footer {
  position: relative;
  isolation: isolate;
  color: #d1d5db;
  padding: 50px 0 20px;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.70)),
    url("../images/footer-bg.jpg") center/cover no-repeat;
  background-color: #06182f;   /* fallback if image missing */
  border-top: 1px solid #000;
  box-shadow:
    inset 0 12px 30px rgba(0, 0, 0, .50),
    inset 0 -8px 24px rgba(0, 0, 0, .30);
}
.footer::before {
  /* very subtle coral glow at the top, fades downward */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, rgba(233, 107, 86, .10), transparent);
  pointer-events: none;
}
.footer > .container { position: relative; z-index: 1; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px;
  padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: #d1d5db; font-size: 15px; }
.footer ul a:hover { color: var(--primary); }
/* Brand-column description paragraph */
.footer__grid > div:first-child > p { color: #9ea2a6; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; font-size: 14px; flex-wrap: wrap; gap: 10px;
}
.footer__copy { color: #d1d5db; }
.footer__legal {
  display: flex; align-items: center; gap: 12px;
}
.footer__legal a {
  color: #d1d5db;
  font-size: 14px;
  transition: color .15s;
}
.footer__legal a:hover { color: var(--primary); }
.footer__sep { color: rgba(255,255,255,.25); }

/* ========== Floating Buttons ========== */
.float-actions {
  position: fixed; right: 20px; bottom: 20px; z-index: 100;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(233,107,86,.35);
  transition: transform .2s, background .2s, box-shadow .2s;
  padding: 0;
}
.float-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 14px 28px rgba(233,107,86,.45);
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn--top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s, box-shadow .2s;
}
.float-btn--top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-btn--top.show:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
}

/* ========== Page banner ========== */
.page-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; padding: 60px 0; text-align: center;
}
.page-banner h1 { color: #fff; margin: 0 0 8px; }
.page-banner .crumbs { color: #d1d5db; }
.page-banner .crumbs a { color: var(--primary); }

/* ========== Privacy / Long-form ========== */
.longform { max-width: 860px; margin: 0 auto; }
.longform h2 { margin-top: 32px; font-size: 24px; }
.longform h3 { font-size: 18px; margin-top: 22px; }
.longform p, .longform ul { color: var(--text); }
.longform ul { padding-left: 20px; }

/* ========== Leaflet marker pins ========== */
.leaflet-marker-pin { background: transparent; border: 0; }
.pin-marker {
  width: 30px; height: 30px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  margin-left: 1px; margin-top: 1px;
}
.pin-marker > * { transform: rotate(45deg); }
.pin-marker--car {
  background: var(--primary) !important;
  color: #0b2545;
  border-color: #0b2545;
  font-size: 18px;
}
.leaflet-container { font: inherit; }
.leaflet-popup-content { font-size: 14px; }
.leaflet-control-attribution { font-size: 10px; }

/* ========== Embedded route map ========== */
.route-map {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  background: var(--bg-alt);
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
  border: 1px solid var(--border);
}
.route-map--lg { height: 360px; }
.route-map--full { height: 520px; }
.route-map__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  color: var(--muted); font-size: 14px;
  background:
    repeating-linear-gradient(45deg, #f4f5f8 0 10px, #eef0f4 10px 20px);
}

/* ========== Booking review page ========== */
.booking-review {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: flex-start;
}
.booking-review__main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.booking-review__side {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.booking-id {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.booking-id__label { color: var(--muted); font-size: 13px; }
.booking-id__val {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  padding: 4px 10px; border-radius: 999px;
  color: var(--accent); font-weight: 600;
}
.booking-id__chip {
  background: #fef3c7; color: #92400e;
  padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600;
}
.booking-id__chip--ok { background: #dcfce7; color: #166534; }

.trip-summary {
  background: var(--bg-alt); border-radius: 12px; padding: 14px 16px; margin: 14px 0;
}
.trip-summary__row {
  display: flex; gap: 12px; align-items: flex-start; padding: 8px 0;
}
.trip-summary__row + .trip-summary__row { border-top: 1px dashed var(--border); }
.trip-summary__label { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); }
.trip-summary__val { color: var(--accent); font-weight: 600; }

.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  background: var(--bg-alt); border-radius: 12px; padding: 14px;
}
.detail-grid > div {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 12px;
  display: flex; flex-direction: column;
}
.detail-grid span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }
.detail-grid strong { color: var(--accent); margin-top: 2px; }
.detail-grid--sm > div { padding: 8px 10px; }

.empty-state { text-align: center; padding: 60px 20px; }
.empty-state h2 { margin-bottom: 8px; }

/* ========== Tracking page ========== */
.track-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.track-panel {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px;
}
.track-eta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; border-radius: 12px; padding: 18px;
}
.track-eta__big {
  font-size: 32px; font-weight: 800; line-height: 1.1;
}
.track-eta__sub { color: #d1d5db; font-size: 13px; margin-top: 4px; }
.track-progress {
  background: rgba(255,255,255,.15); height: 8px;
  border-radius: 999px; margin-top: 14px; overflow: hidden;
}
.track-progress__bar {
  background: var(--primary); height: 100%; width: 0%;
  transition: width .3s linear;
}
.track-progress__meta {
  display: flex; justify-content: space-between; color: #d1d5db; font-size: 12px; margin-top: 6px;
}

.driver-card {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center;
  background: var(--bg-alt); border-radius: 12px; padding: 12px 14px;
}
.driver-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.driver-card__name { font-weight: 700; color: var(--accent); }
.driver-card__role { color: var(--muted); font-size: 13px; }
.driver-card__plate {
  display: inline-block; margin-top: 4px;
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  padding: 2px 8px; font-size: 12px; font-family: ui-monospace, monospace;
  color: var(--accent);
}

.track-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.track-actions a, .track-actions button { width: 100%; padding: 10px 12px; font-size: 14px; }
.track-actions a:nth-child(3) { grid-column: 1 / -1; }

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .vehicles { grid-template-columns: repeat(2, 1fr); }
  .taxi-section { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .routes { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .booking-review { grid-template-columns: 1fr; }
  .booking-review__side { position: static; }
  .track-grid { grid-template-columns: 1fr; }
  .route-map--full { height: 360px; }
}
@media (max-width: 720px) {
  /* Mobile-only: hide topbar entirely and the floating WhatsApp/call dock
     (including back-to-top). The two contact icons move inline next to
     the brand (.brand-icons). */
  .topbar { display: none; }
  .float-actions { display: none; }
  .brand-icons { display: inline-flex; gap: 8px; margin-left: 12px; }
  .brand-icons a {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(233,107,86,.28);
  }
  .brand-icons a:hover { background: var(--primary-dark); }
  .brand-icons a svg { width: 16px; height: 16px; }

  /* Stack CTA-strip buttons with breathing room */
  .cta-strip .btn { display: inline-flex; margin-bottom: 20px; }
  .cta-strip .btn:last-of-type { margin-bottom: 0; }
  .topbar__inner { flex-direction: column; gap: 4px; padding: 8px 0; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; gap: 0; padding: 10px 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links.open li { padding: 5px 0; }
  .nav__links a { padding: 18px 4px; border-bottom: 0; }
  .nav__links a:hover, .nav__links a.active {
    color: var(--primary); border-bottom-color: transparent;
  }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .services, .vehicles, .routes, .features { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .taxi-section { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .tariff-table { font-size: 13.5px; }
  .tariff-table th, .tariff-table td { padding: 10px 12px; }
  .tariff-block { overflow-x: auto; }
  .tariff-block table { min-width: 560px; }
  .tariff-formula { padding: 20px; }
  .tariff-formula__equation { font-size: 13.5px; }
}

/* ============================================================
   Visual polish layer (additive)
   Animations · light section backgrounds · elegant effects.
   Appended last so it overrides the base rules above without
   disturbing their structure.
   ============================================================ */
:root {
  --shadow-soft: 0 12px 40px -14px rgba(31,41,55,.22);
  --shadow-lift: 0 26px 56px -18px rgba(31,41,55,.30);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

/* ----- Scroll reveal (armed only when JS adds .reveal-ready) ----- */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .7s var(--ease-soft),
    transform .7s var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ----- Hero cards drift up on load ----- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.booking-card { animation: riseIn .8s var(--ease-soft) both; }
.estimate-card { animation: riseIn .8s var(--ease-soft) .12s both; }

/* ----- Buttons: gleam sweep on hover ----- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease-soft);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }

/* ----- Cards: smoother, springier lift ----- */
.service-card, .feature, .taxi-card, .route-card, .fare-card, .testimonial {
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft), border-color .35s var(--ease-soft);
}

/* ----- Feature icons: soft halo + gentle float on hover ----- */
.feature__icon {
  box-shadow: 0 8px 20px -8px var(--feat-shadow, rgba(233,107,86,.45));
}
.feature:hover .feature__icon {
  transform: translateY(-3px) scale(1.06) rotate(-3deg);
  box-shadow: 0 14px 26px -8px var(--feat-shadow, rgba(233,107,86,.55));
}

/* ----- Nav links: animated underline grows from center ----- */
.nav__links a { position: relative; }
.nav__links a::after {
  content: "";
  position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 2px; background: var(--primary);
  transform: translateX(-50%);
  transition: width .25s var(--ease-soft);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a:hover, .nav__links a.active { border-bottom-color: transparent; }

/* ----- Testimonials: lift like the other cards ----- */
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-soft);
}

/* ----- Section heads: gradient accent under the eyebrow ----- */
.section__head .eyebrow { display: inline-block; }

/* Honour reduced-motion across every effect added here */
@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .booking-card, .estimate-card { animation: none !important; }
  .btn::after { display: none; }
}

/* The light treatment above defeats the mobile underline rule, so
   re-pin nav links on small screens (where ::after isn't used). */
@media (max-width: 720px) {
  .nav__links a::after { display: none; }
}