/* ═══════════════════════════════════════════════════
   OneWay.Taxi — "Midnight Highway" Theme
   Dark charcoal + amber headlights + electric routes
   ═══════════════════════════════════════════════════ */

/* --- CSS Variables --- */
:root {
  --bg-deep: #07070d;
  --bg-dark: #0a0a12;
  --bg-card: #111119;
  --bg-card-hover: #16161f;
  --bg-elevated: #1a1a25;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --green-500: #22c55e;
  --red-500: #ef4444;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --glow-amber: 0 0 30px rgba(245,158,11,0.3);
  --glow-blue: 0 0 30px rgba(59,130,246,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise overlay for texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

::selection {
  background: var(--amber-500);
  color: var(--bg-deep);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: var(--text-primary);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight { color: var(--amber-400); }

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-taxi {
  position: relative;
  width: 80px;
  height: 40px;
  animation: drive 1s ease-in-out infinite alternate;
}
.loader-body {
  position: absolute;
  bottom: 10px;
  width: 80px;
  height: 24px;
  background: var(--amber-500);
  border-radius: 8px 8px 4px 4px;
}
.loader-body::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 15px;
  width: 40px;
  height: 14px;
  background: var(--amber-400);
  border-radius: 6px 6px 0 0;
}
.loader-wheel {
  position: absolute;
  bottom: 2px;
  width: 14px;
  height: 14px;
  background: var(--bg-deep);
  border: 3px solid var(--text-muted);
  border-radius: 50%;
  animation: spin 0.4s linear infinite;
}
.loader-wheel-l { left: 10px; }
.loader-wheel-r { right: 10px; }
.loader-light {
  position: absolute;
  bottom: 16px;
  right: -4px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px 4px rgba(255,255,255,0.5);
  animation: blink 0.5s infinite alternate;
}
.loader-text {
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes drive {
  0% { transform: translateX(-10px) rotate(-1deg); }
  100% { transform: translateX(10px) rotate(1deg); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes blink {
  to { opacity: 0.3; }
}

/* --- Navigation --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(7,7,13,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}
.logo-text { color: var(--text-primary); }
.logo-dot { color: var(--amber-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-400);
  transition: width var(--transition-smooth);
}
.nav-links a:hover { color: var(--amber-400); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--amber-500);
  color: var(--bg-deep);
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--amber-400);
  transform: translateY(-1px);
  box-shadow: var(--glow-amber);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* --- Hero --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

#hero-image-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
#hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroKenBurns 15s ease-in-out infinite alternate;
  filter: brightness(0.7) saturate(1.2);
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07) translateX(2%); }
}

#hero-canvas-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245,158,11,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(59,130,246,0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(7,7,13,0.3) 0%, rgba(7,7,13,0.7) 50%, rgba(7,7,13,0.95) 100%);
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber-300);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease-out;
}
.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--amber-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  margin-bottom: 20px;
}
.title-line {
  display: block;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  animation: fadeInUp 0.8s ease-out both;
}
.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-highlight {
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-300), var(--amber-500), var(--amber-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(245,158,11,0.3));
  animation-delay: 0.2s;
}
.title-small {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  color: var(--text-secondary);
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* --- Booking Card --- */
.booking-card {
  background: rgba(17,17,25,0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.booking-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 20px;
}
.booking-tab {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: var(--transition-fast);
}
.booking-tab.active {
  background: var(--amber-500);
  color: var(--bg-deep);
}
.booking-tab:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.form-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 12px;
}
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; }

.form-group {
  flex: 1;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.input-icon {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  transition: var(--transition-fast);
}
.input-icon:focus-within {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.input-icon svg {
  flex-shrink: 0;
  color: var(--text-muted);
}
.input-icon input,
.input-icon select {
  width: 100%;
  padding: 12px 10px;
  font-size: 15px;
  background: transparent;
}
.input-icon select {
  -webkit-appearance: none;
  appearance: none;
}

.swap-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 50%;
  color: var(--amber-400);
  transition: var(--transition-bounce);
  margin-bottom: 2px;
}
.swap-btn:hover {
  background: var(--amber-500);
  color: var(--bg-deep);
  transform: rotate(180deg);
}

.booking-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--bg-deep);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-fast);
  margin-top: 8px;
}
.booking-submit:hover {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  transform: translateY(-2px);
  box-shadow: var(--glow-amber);
}

/* --- Trust Badges --- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease-out 1s both;
}
.scroll-indicator span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--amber-400);
  border-radius: 3px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* --- Section Base --- */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber-400);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Stats --- */
#stats {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(245,158,11,0.03) 0%, transparent 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-card {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--amber-400);
  line-height: 1;
}
.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 8px;
}
.stat-sublabel {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Routes --- */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.route-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.route-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.route-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(245,158,11,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.route-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.route-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.route-dot span:first-child { background: var(--blue-500); }
.route-dot span:last-child { background: var(--amber-500); }
.route-dot-line {
  width: 2px;
  height: 12px;
  background: linear-gradient(var(--blue-500), var(--amber-500));
}
.route-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.route-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.route-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.route-price {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--amber-400);
  white-space: nowrap;
}

.routes-cta {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: rgba(245,158,11,0.05);
  border: 1px dashed rgba(245,158,11,0.3);
  border-radius: var(--radius-lg);
}
.routes-cta p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: var(--transition-fast);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  transform: translateY(-2px);
  box-shadow: var(--glow-amber);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--amber-500);
  color: var(--amber-400);
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: var(--transition-fast);
}
.btn-outline:hover {
  background: var(--amber-500);
  color: var(--bg-deep);
}

/* --- Districts --- */
.districts-map-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.districts-visual {
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  position: relative;
}

/* Tamil Nadu Map Graphic */
.tn-map-graphic {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 40%, rgba(245,158,11,0.07) 0%, rgba(59,130,246,0.04) 60%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.tn-map-graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(245,158,11,0.05)' stroke-width='1'/%3E%3C/svg%3E");
}
.map-pin-group {
  position: absolute;
  inset: 0;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
}
.map-pin span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--amber-300);
  white-space: nowrap;
  background: rgba(7,7,13,0.8);
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 3px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s;
}
.map-pin:hover span {
  opacity: 1;
  transform: translateY(0);
}
.map-pin::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--amber-500);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.2), 0 0 12px rgba(245,158,11,0.4);
  animation: mapPulse 2s ease-in-out infinite;
}
.map-pin.major::after {
  width: 14px;
  height: 14px;
  background: var(--amber-400);
  box-shadow: 0 0 0 6px rgba(245,158,11,0.25), 0 0 20px rgba(245,158,11,0.5);
}
.map-label-tamil {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245,158,11,0.4);
  font-weight: 600;
}
@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245,158,11,0.2), 0 0 12px rgba(245,158,11,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(245,158,11,0.1), 0 0 20px rgba(245,158,11,0.6); }
}
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.district-chip {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.district-chip:hover {
  background: var(--bg-card-hover);
  border-color: var(--amber-500);
  color: var(--amber-400);
}
.district-chip .district-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-500);
  flex-shrink: 0;
}

/* --- Sub-Districts Scroll --- */
.subdistricts-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.subdistrict-tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  cursor: pointer;
}
.subdistrict-tag:hover {
  border-color: var(--amber-500);
  color: var(--amber-400);
  background: rgba(245,158,11,0.05);
}

/* --- Airports --- */
.airports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.airport-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.airport-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--amber-500));
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.airport-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.airport-card:hover::before { opacity: 1; }
.airport-icon {
  width: 48px;
  height: 48px;
  background: rgba(59,130,246,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue-400);
}
.airport-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.airport-code {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.airport-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.airport-route-tag {
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
}

/* --- Tourist Places --- */
.tourist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.tourist-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.tourist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
  border-color: rgba(245,158,11,0.3);
}
.tourist-image {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.tourist-image-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.tourist-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.tourist-badge {
  padding: 3px 10px;
  background: rgba(245,158,11,0.9);
  color: var(--bg-deep);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tourist-info {
  padding: 16px 20px;
}
.tourist-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tourist-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.tourist-from {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tourist-from .price {
  font-weight: 700;
  color: var(--amber-400);
  font-family: var(--font-display);
  font-size: 16px;
}

/* --- Fleet / Pricing --- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.fleet-card-popular {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 1px var(--amber-500), var(--glow-amber);
}
.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--amber-500);
  color: var(--bg-deep);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.fleet-img-wrap {
  height: 200px;
  background: linear-gradient(180deg, rgba(245,158,11,0.06), rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.fleet-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.fleet-card:hover .fleet-car-img {
  transform: scale(1.06);
}
.fleet-info {
  padding: 20px 24px 24px;
}
.fleet-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.fleet-cars {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 16px;
}
.fleet-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.fleet-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}
.fleet-specs svg { color: var(--text-muted); }
.fleet-price {
  margin-bottom: 16px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--amber-400);
}
.price-unit {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.fleet-info .btn-primary,
.fleet-info .btn-outline {
  width: 100%;
  justify-content: center;
}

/* --- How It Works --- */
#how-it-works {
  background: linear-gradient(180deg, transparent, rgba(245,158,11,0.02), transparent);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  flex: 1;
  max-width: 280px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(245,158,11,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(245,158,11,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-400);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-connector {
  padding-top: 80px;
  flex-shrink: 0;
}

/* --- Testimonials --- */
#testimonials {
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 20px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }

.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.testimonial-stars {
  color: var(--amber-400);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg-deep);
}
.testimonial-author strong { font-size: 14px; }
.testimonial-author small { color: var(--text-muted); font-size: 12px; }

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--amber-400); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
  color: var(--amber-400);
}
.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Contact --- */
#contact {
  background: linear-gradient(180deg, transparent, rgba(245,158,11,0.03));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 17px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}
.contact-method:hover {
  border-color: var(--amber-500);
  background: var(--bg-card-hover);
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-icon { background: rgba(245,158,11,0.1); color: var(--amber-400); }
.whatsapp-icon { background: rgba(34,197,94,0.1); color: var(--green-500); }
.email-icon { background: rgba(59,130,246,0.1); color: var(--blue-400); }
.contact-method strong { display: block; font-size: 15px; }
.contact-method span { font-size: 13px; color: var(--text-muted); }

.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-form .form-group {
  margin-bottom: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.contact-form textarea { resize: vertical; }
.full-width { width: 100%; justify-content: center; }

/* --- Footer --- */
#footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--amber-400); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--amber-400); }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition-bounce);
  animation: floatBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,158,11,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7,7,13,0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-subtle);
    gap: 16px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-wrap: wrap; }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  #hero { padding: 100px 16px 40px; }
  .form-row { flex-direction: column; }
  .form-row-3 { grid-template-columns: 1fr; }
  .swap-btn { align-self: center; transform: rotate(90deg); }
  .swap-btn:hover { transform: rotate(270deg); }
  .trust-badges { gap: 12px; }
  .trust-badge { font-size: 12px; }
  .airports-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 36px; }
  .booking-card { padding: 16px; }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
}
