/* ==========================================================================
   V&S Towing & Recovery — Mobile-First Clean Design
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@700;800;900&display=swap');

:root {
  --blue:       #0D47A1;
  --blue-dark:  #0A2540;
  --blue-navy:  #1E3A8A;
  --blue-light: #EFF6FF;
  --orange:     #F97316;
  --orange-dk:  #EA580C;
  --bg:         #FFFFFF;
  --bg-alt:     #F8FAFC;
  --text:       #0F172A;
  --muted:      #475569;
  --subtle:     #94A3B8;
  --border:     #E2E8F0;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --container:  1240px;
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* room for mobile sticky bar */
  padding-bottom: 0;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-head); text-transform: uppercase; line-height: 1.1; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── TOP BANNER ─────────────────────────────────────────────────── */
.top-banner {
  background: var(--orange);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem 0;
}
.top-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.top-banner a { text-decoration: underline; color: #fff; }
.top-right { display: flex; align-items: center; gap: 1rem; }

/* ── LANGUAGE BUTTON ────────────────────────────────────────────── */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 800;
  padding: .32rem .8rem;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.lang-btn:hover { background: rgba(255,255,255,.35); }
.nav-lang-btn {
  background: var(--blue-light);
  border-color: rgba(13,71,161,.25);
  color: var(--blue);
}
.nav-lang-btn:hover { background: var(--blue); color: #fff; }

/* ── HEADER ─────────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 1rem;
}
.brand-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo-badge {
  width: 44px; height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; font-weight: 900;
  box-shadow: 0 4px 10px rgba(13,71,161,.25);
  flex-shrink: 0;
}
.logo-name { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--blue); line-height: 1; }
.logo-sub  { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; color: var(--orange); }

.desktop-nav { display: flex; align-items: center; gap: 1.5rem; }
.desktop-nav a { font-size: .9rem; font-weight: 600; color: var(--text); transition: color .2s; }
.desktop-nav a:hover { color: var(--blue); }

.header-call-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  color: var(--text);
}
.header-call-btn i { font-size: 1.45rem; color: var(--blue); }
.header-call-label { display: block; font-size: .7rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; }
.header-call-number { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; line-height: 1; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,37,64,.88) 0%,
    rgba(10,37,64,.75) 55%,
    rgba(10,37,64,.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.25rem 4rem;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border-left: 3px solid var(--orange);
  padding: .35rem .85rem;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: 3.6rem;
  color: #fff;
  margin-bottom: .75rem;
  text-shadow: 0 3px 12px rgba(0,0,0,.4);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(249,115,22,.4);
  transition: background .2s, transform .15s;
}
.btn-primary-hero:hover { background: var(--orange-dk); transform: translateY(-2px); }
.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  transition: background .2s;
}
.btn-secondary-hero:hover { background: rgba(255,255,255,.25); }

.hero-trust-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
}
.trust-badge i { color: var(--orange); font-size: 1rem; }

/* ── SERVICES STRIP ─────────────────────────────────────────────── */
.services-strip {
  background: var(--blue-dark);
  padding: 1.25rem 0;
}
.services-strip-grid {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: .5rem 1rem;
  border-radius: 20px;
  transition: background .2s;
}
.service-chip i { color: var(--orange); }
.service-chip:hover { background: rgba(255,255,255,.18); }

/* ── SHARED SECTION STYLES ──────────────────────────────────────── */
.page-section { padding: 5rem 0; }
.bg-alt { background: var(--bg-alt); }

.section-head { margin-bottom: 2.5rem; }
.section-head.center { text-align: center; }
.section-head.head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.sub-tag { display: block; font-size: .82rem; font-weight: 800; color: var(--orange); letter-spacing: .1em; margin-bottom: .3rem; }
.section-title { font-size: 2.2rem; color: var(--text); }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-pill-orange {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(249,115,22,.25);
  white-space: nowrap;
  min-height: 48px;
  transition: background .2s;
}
.btn-pill-orange:hover { background: var(--orange-dk); }

/* ── WHY CHOOSE US ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.why-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg);
  border: 1px solid var(--border);
}
.why-photo-card img { width: 100%; height: 260px; object-fit: cover; }
.why-photo-caption { padding: 1.25rem 1.5rem; }
.why-photo-caption h3 { font-size: 1.25rem; color: var(--blue-dark); margin-bottom: .4rem; }
.why-photo-caption p { font-size: .9rem; color: var(--muted); }

.why-features-col { display: flex; flex-direction: column; gap: 1.1rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon i { color: var(--blue); font-size: 1rem; }
.feature-item h4 { font-size: 1rem; color: var(--blue-dark); margin-bottom: .2rem; }
.feature-item p  { font-size: .87rem; color: var(--muted); }

/* ── PARALLAX BANNER ────────────────────────────────────────────── */
.parallax-section {
  position: relative;
  background-image: url('images/real_truck_night_lights.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding: 6rem 0;
  text-align: center;
  color: #fff;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(10,37,64,.84), rgba(10,37,64,.88));
}
.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.parallax-content h2 { font-size: 3rem; color: #fff; margin-bottom: 1rem; text-shadow: 0 3px 10px rgba(0,0,0,.4); }
.parallax-content p  { font-size: 1.1rem; color: #CBD5E1; margin-bottom: 2rem; }
.parallax-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FLEET GALLERY ──────────────────────────────────────────────── */
.fleet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
}
.fleet-card {
  flex: 0 1 calc((100% - 2.2rem) / 3);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.fleet-media { overflow: hidden; height: 240px; }
.fleet-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.fleet-card:hover img { transform: scale(1.06); }
.fleet-caption {
  padding: .95rem 1.1rem 1.05rem;
  border-top: 3px solid var(--orange);
}
.fleet-caption strong { display: block; font-size: .95rem; font-family: var(--font-head); text-transform: uppercase; color: var(--blue-dark); }
.fleet-caption span   { font-size: .78rem; color: var(--orange); font-weight: 700; }

/* ── SERVICE AREAS ──────────────────────────────────────────────── */
.area-pills { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 2rem; justify-content: center; }
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.area-pill i { color: var(--orange); }
.area-pill:hover, .area-pill.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.area-pill:hover i, .area-pill.active i { color: #fff; }

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-box iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── REVIEWS ────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-stars { font-size: 1.1rem; color: #F59E0B; margin-bottom: .75rem; letter-spacing: .05em; }
.review-text  { font-size: .9rem; color: var(--muted); font-style: italic; margin-bottom: 1.25rem; flex: 1; }
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: .85rem;
}
.review-footer strong { display: block; font-size: .9rem; }
.review-footer span:not(.google-tag) { font-size: .78rem; color: var(--subtle); }
.google-tag { font-size: .8rem; font-weight: 700; color: #4285F4; display: flex; align-items: center; gap: .3rem; }

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--blue-dark);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  min-height: 48px;
  transition: background .2s;
}
.btn-google-reviews:hover { background: var(--blue); }
.btn-yelp-reviews {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #C41200;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  min-height: 48px;
}

/* ── CONTACT / DISPATCH ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.form-note {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
}
.form-note a { color: var(--blue); text-decoration: underline; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .8rem; font-weight: 700; text-transform: uppercase; color: var(--text); }
.form-group input,
.form-group select {
  padding: .72rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--bg-alt);
  color: var(--text);
  min-height: 46px;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  padding: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
  transition: background .2s;
  min-height: 52px;
}
.btn-submit:hover { background: var(--orange-dk); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; }
.btn-submit.is-sent { background: #16A34A; }
.btn-submit.is-sent:hover { background: #15803D; }

/* Honeypot — hidden from humans, visible to bots */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Form status messages */
.form-status {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.45;
}
.form-status[hidden] { display: none; }
.form-status-ok {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
}
.form-status-error {
  background: #FEE2E2;
  color: #B91C1C;
  border: 1px solid #FCA5A5;
}
.form-status-error a { color: #B91C1C; text-decoration: underline; }

.contact-image-side {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 500px;
  box-shadow: var(--shadow-md);
}
.contact-image-side img { width: 100%; height: 100%; object-fit: cover; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { font-size: .88rem; color: var(--subtle); margin-bottom: 0; }
.footer-col h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col li { font-size: .88rem; color: var(--subtle); display: flex; align-items: center; gap: .5rem; }
.footer-col a { color: var(--subtle); transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .83rem;
  color: var(--subtle);
}

/* ── MOBILE STICKY CALL BAR ─────────────────────────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: .65rem 1rem;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
}
.mobile-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: var(--orange);
  color: #fff;
  padding: .85rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  box-shadow: 0 3px 12px rgba(249,115,22,.4);
}
.mobile-call-link i { font-size: 1.35rem; }
.mobile-call-label  { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; opacity: .85; }
.mobile-call-number { display: block; font-size: 1.3rem; font-weight: 900; line-height: 1; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .fleet-card { flex-basis: calc((100% - 1.1rem) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .why-grid     { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-image-side { min-height: 280px; display: none; }
  .parallax-section { background-attachment: scroll; }
  .parallax-content h2 { font-size: 2.2rem; }
  .hero-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  /* Show mobile sticky bar & add padding */
  .mobile-call-bar { display: block; }
  body { padding-bottom: 80px; }

  /* Header */
  .desktop-nav      { display: none; }
  .header-call-btn  { gap: .4rem; }
  .header-call-label { display: none; }
  .header-call-number { font-size: 1.2rem; }
  .header-container   { height: 66px; }

  /* Top banner — single row on mobile */
  .top-hide-mobile { display: none; }
  .top-banner-content { justify-content: space-between; }

  /* Hero */
  .hero-section  { min-height: 520px; align-items: flex-end; }
  .hero-content  { padding: 2.5rem 1.25rem 3rem; }
  .hero-title    { font-size: 2.2rem; }
  .hero-subtitle { font-size: .95rem; }
  .hero-badge    { font-size: .75rem; }
  .btn-primary-hero  { width: 100%; justify-content: center; font-size: 1.1rem; }
  .btn-secondary-hero { width: 100%; justify-content: center; font-size: 1rem; }
  .hero-trust-row { gap: .85rem; }
  .trust-badge    { font-size: .82rem; }

  /* Services strip — scroll horizontally */
  .services-strip-grid { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .35rem; justify-content: flex-start; }
  .services-strip-grid::-webkit-scrollbar { height: 3px; }

  /* Sections */
  .page-section { padding: 3.5rem 0; }
  .section-title { font-size: 1.75rem; }
  .section-head.head-split { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Fleet */
  .fleet-grid { gap: .75rem; }
  .fleet-card  { flex-basis: calc((100% - .75rem) / 2); }
  .fleet-media { height: 150px; }
  .fleet-caption { padding: .7rem .8rem .8rem; }
  .fleet-caption strong { font-size: .82rem; }
  .fleet-caption span   { font-size: .72rem; }

  /* Area pills — small */
  .area-pill { padding: .45rem .9rem; font-size: .82rem; }

  /* Map */
  .map-box { height: 260px; }

  /* Reviews — single column */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-cta  { flex-direction: column; }
  .btn-google-reviews, .btn-yelp-reviews { width: 100%; justify-content: center; }

  /* Form — single column */
  .form-row   { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.35rem; }

  /* Parallax */
  .parallax-section { padding: 4rem 0; }
  .parallax-content h2 { font-size: 1.85rem; }
  .parallax-btns { flex-direction: column; align-items: center; gap: .75rem; }
  .parallax-btns .btn-primary-hero,
  .parallax-btns .btn-secondary-hero { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .fleet-card { flex-basis: 100%; }
  .hero-title { font-size: 1.95rem; }
}
