/* ============================================================
   SHARED CSS — Book My Wheeler
   Used by: index.html, fleet.html, explore-goa.html
   ============================================================ */

/* Font Awesome font-display override — prevents invisible text during load */
@font-face { font-family: 'Font Awesome 6 Free'; font-display: swap; src: local(''); }
@font-face { font-family: 'Font Awesome 6 Brands'; font-display: swap; src: local(''); }

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  /* ── Brand Palette ── */
  --primary: #FF7A21;          /* Sunset Orange – primary CTAs, price highlights, badges */
  --primary-dark: #e05f0e;     /* Hover / pressed state */
  --primary-light: #ff9a4d;    /* Soft accent */
  --navy: #0077B6;             /* Ocean Blue – logo, header, links, secondary buttons */
  --navy-dark: #005a8e;        /* Darker Ocean Blue */
  --teal: #00BFA6;             /* Seafoam Teal – micro-accent only: icon highlights, footer hover */

  /* ── Neutrals ── */
  --white: #ffffff;
  --off-white: #F9FAFB;        /* Base page background */
--light-grey: #D1D5DB;       /* Borders, dividers, disabled */
  --charcoal: #111827;         /* Primary text */
  --slate: #4B5563;            /* Secondary text, labels */

  /* ── Legacy aliases ── */
  --gray-50: #F9FAFB;
  --gray-100: #f3f4f6;
  --gray-200: #D1D5DB;
  --gray-400: #9ca3af;
  --gray-600: #4B5563;
  --gray-800: #111827;

  /* ── Status ── */
  --success: #16A34A;
  --warning: #FACC15;
  --error: #DC2626;

  /* ── Shape & Motion ── */
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   SKIP LINK (accessibility)
============================================================ */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--navy); color: white; padding: 12px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 14px; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--charcoal); background: var(--off-white); overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Fraunces', serif; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-tag { display: inline-block; background: rgba(0,119,182,0.10); color: var(--navy); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 800; color: var(--charcoal); margin-bottom: 12px; }
.section-sub { font-size: 1.05rem; color: var(--slate); max-width: 560px; line-height: 1.7; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; cursor: pointer; border: none; transition: var(--transition); min-height: 44px; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 16px rgba(255,122,33,0.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,122,33,0.45); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--navy); }
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SCROLL REVEAL SYSTEM
============================================================ */
[data-reveal] { opacity: 0; transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.7s ease; }
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="down"] { transform: translateY(-40px); }
[data-reveal="left"] { transform: translateX(48px); }
[data-reveal="right"] { transform: translateX(-48px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal="blur"] { transform: translateY(20px); filter: blur(8px); }
[data-reveal].revealed { opacity: 1; transform: translate(0) scale(1); filter: blur(0); }

/* Stagger children */
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1); }
[data-stagger].revealed > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   ENHANCED HOVER EFFECTS
============================================================ */
/* Vehicle card image zoom */
.vehicle-img { overflow: hidden; }
.vehicle-img img { transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.vehicle-card:hover .vehicle-img img { transform: scale(1.06); }

/* Feature card accent border slide */
.feature-card { position: relative; overflow: hidden; }
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--navy));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover .feature-icon { transform: scale(1.12); }
.feature-icon { transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }

/* Nav link underline animation */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--teal); border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }

/* Location pill glow */
.location-pill { position: relative; }
.location-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,122,33,0.3); }

/* Testimonial card lift */
.testimonial-card { transition: box-shadow 0.4s, border-color 0.4s, transform 0.4s; overflow: visible; }
.testimonial-card:hover { transform: translateY(-4px); }

/* FAQ smooth accordion */
.faq-a {
  display: block !important; max-height: 0; overflow: hidden; padding: 0 20px;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 20px 18px; }

/* Button shimmer effect */
.btn-submit { position: relative; overflow: hidden; }
.btn-submit::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
}
.btn-submit:hover::after { left: 100%; transition: left 0.6s ease; }

/* ============================================================
   WAVE DIVIDERS
============================================================ */
.wave-divider { position: relative; line-height: 0; margin-top: -1px; }
.wave-divider svg { display: block; width: 100%; height: auto; }
.wave-divider.flip { transform: rotate(180deg); margin-top: 0; margin-bottom: -1px; }

/* ============================================================
   DARK SECTION NOISE TEXTURE
============================================================ */
.stats-bar, .locations-section, footer {
  position: relative;
}
.stats-bar::after, .locations-section::after, footer::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.5;
}

/* ============================================================
   CTA BANNER PARALLAX
============================================================ */
.cta-banner { background-attachment: fixed; }
@media (max-width: 768px) { .cta-banner { background-attachment: scroll; } }

/* ============================================================
   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; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  [data-stagger] > * { opacity: 1; transform: none; }
  .fade-in { opacity: 1; transform: none; }
  .hero-video-wrap { display: none; }
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(0,119,182,0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 6px; font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.3rem; color: white; }
.nav-logo > span > span { color: var(--teal); }
.logo-icon { width: 56px; height: 56px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-wa { display: flex; align-items: center; gap: 8px; background: #25D366; color: white; padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.nav-wa:hover { background: #1da851; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, #050e1a 0%, #0077B6 100%); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.9); font-size: 1.4rem; font-weight: 700; font-family: 'Fraunces', serif; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .mob-wa { background: #25D366; color: white; padding: 14px 32px; border-radius: 12px; margin-top: 8px; }
.mobile-close { position: absolute; top: 20px; right: 20px; color: rgba(255,255,255,0.8); font-size: 1.5rem; cursor: pointer; padding: 8px; }
.navbar.menu-open .nav-logo { color: white; }
.navbar.menu-open { background: rgba(5,14,26,0.97); }

/* ============================================================
   SUCCESS MODAL
============================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,119,182,0.60); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: white; border-radius: var(--radius-lg); padding: 40px 32px;
  max-width: 440px; width: 100%; text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  animation: modal-in 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modal-in { from{transform:scale(0.7);opacity:0;} to{transform:scale(1);opacity:1;} }
.modal-icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal-title { font-size: 1.5rem; font-weight: 800; color: var(--charcoal); margin-bottom: 10px; }
.modal-text { color: var(--slate); line-height: 1.7; margin-bottom: 24px; font-size: 15px; }
.modal-close { background: var(--primary); color: white; border: none; padding: 12px 32px; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; transition: var(--transition); min-height: 44px; }
.modal-close:hover { background: var(--primary-dark); }

/* ============================================================
   VEHICLE CARDS (shared across index.html preview & fleet.html)
============================================================ */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vehicle-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--light-grey); transition: var(--transition);
  position: relative;
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); border-color: var(--navy); }
.vehicle-card.hidden { display: none; }
.vehicle-img {
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative;
}
.vehicle-img.scooter-bg { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.vehicle-img.bike-bg { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.vehicle-img.car-bg { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.vehicle-img.suv-bg { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); }
.vehicle-img.placeholder-bg {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  color: var(--slate); font-size: 3rem;
}
.vehicle-img img { height: 100%; width: 100%; object-fit: cover; }
.vehicle-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: white;
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.vehicle-badge.popular { background: var(--navy); }
.vehicle-body { padding: 18px; }
.vehicle-name { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.vehicle-tagline { font-size: 13px; color: var(--slate); margin-bottom: 12px; }
.vehicle-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.vehicle-tag { font-size: 11.5px; background: var(--gray-100); color: var(--slate); padding: 4px 10px; border-radius: 6px; font-weight: 500; }
.vehicle-tag.transmission { background: rgba(0,119,182,0.10); color: var(--navy); font-weight: 600; }
.vehicle-footer { display: flex; align-items: center; justify-content: space-between; }
.vehicle-price { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.vehicle-price span { font-size: 12px; font-weight: 500; color: var(--slate); }
.vehicle-enquire { font-size: 13px; font-weight: 600; color: var(--navy); background: rgba(0,119,182,0.10); padding: 7px 14px; border-radius: var(--radius); cursor: pointer; border: 1.5px solid transparent; transition: var(--transition); min-height: 44px; display: inline-flex; align-items: center; }
.vehicle-enquire:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* Fleet tabs & sort */
.fleet-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.fleet-tab {
  padding: 9px 22px; border-radius: 25px; border: 2px solid var(--light-grey);
  background: white; color: var(--slate); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.fleet-tab.active, .fleet-tab:hover { background: var(--navy); border-color: var(--navy); color: white; }
.fleet-sort { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.fleet-sort span { font-size: 13px; font-weight: 600; color: var(--slate); margin-right: 4px; }
.sort-btn {
  padding: 7px 16px; border-radius: 20px; border: 1.5px solid var(--light-grey);
  background: white; color: var(--slate); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.sort-btn.active, .sort-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }
.car-subtabs { display: none; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.car-subtabs.visible { display: flex; }
.car-subtab {
  padding: 7px 18px; border-radius: 25px; border: 2px solid var(--teal);
  background: white; color: var(--teal); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.car-subtab.active, .car-subtab:hover { background: var(--teal); border-color: var(--teal); color: white; }

/* Transmission filter */
.transmission-filter { display: none; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.transmission-filter.visible { display: flex; }
.transmission-btn {
  padding: 7px 18px; border-radius: 25px; border: 2px solid var(--primary);
  background: white; color: var(--primary); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.transmission-btn.active, .transmission-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: url('../images/hero-banner.webp') center center / cover no-repeat;
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(185, 65, 0, 0.80);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: white; margin-bottom: 14px; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-wa { background: #25D366; color: white; padding: 16px 32px; border-radius: var(--radius); font-size: 16px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); }
.btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-call { background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.6); color: white; padding: 16px 32px; border-radius: var(--radius); font-size: 16px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); backdrop-filter: blur(8px); min-height: 44px; }
.btn-call:hover { background: white; color: var(--navy); border-color: white; transform: translateY(-2px); }

/* ============================================================
   FOOTER
============================================================ */
footer { background: #050e1a; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); }
.social-icon:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.footer-col h3 { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--teal); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--teal); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--teal); }

/* ============================================================
   FLOATING ELEMENTS
============================================================ */
.float-wa {
  position: fixed; bottom: 80px; right: 24px; z-index: 500;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: float-pulse 2.5s ease-in-out infinite;
  transition: var(--transition);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.7); animation: none; }
@keyframes float-pulse { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.08); } }
.scroll-top {
  position: fixed; bottom: 20px; right: 30px; z-index: 500;
  width: 44px; height: 44px; background: var(--navy); border-radius: var(--radius);
  display: none; align-items: center; justify-content: center;
  color: white; font-size: 1rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,119,182,0.35); transition: var(--transition);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* ============================================================
   PAGE HERO (for fleet.html, explore-goa.html)
============================================================ */
.page-hero {
  min-height: 40vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #050e1a 0%, var(--navy) 100%);
  position: relative; text-align: center; padding: 120px 20px 60px;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: white; margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   RESPONSIVE — SHARED COMPONENTS
============================================================ */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .fleet-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
