/* ============================================
   Taxi Thailand — Cyberpunk Noir
   Dark + Neon Yellow + Electric Cyan
   ============================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--light-text);
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img, svg { display: inline-block; vertical-align: middle; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
hr { border: none; border-top: 1px solid rgba(255,255,255,.06); }

/* ---------- Variables ---------- */
:root {
  /* Noir darks */
  --bg: #09090b;
  --surface: #111114;
  --surface-2: #18181b;
  --surface-3: #1f1f23;
  --border: rgba(255,255,255,.08);
  --border-hover: rgba(255,255,255,.15);

  /* Light surfaces */
  --light-bg: #f8f8f6;
  --light-surface: #ffffff;
  --light-border: #e5e5e3;
  --light-text: #1a1a1a;
  --light-text-dim: #555;
  --light-text-muted: #888;

  /* Neon accents */
  --neon: #facc15;          /* bright taxi yellow */
  --neon-dim: #ca8a04;
  --neon-glow: rgba(250,204,21,.25);
  --neon-glow-strong: rgba(250,204,21,.5);
  --cyan: #22d3ee;          /* electric cyan accent */
  --cyan-dim: #0891b2;
  --cyan-glow: rgba(34,211,238,.2);
  --pink: #f472b6;          /* hot pink spark */

  /* Text */
  --text: #e4e4e7;
  --text-dim: #a1a1aa;
  --text-muted: #71717a;
  --white: #fafafa;

  /* Status */
  --danger: #ef4444;
  --success: #22c55e;
  --line-green: #06C755;

  /* Radii */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows & Glows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
  --shadow: 0 4px 12px rgba(0,0,0,.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.6);
  --glow-yellow: 0 0 15px var(--neon-glow), 0 0 50px rgba(250,204,21,.12);
  --glow-yellow-strong: 0 0 20px var(--neon-glow-strong), 0 0 80px rgba(250,204,21,.15);
  --glow-cyan: 0 0 15px var(--cyan-glow), 0 0 50px rgba(34,211,238,.1);
  --glow-soft: 0 0 30px rgba(250,204,21,.06);

  --transition: .2s ease;
  --transition-slow: .35s ease;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--light-text);
  margin-bottom: 0.5em;
}
h1 { font-size: 2.25rem; letter-spacing: -0.03em; }
h2 { font-size: 1.75rem; letter-spacing: -0.02em; }
h3 { font-size: 1.375rem; letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; }
p  { margin-bottom: 1rem; color: var(--light-text-dim); }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 600; color: var(--light-text); }
small, .small { font-size: .875rem; line-height: 1.5; }

@media (max-width: 767px) {
  h1 { font-size: 1.625rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.125rem; }
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ==================================
   GRID
   ================================== */
.row { display: flex; flex-wrap: wrap; }
.row          { margin: -0.5rem; }
.row > [class*="col"] { padding: 0.5rem; }
.row.g-0      { margin: 0; }
.row.g-0  > [class*="col"] { padding: 0; }
.row.g-2      { margin: -0.375rem; }
.row.g-2  > [class*="col"] { padding: 0.375rem; }
.row.g-3      { margin: -0.625rem; }
.row.g-3  > [class*="col"] { padding: 0.625rem; }
.row.g-4      { margin: -0.875rem; }
.row.g-4  > [class*="col"] { padding: 0.875rem; }

[class*="col"] { width: 100%; min-width: 0; }
.col-auto { width: auto; flex: 0 0 auto; }
.col-6  { width: 50%; }
.col-12 { width: 100%; }
@media (min-width: 576px) {
  .col-sm-5  { width: 41.667%; }
  .col-sm-6  { width: 50%; }
}
@media (min-width: 768px) {
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.333%; }
  .col-md-5  { width: 41.667%; }
  .col-md-6  { width: 50%; }
  .col-md-8  { width: 66.667%; }
}
@media (min-width: 992px) {
  .col-lg-3  { width: 25%; }
  .col-lg-4  { width: 33.333%; }
  .col-lg-5  { width: 41.667%; }
  .col-lg-6  { width: 50%; }
  .col-lg-7  { width: 58.333%; }
  .col-lg-8  { width: 66.667%; }
  .col-lg-10 { width: 83.333%; }
}
@media (min-width: 1200px) {
  .col-xl-3  { width: 25%; }
  .col-xl-4  { width: 33.333%; }
}

/* ---------- Flex & Display ---------- */
.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }
.d-inline-block { display: inline-block; }
.flex-wrap  { flex-wrap: wrap; }
.flex-fill  { flex: 1 1 auto; }
.align-items-center  { align-items: center; }
.align-items-end     { align-items: flex-end; }
.justify-content-center  { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

.d-none.d-md-inline { display: none; }
@media (min-width: 768px) {
  .d-none.d-md-inline { display: inline !important; }
  .d-md-flex     { display: flex !important; }
  .text-md-start { text-align: left !important; }
  .text-md-end   { text-align: right !important; }
  .mb-md-0       { margin-bottom: 0 !important; }
  .justify-content-md-start { justify-content: flex-start !important; }
}

/* ---------- Spacing ---------- */
.m-0  { margin: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.ms-auto { margin-left: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (max-width: 767px) { .py-5 { padding-top: 2.5rem; padding-bottom: 2.5rem; } }

/* ---------- Text ---------- */
.text-center { text-align: center; }
.text-start  { text-align: left; }
.text-end    { text-align: right; }
.text-white  { color: var(--white) !important; }
.text-muted  { color: var(--light-text-muted) !important; }
.text-danger { color: var(--danger) !important; }
.text-success { color: var(--success) !important; }
.text-neon   { color: var(--neon) !important; }
.text-cyan   { color: var(--cyan) !important; }
.fw-bold     { font-weight: 700; }
.fw-medium   { font-weight: 500; }
.text-decoration-none { text-decoration: none; }

/* ==================================
   BUTTONS — Neon glow
   ================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1.4;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--neon);
  color: #000;
  border-color: var(--neon);
}
.btn-gold:hover {
  background: #fde047;
  border-color: #fde047;
  box-shadow: var(--glow-yellow);
}

.btn-dark {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-hover);
}
.btn-dark:hover {
  background: var(--surface-3);
  border-color: var(--neon);
  color: var(--neon);
}

.btn-outline {
  background: transparent;
  color: var(--light-text);
  border-color: var(--light-border);
}
.btn-outline:hover {
  background: var(--light-text);
  color: var(--light-surface);
  border-color: var(--light-text);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover {
  color: var(--neon);
  border-color: var(--neon);
  box-shadow: var(--glow-yellow);
}

.btn-success {
  background: var(--line-green);
  color: #fff;
  border-color: var(--line-green);
}
.btn-success:hover {
  background: #05a648;
  box-shadow: 0 0 16px rgba(6,199,85,.3);
}

.btn-lg { font-size: 1.0625rem; padding: 0.8rem 1.75rem; border-radius: var(--radius); }
.btn-sm { font-size: .8125rem; padding: 0.4rem 0.875rem; }
.btn-xs { font-size: .75rem; padding: 0.3rem 0.625rem; border-width: 1px; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ==================================
   NAVBAR — Glass noir
   ================================== */
.navbar {
  background: rgba(9,9,11,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(250,204,21,.1);
  box-shadow: 0 1px 20px rgba(250,204,21,.04);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}
.navbar-nav { display: flex; align-items: center; gap: 0.5rem; }
@media (max-width: 400px) {
  .navbar-nav { gap: 0.25rem; }
  .navbar-nav .btn-xs { font-size: .6875rem; padding: 0.25rem 0.5rem; }
}

/* ==================================
   NAVBAR — transparent on hero
   ================================== */
.navbar-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

/* ==================================
   HERO — Video background
   ================================== */
.hero-video-section {
  position: relative;
  overflow: hidden;
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9,9,11,.55) 0%, rgba(9,9,11,.7) 50%, rgba(9,9,11,.9) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(250,204,21,.06) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 7rem 0 4.5rem;
  text-align: center;
  color: var(--white);
}
/* Neon bottom line */
.hero-video-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent 5%, var(--neon) 50%, transparent 95%);
  opacity: .3;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--neon) !important;
  letter-spacing: -0.03em;
  text-shadow: 0 0 60px var(--neon-glow-strong), 0 0 120px rgba(250,204,21,.1);
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,.9);
  line-height: 1.75;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

/* Fallback hero (non-video pages) */
.hero-section {
  background:
    radial-gradient(ellipse at 50% -10%, rgba(250,204,21,.1) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(34,211,238,.06) 0%, transparent 45%),
    linear-gradient(180deg, #0d0d14 0%, var(--bg) 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(250,204,21,.08);
  position: relative;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--neon) 50%, transparent 95%);
  opacity: .25;
}

@media (max-width: 767px) {
  .hero-video-section { height: 75vh; min-height: 420px; }
  .hero-content { padding: 5.5rem 0 3rem; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-section { padding: 3rem 0 2.5rem; }
}

/* ==================================
   CARDS — Dark glass
   ================================== */
.card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-slow), box-shadow var(--transition-slow);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.card:hover {
  border-color: var(--neon-dim);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.card-header {
  background: var(--light-text);
  color: var(--neon);
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  font-size: .9375rem;
  border-bottom: 1px solid var(--light-border);
  letter-spacing: 0.01em;
}
.card-body { padding: 1.5rem; }
.card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--light-text); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow    { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* --- Route Cards (landing) --- */
.route-card-link {
  display: flex;
  flex-direction: column;
  transition: all var(--transition-slow);
}
.route-card-link:hover {
  transform: translateY(-4px);
  border-color: var(--neon-dim);
  box-shadow: 0 8px 30px rgba(0,0,0,.1), 0 0 15px rgba(250,204,21,.08) !important;
}

/* --- Feature Cards --- */
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--light-text);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--neon);
  transition: all var(--transition-slow);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.feature-card:hover .feature-icon {
  box-shadow: 0 4px 20px rgba(0,0,0,.2), 0 0 15px rgba(250,204,21,.15);
}
.feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--white);
}

/* ==================================
   FORMS — Noir inputs
   ================================== */
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--light-text);
}
.form-control,
.form-select {
  display: block;
  width: 100%;
  font-size: .9375rem;
  font-family: inherit;
  line-height: 1.5;
  padding: 0.65rem 0.875rem;
  min-height: 44px;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius);
  background: var(--light-surface);
  color: var(--light-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--light-text-muted); }
.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 2px var(--neon-glow), 0 0 15px rgba(250,204,21,.08);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1aa' d='M6 8.825L.35 3.175l.7-.7L6 7.425l4.95-4.95.7.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
textarea.form-control { resize: vertical; min-height: 110px; }
.input-group { display: flex; }
.input-group .form-select { border-radius: var(--radius) 0 0 var(--radius); flex-shrink: 0; border-right: 0; }
.input-group .form-control { border-radius: 0 var(--radius) var(--radius) 0; }

/* ==================================
   ALERTS
   ================================== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}
.alert strong { font-weight: 700; }
.alert-success { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.alert-danger  { background: #fef2f2; color: #991b1b; border-color: #fecaca; }

/* ==================================
   TABLE
   ================================== */
.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
table thead { background: var(--surface-2); color: var(--neon); }
table th {
  font-weight: 600; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 0.75rem 1rem; text-align: left;
}
table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-dim); }
table tbody tr:hover { background: rgba(250,204,21,.03); }

/* ==================================
   SPINNER
   ================================== */
.spinner {
  display: inline-block;
  width: 32px; height: 32px;
  border: 2px solid var(--border-hover);
  border-top-color: var(--neon);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.spinner-sm { width: 16px; height: 16px; border-width: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==================================
   SECTIONS
   ================================== */
.section-dark {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(250,204,21,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(34,211,238,.04) 0%, transparent 45%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-top: 1px solid rgba(250,204,21,.08);
  color: var(--white);
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--neon) 50%, transparent 90%);
  opacity: .2;
}
.cta-section h2 { text-shadow: 0 0 50px var(--neon-glow-strong); }
.cta-section p  { color: var(--text-dim); }

/* Light sections — white/cream background, dark text */
.bg-light,
.section-light {
  background: var(--light-bg);
  color: var(--light-text);
  border-top: none;
  border-bottom: none;
}
.section-light h2,
.section-light h3,
.section-light h4,
.bg-light h2,
.bg-light h3,
.bg-light h4 {
  color: var(--light-text) !important;
  text-shadow: none;
}
.section-light .text-muted,
.bg-light .text-muted {
  color: var(--light-text-muted) !important;
}
.section-light p,
.bg-light p {
  color: var(--light-text-dim);
}
.section-light strong,
.bg-light strong {
  color: var(--light-text);
}
.section-light .card,
.bg-light .card {
  background: var(--light-surface);
  border-color: var(--light-border);
}
.section-light .card:hover,
.bg-light .card:hover {
  border-color: var(--neon-dim);
}
.section-light .card-body,
.bg-light .card-body {
  color: var(--light-text-dim);
}
.section-light .route-card-link:hover,
.bg-light .route-card-link:hover {
  border-color: var(--neon-dim);
  box-shadow: 0 8px 30px rgba(0,0,0,.1), 0 0 20px rgba(250,204,21,.08) !important;
}
.section-light .feature-icon,
.bg-light .feature-icon {
  background: var(--light-text);
  border-color: var(--light-text);
  color: var(--neon);
}
.section-light .feature-card:hover .feature-icon,
.bg-light .feature-card:hover .feature-icon {
  box-shadow: 0 0 20px rgba(250,204,21,.2);
}
.section-light .feature-title,
.bg-light .feature-title {
  color: var(--light-text);
}
/* Light section forms */
.section-light .form-control,
.section-light .form-select,
.bg-light .form-control,
.bg-light .form-select {
  background: var(--light-surface);
  border-color: var(--light-border);
  color: var(--light-text);
}
.section-light .btn-outline,
.bg-light .btn-outline {
  color: var(--light-text);
  border-color: var(--light-border);
}
.section-light .btn-outline:hover,
.bg-light .btn-outline:hover {
  background: var(--light-text);
  color: var(--light-bg);
  border-color: var(--light-text);
}
.section-light .list-disc li,
.bg-light .list-disc li {
  color: var(--light-text-dim);
}
.section-light .content-link,
.bg-light .content-link {
  color: var(--neon-dim);
}

/* Info cards in light sections */
.section-light .info-card,
.bg-light .info-card {
  background: var(--light-bg) !important;
  border-color: var(--light-border) !important;
}

/* info card backgrounds (for dark theme) */
.info-card {
  background: var(--surface-2) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
}

/* ==================================
   FOOTER — Deep noir
   ================================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(250,204,21,.06);
  color: rgba(255,255,255,.65);
  padding: 2.5rem 0;
  font-size: .9375rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 15%, rgba(250,204,21,.25) 50%, transparent 85%);
}
.site-footer a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.site-footer a:hover { color: var(--neon); }
.footer-brand { color: var(--white) !important; font-weight: 700; }

/* ==================================
   BOOKING — Route cards & car btns
   ================================== */
.route-card {
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  background: var(--light-surface);
  transition: all var(--transition);
}
.route-card:hover {
  border-color: var(--neon-dim);
  box-shadow: 0 2px 12px rgba(202,138,4,.1);
}
.route-card.selected {
  border-color: var(--neon-dim);
  background: #fffbeb;
  border-width: 2px;
}
.route-from-to { font-weight: 600; font-size: .9375rem; color: var(--light-text); }

.car-type-btn {
  border: 1.5px solid var(--light-border);
  background: var(--light-surface);
  color: var(--light-text-dim);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: .875rem;
  font-family: inherit;
  transition: all var(--transition);
}
.car-type-btn:hover { border-color: var(--neon-dim); color: var(--light-text); }
.car-type-btn.active {
  background: var(--light-text);
  border-color: var(--light-text);
  color: var(--neon);
}

/* ==================================
   MISC
   ================================== */
.cf-turnstile { margin: 0.75rem 0; }
.rounded { border-radius: var(--radius); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.content-link { color: var(--neon-dim); text-decoration: underline; text-underline-offset: 2px; }
.content-link:hover { color: var(--light-text); }

.list-disc    { list-style: disc; padding-left: 1.25rem; }
.list-disc li { margin-bottom: 0.375rem; line-height: 1.6; color: var(--light-text-dim); }
.list-decimal    { list-style: decimal; padding-left: 1.25rem; }
.list-decimal li { margin-bottom: 0.375rem; line-height: 1.6; color: var(--light-text-dim); }

@media (max-width: 767px) { .hide-mobile { display: none !important; } }
@media (min-width: 768px) { .hide-desktop { display: none !important; } }
@media (min-width: 992px) { .sticky-top { position: sticky; top: 5rem; } }

/* ==================================
   NEON DIVIDER — decorative
   ================================== */
.neon-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--neon) 50%, transparent 100%);
  opacity: .3;
  margin: 0;
}

/* ==================================
   NEON ACCENTS — global polish
   ================================== */
/* Selection color */
::selection { background: rgba(250,204,21,.2); color: var(--light-text); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }

/* Info cards */
.info-card {
  background: var(--light-bg) !important;
  border: 1px solid var(--light-border) !important;
  border-radius: var(--radius-lg) !important;
}
.info-card:hover {
  border-color: var(--neon-dim) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* Tour card */
.tour-card { background: var(--light-surface); border-color: var(--light-border); }
.tour-card-header { background: var(--light-text); }
.tour-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); border-color: var(--neon-dim); }

/* btn-gold subtle shadow */
.btn-gold { box-shadow: 0 2px 8px rgba(202,138,4,.2); }

/* Spinner */
.spinner { border-color: var(--light-border); border-top-color: var(--neon-dim); }
