/* ============================================================
   Levi's Legacy LLC — Light Premium Design System
   Car rental & private transportation in DFW
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   Design Tokens — Light Theme
   ============================================================ */
:root {
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f8fa;
  --bg-tertiary: #eef0f4;
  --bg-dark: #0f1b2d;
  --bg-dark-alt: #162033;

  /* Surface Colors (cards, panels) */
  --surface: #ffffff;
  --surface-hover: #f7f8fa;
  --surface-raised: #ffffff;

  /* Text Colors */
  --text-heading: #0f1b2d;
  --text-body: #3d4f65;
  --text-muted: #6b7c93;
  --text-light: #94a3b8;
  --text-on-dark: #e2e8f0;
  --text-on-dark-muted: #94a3b8;

  /* Brand Colors */
  --gold-600: #a8882c;
  --gold-500: #c5a040;
  --gold-400: #d4af37;
  --gold-300: #e0c055;
  --gold-200: #f0dfa0;
  --gold-100: #faf3dc;
  --gold-gradient: linear-gradient(135deg, #c5a040 0%, #dfc35a 50%, #c5a040 100%);
  --gold-gradient-light: linear-gradient(135deg, #f7edd0 0%, #faf3dc 100%);
  --gold-gradient-text: linear-gradient(135deg, #a8882c, #c5a040);

  /* Navy for dark sections & accents */
  --navy-900: #0a0f1a;
  --navy-800: #0f1b2d;
  --navy-700: #162033;
  --navy-600: #1e3050;
  --navy-500: #2a4470;

  /* Neutral grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;

  /* Border Colors */
  --border: #e5e7eb;
  --border-light: #f0f1f3;
  --border-gold: rgba(197, 160, 64, 0.25);

  /* Status Colors */
  --success: #16a34a;
  --danger: #dc2626;
  --warning: #ca8a04;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

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

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows — warm, subtle */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 16px rgba(197, 160, 64, 0.2);
  --shadow-gold-lg: 0 8px 32px rgba(197, 160, 64, 0.25);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.08), 0 12px 36px rgba(0,0,0,0.10);

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: all 0.2s var(--ease-out);
  --transition-base: all 0.3s var(--ease-out);
  --transition-slow: all 0.5s var(--ease-out);

  /* Z-index */
  --z-base: 1;
  --z-nav: 100;
  --z-mobile-menu: 200;
  --z-modal: 300;
  --z-toast: 400;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-600);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--gold-500);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--gold-400);
  color: var(--navy-900);
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 36px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--text-heading);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.gold-text {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--navy-900);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--text-heading);
  border: 2px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--gold-100);
  color: var(--gold-600);
  border: 1px solid var(--border-gold);
}

.btn--ghost:hover {
  background: var(--gold-200);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

/* Dark section button variants */
.btn--secondary-dark {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn--secondary-dark:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-400);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn--ghost-dark:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-md) 0;
  transition: var(--transition-base);
  background: transparent;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-heading);
  line-height: 1.1;
}

.nav__logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 2px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-base);
  border-radius: 2px;
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold-600);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: var(--space-sm);
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
  z-index: calc(var(--z-mobile-menu) + 1);
}

.nav--scrolled .nav__hamburger {
  background: var(--bg-secondary);
  border-color: var(--border);
}

.nav__hamburger:hover {
  background: rgba(197, 160, 64, 0.1);
  border-color: var(--border-gold);
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition-base);
}

.nav--scrolled .nav__hamburger span {
  background: var(--text-heading);
}

.nav__hamburger--active span {
  background: #ffffff !important;
}

.nav__hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-mobile-menu);
  background: rgba(15, 27, 45, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-slow);
}

.mobile-nav--active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
  padding: var(--space-sm) var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-nav--active .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav--active .mobile-nav__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav--active .mobile-nav__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav--active .mobile-nav__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav--active .mobile-nav__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav--active .mobile-nav__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav--active .mobile-nav__link:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav--active .mobile-nav__link:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav--active .mobile-nav__link:nth-child(8) { transition-delay: 0.4s; }
.mobile-nav--active .mobile-nav__link:nth-child(9) { transition-delay: 0.45s; }

.mobile-nav__link:hover {
  color: var(--gold-400);
}

.mobile-nav__cta {
  margin-top: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-nav--active .mobile-nav__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* ============================================================
   Hero — Keeps dark dramatic feel
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 27, 45, 0.6) 0%,
    rgba(15, 27, 45, 0.75) 40%,
    rgba(15, 27, 45, 0.9) 70%,
    rgba(15, 27, 45, 1) 100%
  );
}

.hero__accent {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 64, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  z-index: 0;
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  background: rgba(197, 160, 64, 0.12);
  border: 1px solid rgba(197, 160, 64, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__buttons .btn--secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.hero__buttons .btn--secondary:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.hero__buttons .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-400);
  border-color: rgba(212, 175, 55, 0.3);
}

.hero__buttons .btn--ghost:hover {
  background: rgba(212, 175, 55, 0.12);
}

.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: var(--space-xs);
}

/* ============================================================
   Trust Bar — Light
   ============================================================ */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-xl) 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.trust-bar::-webkit-scrollbar {
  display: none;
}

.trust-bar__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  min-width: max-content;
  padding: 0 var(--space-md);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-bar__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-bar__text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-body);
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: var(--space-3xl) 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark .section-title {
  color: #ffffff;
}

.section--dark .section-subtitle {
  color: var(--text-on-dark-muted);
}

.section--dark .section-label {
  color: var(--gold-400);
}

.section--alt {
  background: var(--bg-secondary);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__header .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   Vehicle Cards — Light
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card-hover);
}

.vehicle-card__image-wrap {
  position: relative;
  padding-top: 60%;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.vehicle-card__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.vehicle-card:hover .vehicle-card__image-wrap img {
  transform: scale(1.05);
}

.vehicle-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 4px 12px;
  background: var(--gold-gradient);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  z-index: 1;
}

.vehicle-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-card__type {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xs);
}

.vehicle-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.vehicle-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.vehicle-card__meta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.vehicle-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.vehicle-card__meta-icon {
  font-size: 1rem;
}

.vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.vehicle-card__price {
  font-family: var(--font-heading);
}

.vehicle-card__price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
}

.vehicle-card__price-period {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ============================================================
   Steps (How It Works) — Dark section
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  counter-reset: step-counter;
}

.step-card {
  position: relative;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
  counter-increment: step-counter;
}

.step-card:hover {
  border-color: rgba(197, 160, 64, 0.3);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(197, 160, 64, 0.12);
  border: 2px solid rgba(197, 160, 64, 0.3);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold-400);
  margin-bottom: var(--space-md);
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.step-card__text {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

/* ============================================================
   Services Grid — Light
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.service-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
}

.service-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  color: var(--text-body);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-card__content {
  flex-grow: 1;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.service-card__text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-card__arrow {
  font-size: 1.2rem;
  color: var(--text-light);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.service-card:hover .service-card__arrow {
  color: var(--gold-600);
  transform: translateX(4px);
}

/* ============================================================
   Features (Why Choose Us) — Light
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.feature-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.feature-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.feature-item__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Testimonials — Light
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition-base);
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--gold-500);
  font-size: 1rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.95rem;
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   FAQ Accordion — Light
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  transition: var(--transition-base);
}

.faq-item--active {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
  text-align: left;
  color: var(--text-heading);
  background: none;
}

.faq-item__question:hover {
  color: var(--gold-600);
}

.faq-item__question-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.faq-item__icon {
  font-size: 1.2rem;
  color: var(--gold-500);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.faq-item--active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.faq-item--active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item__answer-inner a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item__answer-inner strong {
  color: var(--text-body);
}

/* ============================================================
   Contact CTA — uses gold accent bg
   ============================================================ */
.contact-cta {
  text-align: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-100) 0%, var(--bg-secondary) 50%, var(--gold-100) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.contact-cta__content {
  position: relative;
  z-index: 1;
}

.contact-cta__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--text-heading);
}

.contact-cta__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ============================================================
   Forms — Light
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-body);
  letter-spacing: 0.5px;
}

.form-label .required {
  color: var(--gold-600);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-heading);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(197, 160, 64, 0.12);
  background: var(--bg-primary);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7c93' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg-primary);
  color: var(--text-heading);
}

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

.form-error {
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 2px;
}

/* ============================================================
   Vehicle Detail Page — Light
   ============================================================ */
.vehicle-detail {
  padding-top: calc(80px + var(--space-xl));
}

.vehicle-detail__hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  background: var(--bg-tertiary);
  box-shadow: var(--shadow-md);
}

.vehicle-detail__hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.vehicle-gallery {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
  padding-bottom: var(--space-xs);
}

.vehicle-gallery__thumb {
  height: 80px;
  width: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.vehicle-gallery__thumb:hover {
  opacity: 0.8;
}

.vehicle-gallery__thumb.active {
  opacity: 1;
  border-color: var(--gold-500);
}

.vehicle-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.vehicle-detail__breadcrumb a {
  color: var(--text-muted);
}

.vehicle-detail__breadcrumb a:hover {
  color: var(--gold-600);
}

.vehicle-detail__type {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.vehicle-detail__name {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--text-heading);
}

.vehicle-detail__best-for {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.vehicle-detail__best-for strong {
  color: var(--text-body);
}

.vehicle-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.vehicle-detail__sidebar {
  order: -1;
}

.vehicle-detail__price-card {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: calc(80px + var(--space-md));
  box-shadow: var(--shadow-md);
}

.vehicle-detail__price-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

.vehicle-detail__price-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
}

.vehicle-detail__price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.vehicle-detail__price-divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-lg) 0;
}

.vehicle-detail__quick-specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.vehicle-detail__quick-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.vehicle-detail__quick-spec-label {
  color: var(--text-light);
}

.vehicle-detail__quick-spec-value {
  color: var(--text-heading);
  font-weight: 600;
}

.vehicle-detail__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.vehicle-detail__section {
  margin-bottom: var(--space-xl);
}

.vehicle-detail__section-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--gold-200);
  display: inline-block;
}

.vehicle-detail__description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.vehicle-detail__features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.vehicle-detail__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-body);
  padding: var(--space-sm) 0;
}

.vehicle-detail__feature-icon {
  color: var(--gold-600);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.vehicle-detail__policy-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.vehicle-detail__policy {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.vehicle-detail__policy-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.vehicle-detail__policy-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.vehicle-detail__policy-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Page Headers — Light
   ============================================================ */
.page-header {
  padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-light);
}

.page-header__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--text-heading);
}

.page-header__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   Content Pages — Light
   ============================================================ */
.content-page {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.content-block {
  margin-bottom: var(--space-xl);
}

.content-block__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-md);
}

.content-block__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-block__text ul {
  margin-top: var(--space-sm);
  padding-left: var(--space-lg);
}

.content-block__text li {
  list-style: disc;
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
}

.content-block__text li::marker {
  color: var(--gold-500);
}

/* ============================================================
   About Page — Light
   ============================================================ */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-value {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.about-value__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-value__title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.about-value__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   Private Transportation — Light
   ============================================================ */
.pt-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.pt-service-card {
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  box-shadow: var(--shadow-card);
}

.pt-service-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card-hover);
}

.pt-service-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.pt-service-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.pt-service-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   Contact Page — Light
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.contact-info-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-card__text a {
  color: var(--gold-600);
}

/* Quick Response card on contact page needs light styling */
.contact-response-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-response-card h3 {
  color: var(--text-heading);
}

/* ============================================================
   Modal — Light
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(15, 27, 45, 0.5);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}

.modal-overlay--active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-primary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 100%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.modal-overlay--active .modal {
  transform: scale(1) translateY(0);
}

.modal__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: rgba(22, 163, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-lg);
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--text-heading);
}

.modal__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.modal__summary {
  text-align: left;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.modal__summary-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.modal__summary-row:last-child {
  border-bottom: none;
}

.modal__summary-label {
  color: var(--text-light);
}

.modal__summary-value {
  color: var(--text-heading);
  font-weight: 600;
}

/* ============================================================
   Footer — Stays Dark for grounding
   ============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer .nav__logo-text {
  color: #ffffff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  margin-top: var(--space-md);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  transition: var(--transition-fast);
}

.footer__link:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__legal-links {
  display: flex;
  gap: var(--space-md);
}

.footer__legal-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__legal-link:hover {
  color: var(--gold-400);
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Responsive — Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-detail__features-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-detail__hero img {
    height: 400px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stats {
    gap: var(--space-3xl);
  }
}

/* ============================================================
   Responsive — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid--home {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vehicle-detail__grid {
    grid-template-columns: 1fr 380px;
  }

  .vehicle-detail__sidebar {
    order: 0;
  }

  .vehicle-detail__hero img {
    height: 480px;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .pt-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid--main {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   Responsive — Large Desktop (1200px+)
   ============================================================ */
@media (min-width: 1200px) {
  .fleet-grid--home {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--gold-600); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hide-mobile { display: none !important; }
@media (min-width: 1024px) {
  .hide-mobile { display: initial !important; }
  .hide-desktop { display: none !important; }
}

/* ============================================================
   Scrollbar — Light
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10000;
}

.lightbox__close:hover {
  color: var(--gold-500);
}

.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  font-weight: bold;
  background: rgba(0,0,0,0.5);
  border: none;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 5px;
  transition: 0.3s;
  z-index: 10000;
}

.lightbox__prev {
  left: 20px;
}

.lightbox__next {
  right: 20px;
}

.lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(197, 160, 64, 0.8);
}

.lightbox__counter {
  color: white;
  margin-top: 15px;
  font-size: 1rem;
  letter-spacing: 1px;
}
