/* ═══════════════════════════════════════════════════════════════
   TAXI HUB — LIQUID GLASS DESIGN SYSTEM

   Based on iOS 26 Liquid Glass + Custom Web Implementation
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ─── Dark Mode (Default) ─── */
  --bg-primary: #0a0a0c;
  --bg-secondary: #141418;
  --bg-tertiary: #1a1a1f;
  --bg-elevated: #222228;

  --text-primary: #ffffff;
  --text-secondary: #e5e5e5;
  --text-muted: #888888;
  --text-inverse: #0a0a0c;

  /* Gold Accent Spectrum */
  --gold-primary: #c9a030;
  --gold-light: #e8c96a;
  --gold-dark: #a07820;
  --gold-glow: rgba(201, 160, 48, 0.4);

  /* Liquid Glass Surfaces */
  --glass-bg: rgba(20, 20, 24, 0.72);
  --glass-bg-hover: rgba(30, 30, 36, 0.8);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(201, 160, 48, 0.35);
  --glass-shine: rgba(255, 255, 255, 0.05);

  /* Interactive States */
  --whatsapp: #25D366;
  --whatsapp-hover: #20bd5a;
  --success: #22c55e;
  --error: #ef4444;
  --warning: #f59e0b;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 4px 24px rgba(201, 160, 48, 0.25);
  --shadow-glow: 0 0 40px rgba(201, 160, 48, 0.15);

  /* ─── Spacing Scale ─── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* ─── Border Radius ─── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* ─── Transitions (iOS-style) ─── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 150ms var(--ease-out-expo);
  --transition-normal: 250ms var(--ease-out-expo);
  --transition-slow: 400ms var(--ease-out-expo);
  --transition-spring: 350ms var(--ease-spring);

  /* ─── Z-Index Scale ─── */
  --z-base: 0;
  --z-card: 10;
  --z-sticky: 50;
  --z-nav: 100;
  --z-fab: 200;
  --z-modal: 300;
  --z-toast: 400;

  /* ─── Liquid Glass Blur ─── */
  --glass-blur: 20px;
  --glass-saturate: 180%;
  --glass-brightness: 100%;

  /* ─── Typography ─── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* ─── Layout ─── */
  --shell-max: 430px;
  --nav-height: 72px;
}

/* ─── Light Mode ─── */
[data-theme="light"] {
  --bg-primary: #faf9f7;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f5f4f2;
  --bg-elevated: #ffffff;

  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #888888;
  --text-inverse: #faf9f7;

  --gold-primary: #b8941f;
  --gold-light: #d4a82a;
  --gold-dark: #9a7a18;
  --gold-glow: rgba(184, 148, 31, 0.3);

  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-bg-hover: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-border-hover: rgba(184, 148, 31, 0.4);
  --glass-shine: rgba(255, 255, 255, 0.6);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 4px 24px rgba(184, 148, 31, 0.2);
  --shadow-glow: 0 0 40px rgba(184, 148, 31, 0.12);
}

/* ═══════════════════════════════════════════════════════════════
   BASE RESET & DEFAULTS
   ═══════════════════════════════════════════════════════════════ */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition:
    background var(--transition-normal),
    color var(--transition-normal);
}

/* Remove tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE SHELL
   ═══════════════════════════════════════════════════════════════ */

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg-primary);
  position: relative;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   LIQUID GLASS — CORE COMPONENTS

   Inspired by iOS 26 Liquid Glass Design
   ═══════════════════════════════════════════════════════════════ */

/* ─── Base Glass Surface ─── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

/* ─── Glass Card — Elevated State ─── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition:
    background var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-normal);
}

/* Glass shine effect (light refraction) */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--glass-shine) 50%,
    transparent 100%
  );
  opacity: 0.6;
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.glass-card:active {
  transform: scale(0.98);
}

/* ─── Glass Button ─── */
.glass-btn {
  background: rgba(201, 160, 48, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 160, 48, 0.25);
  border-radius: var(--radius-sm);
  color: var(--gold-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.glass-btn:hover {
  background: rgba(201, 160, 48, 0.2);
  border-color: var(--gold-primary);
}

.glass-btn:active {
  transform: scale(0.96);
}

/* ─── Glass Prominent (Primary) ─── */
.glass-prominent {
  background: linear-gradient(
    135deg,
    rgba(201, 160, 48, 0.25) 0%,
    rgba(201, 160, 48, 0.15) 100%
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-normal);
}

.glass-prominent:hover {
  background: linear-gradient(
    135deg,
    rgba(201, 160, 48, 0.35) 0%,
    rgba(201, 160, 48, 0.2) 100%
  );
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* ─── Glass Interactive (Nav, Tabs) ─── */
.glass-interactive {
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.glass-interactive:hover {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

.glass-interactive.active {
  background: rgba(201, 160, 48, 0.15);
  border-color: var(--gold-primary);
}

/* ─── Glass Navigation Bar ─── */
.glass-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border-bottom: 1px solid var(--glass-border);
}

/* ─── Glass Bottom Bar ─── */
.glass-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--shell-max);
  z-index: var(--z-nav);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border-top: 1px solid var(--glass-border);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
}

/* ─── Glass Modal ─── */
.glass-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.glass-modal.open {
  opacity: 1;
  visibility: visible;
}

.glass-modal-content {
  width: 100%;
  max-width: 380px;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--glass-bg);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-normal);
}

.glass-modal.open .glass-modal-content {
  transform: scale(1) translateY(0);
}

/* ─── Glass Floating Action Button ─── */
.glass-fab {
  position: fixed;
  z-index: var(--z-fab);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  border: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-spring);
}

.glass-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.glass-fab:active {
  transform: scale(0.95);
}

.glass-fab svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ─── Iridescent Shimmer (subtle color shift on hover) ─── */
.iridescent {
  position: relative;
  overflow: hidden;
}

.iridescent::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(201, 160, 48, 0.1) 45%,
    rgba(201, 160, 48, 0.2) 50%,
    rgba(201, 160, 48, 0.1) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 600ms ease;
  pointer-events: none;
}

.iridescent:hover::after {
  transform: translateX(100%);
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */

.font-display {
  font-family: var(--font-display);
}

.font-script {
  font-family: var(--font-script);
}

.text-xs { font-size: 10px; }
.text-sm { font-size: 12px; }
.text-base { font-size: 14px; }
.text-lg { font-size: 16px; }
.text-xl { font-size: 18px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 32px; }
.text-4xl { font-size: 40px; }
.text-5xl { font-size: 48px; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.text-muted { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 48px; /* Touch-friendly */
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Primary Gold Button */
.btn-gold {
  background: var(--gold-primary);
  color: var(--text-inverse);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-glow);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

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

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: var(--glass-bg);
  color: var(--text-primary);
}

/* Button Sizes */
.btn-sm {
  padding: 10px 16px;
  font-size: 10px;
  min-height: 40px;
}

.btn-lg {
  padding: 18px 32px;
  font-size: 12px;
  min-height: 56px;
}

.btn-full {
  width: 100%;
}

/* Button Loading State */
.btn-loading {
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

/* ─── Top Navigation ─── */
.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  position: relative;
  z-index: var(--z-sticky);
}

/* ─── Logo ─── */
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}

.logo-goa {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 4px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.logo-rides {
  font-size: 7px;
  letter-spacing: 6px;
  color: var(--gold-dark);
  font-weight: 500;
  padding-left: 2px;
}

/* ─── Theme Toggle ─── */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  border-color: var(--gold-primary);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
  transition: fill var(--transition-fast);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ─── Bottom Navigation ─── */
.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  min-width: 64px;
}

.nav-item svg {
  width: 22px;
  height: 22px;
  fill: var(--text-muted);
  transition: fill var(--transition-fast);
}

.nav-item span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-item:hover {
  background: var(--glass-bg);
}

.nav-item:hover svg,
.nav-item:hover span {
  fill: var(--gold-primary);
  color: var(--gold-primary);
}

.nav-item.active svg,
.nav-item.active span {
  fill: var(--gold-primary);
  color: var(--gold-primary);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS & LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.section {
  padding: 0 20px 28px;
}

.section-header {
  margin-bottom: var(--space-md);
}

.section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-primary) 0%,
    rgba(10, 10, 12, 0.75) 40%,
    rgba(10, 10, 12, 0.9) 100%
  );
}

[data-theme="light"] .hero-bg::after {
  background: linear-gradient(
    to bottom,
    var(--bg-primary) 0%,
    rgba(250, 249, 247, 0.7) 40%,
    rgba(250, 249, 247, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 28px;
}

.tagline {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.hero-script {
  font-family: var(--font-script);
  font-size: 40px;
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 14px;
}

[data-theme="light"] .hero-script {
  color: var(--gold-primary);
}

.hero-quote {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 280px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE GRID (BENTO)
   ═══════════════════════════════════════════════════════════════ */

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.service-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-card:active {
  transform: scale(0.97);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(201, 160, 48, 0.15), rgba(201, 160, 48, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 160, 48, 0.2);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-primary);
}

.service-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.service-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   FLEET / CARDS
   ═══════════════════════════════════════════════════════════════ */

.car-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: block;
}

.car-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.car-card:active {
  transform: scale(0.99);
}

.car-inner {
  display: flex;
  min-height: 140px;
}

.car-image {
  width: 145px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--bg-secondary), var(--bg-primary));
  position: relative;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.car-card:hover .car-image img {
  opacity: 1;
}

.price-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

[data-theme="light"] .price-badge {
  background: rgba(255, 255, 255, 0.95);
}

.price-from {
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.price-amt {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

[data-theme="light"] .price-amt {
  color: var(--gold-primary);
}

.price-per {
  font-size: 10px;
  color: var(--text-muted);
}

.car-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.car-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.car-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-tertiary);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  color: var(--text-secondary);
}

.car-tag svg {
  width: 12px;
  height: 12px;
  fill: var(--gold-primary);
}

.car-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  transition: gap var(--transition-fast);
}

.car-cta svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.car-card:hover .car-cta svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   TRUST / RATING
   ═══════════════════════════════════════════════════════════════ */

.trust-badge {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-stars {
  display: flex;
  gap: 2px;
}

.trust-stars svg {
  width: 22px;
  height: 22px;
  fill: #fbbf24;
}

.trust-info {
  flex: 1;
}

.trust-rating {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.trust-reviews {
  font-size: 10px;
  color: var(--gold-primary);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   ROUTE CARDS
   ═══════════════════════════════════════════════════════════════ */

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.route-card {
  position: relative;
  height: 170px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.route-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.route-card:hover img {
  transform: scale(1.05);
}

.route-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
}

[data-theme="light"] .route-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}

.route-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
}

.route-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.route-meta {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}

.route-meta svg {
  width: 12px;
  height: 12px;
  fill: var(--gold-primary);
}

/* ═══════════════════════════════════════════════════════════════
   ACCORDION (FAQ)
   ═══════════════════════════════════════════════════════════════ */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item:hover {
  border-color: var(--glass-border-hover);
}

.accordion-item.open {
  border-color: var(--gold-primary);
}

.accordion-header {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.accordion-question {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.accordion-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
  transition: all var(--transition-fast);
}

.accordion-item.open .accordion-icon {
  background: var(--gold-primary);
  transform: rotate(45deg);
}

.accordion-item.open .accordion-icon svg {
  fill: var(--text-inverse);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.accordion-item.open .accordion-content {
  max-height: 300px;
}

.accordion-answer {
  padding: 0 16px 18px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════ */

.form-group {
  margin-bottom: 16px;
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 160, 48, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888888' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT / MAP
   ═══════════════════════════════════════════════════════════════ */

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 160, 48, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-primary);
}

.contact-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 14px;
  font-weight: 500;
}

.map-container {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════════════════════════════ */

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--glass-border) 20%,
    var(--glass-border) 80%,
    transparent 100%
  );
  margin: 8px 20px 24px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-link {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-primary);
}

.footer-copy {
  font-size: 10px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════ */

/* Spacing */
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-4 { margin-bottom: var(--space-md); }
.mb-6 { margin-bottom: var(--space-lg); }

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-sm); }
.gap-3 { gap: var(--space-md); }

/* Display */
.hidden { display: none; }
.block { display: block; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Transitions */
.transition-all {
  transition: all var(--transition-normal);
}

/* Footer Spacer */
.footer-spacer {
  height: calc(var(--nav-height) + 20px);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade-in {
  animation: fadeIn 0.4s var(--ease-out-expo);
}

.animate-slide-up {
  animation: slideUp 0.5s var(--ease-out-expo);
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-tertiary) 25%,
    var(--bg-secondary) 50%,
    var(--bg-tertiary) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 375px) {
  .hero-h1 {
    font-size: 40px;
  }

  .hero-script {
    font-size: 36px;
  }

  .service-grid {
    gap: 10px;
  }

  .car-inner {
    flex-direction: column;
    min-height: auto;
  }

  .car-image {
    width: 100%;
    height: 140px;
  }
}

/* Larger screens - constrain even more */
@media (min-width: 500px) {
  .shell {
    border-radius: 0;
    box-shadow: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PREFERS REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
