/* ═══════════════════════════════════════
   BLACK DIAMOND EXECUTIVE
   Style: Hybrid — dark hero, light body
   ═══════════════════════════════════════ */

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

:root {
  --bg-white: #ffffff;
  --bg-cream: #faf9f7;
  --bg-warm: #f4f2ee;
  --bg-dark: #1a1a1a;
  --bg-deep: #111111;
  --bg-hero: #0d0d0d;
  --gold: #e8c840;
  --gold-accent: #d4b62e;
  --gold-muted: #b8943f;
  --gold-bg: rgba(232, 200, 64, 0.07);
  --gold-border: rgba(232, 200, 64, 0.22);
  --gold-border-light: rgba(184, 148, 63, 0.15);
  --text-black: #1a1a1a;
  --text-dark: #2d2d2d;
  --text-body: #555555;
  --text-light: #888888;
  --text-faint: #b0b0b0;
  --border: #e8e6e1;
  --border-light: #f0eee9;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1240px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s var(--ease) both; }
.fd1 { animation-delay: 0.06s; }
.fd2 { animation-delay: 0.12s; }
.fd3 { animation-delay: 0.18s; }
.fd4 { animation-delay: 0.24s; }

/* ─── Logo ─── */
.logo-diamond { display: inline-block; width: 48px; height: 48px; }
.logo-diamond svg { width: 100%; height: 100%; }

/* ═══════════════════════════════
   NAV
   ═══════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s, border-color 0.3s;
}

nav.nav-dark {
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
}
nav.nav-dark .nav-links > li > a { color: rgba(255,255,255,0.85); }
nav.nav-dark .nav-links > li > a:hover { color: #fff; }
nav.nav-dark .nav-brand-text { color: #fff; }
nav.nav-dark .nav-brand-text span { color: var(--gold); }
nav.nav-dark .nav-phone { color: rgba(255,255,255,0.9); }
nav.nav-dark .nav-hamburger span { background: #fff; }
nav.nav-dark .nav-cta { background: var(--gold); color: #fff !important; }
nav.nav-dark .nav-cta:hover { background: var(--gold-accent); }

.nav-brand { display: flex; align-items: center; gap: 14px; }

.nav-brand-text {
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  line-height: 1.35; color: var(--text-black);
  transition: color 0.3s;
}
.nav-brand-text span { color: var(--gold); transition: color 0.3s; }

.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; height: 100%; }
.nav-links > li { display: flex; align-items: center; height: 100%; }

.nav-links > li > a {
  display: flex; align-items: center; height: 100%;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dark); transition: color 0.25s;
}
.nav-links > li > a:hover { color: var(--text-black); }

.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-dark);
  letter-spacing: 0.02em; transition: color 0.3s;
}
.nav-phone svg { width: 16px; height: 16px; stroke: var(--gold-muted); fill: none; stroke-width: 2; }

.nav-cta {
  padding: 12px 28px;
  background: var(--gold); color: #fff !important;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold-accent); transform: translateY(-1px); }

/* ─── Nav Dropdowns ─── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.dropdown-arrow {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.25s var(--ease);
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px; padding: 0.5rem 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 2px 10px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden;
  transition: all 0.25s var(--ease);
  pointer-events: none;
  z-index: 200;
}
.dropdown-menu::before {
  content: ''; position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-menu a {
  display: block; padding: 0.75rem 1.25rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-body) !important;
  letter-spacing: 0.02em; text-transform: none;
  transition: all 0.2s;
}
.dropdown-menu a:hover {
  background: var(--bg-cream);
  color: var(--text-black) !important;
}

/* Dark nav dropdown adjustments */
nav.nav-dark .dropdown-menu { background: var(--bg-deep); border: 1px solid rgba(255,255,255,0.12); }
nav.nav-dark .dropdown-menu::before { border-bottom-color: var(--bg-deep); }
nav.nav-dark .dropdown-menu a { color: rgba(255,255,255,0.9) !important; }
nav.nav-dark .dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: #fff !important; }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); margin: 5px 0; transition: all 0.3s;
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 0 60px;
  background: var(--bg-hero);
  color: #fff;
  overflow: visible;
}

/* ─── MyLimoBiz Form Containers ─── */
#outer_container {
  position: relative;
}

#inner_container {
  position: relative;
  min-width: 350px;
  min-height: 450px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.12), 0 24px 64px rgba(0,0,0,0.25);
  overflow: visible;
}

#inner_container iframe {
  width: 100% !important;
  min-height: 400px;
  border: none;
  border-radius: 14px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 50%, rgba(232,200,64,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 45%, rgba(255,255,255,0.01) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(232,200,64,0.08);
  border: 1px solid rgba(232,200,64,0.2);
  border-radius: 100px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero-badge .stars { display: flex; gap: 2px; }
.hero-badge .stars svg { width: 11px; height: 11px; fill: var(--gold); }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 600; line-height: 1.13;
  margin-bottom: 1.25rem;
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1rem; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem; max-width: 460px;
}

.hero-trust { display: flex; gap: 2.5rem; margin-bottom: 0.5rem; }
.trust-stat { display: flex; flex-direction: column; gap: 3px; }
.trust-num {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.trust-lbl {
  font-size: 0.68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

/* ─── Light Hero Variant ─── */
.hero-light {
  background: var(--bg-white);
}

.hero-light::before {
  background:
    radial-gradient(ellipse 60% 50% at 18% 50%, rgba(232,200,64,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 45%, rgba(0,0,0,0.02) 0%, transparent 50%);
}

.hero-light .hero-h1 {
  color: var(--text-black);
}

.hero-light .hero-sub {
  color: var(--text-body);
}

.hero-light .trust-lbl {
  color: var(--text-light);
}

.hero-light .hero-badge {
  background: rgba(232,200,64,0.1);
  border-color: rgba(232,200,64,0.3);
}

/* ─── CTA Card ─── */
.hero-cta-wrap { animation: fadeUp 0.7s 0.28s var(--ease) both; }

/* ─── LimoAnywhere Form Containers ─── */
#outer_container,
#inner_container {
  background: transparent;
  padding: 0;
  margin: 0;
}

#inner_container iframe {
  display: block;
  border: none;
}

.cta-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.12), 0 24px 64px rgba(0,0,0,0.25);
  padding: 2.5rem 2rem; text-align: center;
  max-width: 380px;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600; color: var(--text-black);
  margin-bottom: 0.75rem;
}

.cta-card p {
  font-size: 0.95rem; line-height: 1.6;
  color: var(--text-body); margin-bottom: 1.75rem;
}

.cta-card-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; background: var(--gold); color: #fff;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 6px; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.cta-card-btn svg {
  width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.3s var(--ease);
}
.cta-card-btn:hover {
  background: var(--gold-accent); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 200, 64, 0.35);
}
.cta-card-btn:hover svg { transform: translateX(4px); }

.cta-card-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.25rem; padding-top: 1.75rem; margin-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}
.cta-card-trust span {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.65rem; font-weight: 500;
  color: var(--text-light); white-space: nowrap;
}
.cta-card-trust svg {
  width: 13px; height: 13px;
  stroke: var(--gold-muted); fill: none; stroke-width: 2; flex-shrink: 0;
}

/* ─── Quote Card (for lead form) ─── */
.quote-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.12), 0 24px 64px rgba(0,0,0,0.25);
  padding: 1.75rem 2rem 1rem;
  width: 100%;
}

.quote-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-black);
  text-align: center;
  margin-bottom: 1rem;
}

.quote-card #inner_container {
  min-height: auto;
  background: transparent;
  box-shadow: none;
}

/* ═══════════════════════════════
   SERVICES
   ═══════════════════════════════ */
.services { padding: 4.5rem 0; background: var(--bg-cream); }

.section-label {
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--text-faint); margin-bottom: 1.75rem;
}
.section-label-gold { color: var(--gold-muted); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }

.svc-card {
  padding: 1.4rem; background: var(--bg-white);
  border: 1px solid var(--border); border-radius: 10px;
  transition: all 0.35s var(--ease); cursor: pointer;
}
.svc-card:hover {
  border-color: var(--gold-border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.svc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold-bg); border: 1px solid var(--gold-border-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.svc-icon svg { width: 18px; height: 18px; stroke: var(--gold-muted); fill: none; stroke-width: 1.5; }

.svc-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--text-black); margin-bottom: 0.35rem;
}
.svc-card p { font-size: 0.78rem; line-height: 1.55; color: var(--text-light); }

/* ═══════════════════════════════
   FLEET
   ═══════════════════════════════ */
.fleet {
  padding: 4.5rem 0; background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.fleet-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2rem;
}
.fleet-header h2 {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--text-black);
}
.fleet-header p {
  font-size: 0.88rem; color: var(--text-body);
  max-width: 400px; text-align: right; line-height: 1.6;
}

.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }

.fleet-card {
  position: relative; border-radius: 10px; overflow: hidden;
  background: var(--bg-white); border: 1px solid var(--border);
  transition: all 0.35s var(--ease); cursor: pointer;
}
.fleet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  border-color: var(--gold-border-light);
}
.fleet-card img {
  width: 100%; height: 200px; object-fit: contain;
  background: var(--bg-white);
  transition: transform 0.5s var(--ease);
}
.fleet-card:hover img { transform: scale(1.03); }

.fleet-card-info { padding: 0.9rem 1rem; }
.fleet-card-info h3 {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 600;
  color: var(--text-black); margin-bottom: 2px;
}
.fleet-card-info span { font-size: 0.7rem; color: var(--text-light); }


/* ═══════════════════════════════
   STORY
   ═══════════════════════════════ */
.story { padding: 5rem 0; background: var(--bg-white); }

.story-grid {
  display: grid; grid-template-columns: 0.6fr 1fr;
  gap: 3.5rem; align-items: center;
}
.story-img { position: relative; border-radius: 12px; overflow: hidden; max-width: 320px; }
.story-img img {
  width: 100%; border-radius: 12px;
  aspect-ratio: 3 / 4; object-fit: cover; object-position: center top;
}

.story h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 600; line-height: 1.2;
  color: var(--text-black); margin-bottom: 1.25rem;
}
.story-text {
  font-size: 0.93rem; line-height: 1.8;
  color: var(--text-body); margin-bottom: 1.25rem;
}
.story-sig {
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
  color: var(--gold-muted);
}

/* ═══════════════════════════════
   REVIEWS
   ═══════════════════════════════ */
.reviews {
  padding: 4.5rem 0; background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.reviews-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2rem;
}
.reviews-top h2 {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--text-black);
}

.reviews-agg { text-align: right; }
.stars-row { display: flex; gap: 3px; justify-content: flex-end; margin-bottom: 4px; }
.stars-row svg { width: 17px; height: 17px; fill: var(--gold-accent); }
.reviews-agg-text { font-size: 0.75rem; color: var(--text-light); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }

.rev-card {
  padding: 1.5rem; background: var(--bg-white);
  border: 1px solid var(--border); border-radius: 10px;
  transition: all 0.3s;
}
.rev-card:hover { border-color: var(--gold-border-light); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }

.rev-stars { display: flex; gap: 2px; margin-bottom: 0.8rem; }
.rev-stars svg { width: 13px; height: 13px; fill: var(--gold-accent); }

.rev-text {
  font-size: 0.86rem; line-height: 1.7;
  color: var(--text-body); margin-bottom: 1rem; font-style: italic;
}
.rev-author {
  font-size: 0.7rem; font-weight: 600; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ═══════════════════════════════
   CTA
   ═══════════════════════════════ */
.cta {
  padding: 5rem 0; text-align: center;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  position: relative;
}
.cta-inner { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600; margin-bottom: 1rem;
  color: var(--text-black);
}
.cta p {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--text-body); margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex; gap: 1.25rem; justify-content: center; align-items: center;
}

.btn-gold-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; background: var(--gold); color: #fff;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid var(--gold); border-radius: 4px; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-gold-cta:hover {
  background: transparent; color: var(--gold);
  transform: translateY(-2px);
}

.cta-or {
  font-size: 0.7rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.15em;
}

.phone-big {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--gold);
}
.phone-big svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer-dark {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.6);
}

.footer-main {
  max-width: var(--max-w); margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { padding-right: 2rem; }

.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1rem;
}
.footer-logo .logo-diamond { width: 42px; height: 42px; }
.footer-logo span {
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
}
.footer-logo em {
  font-style: normal;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.88rem; line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 2.5rem;
}

.footer-bottom-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal {
  display: flex; gap: 2rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.9); }

.footer-social {
  display: flex; gap: 1rem;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  transition: all 0.25s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.1);
}
.footer-social svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.5);
  fill: none; stroke-width: 1.5;
}
.footer-social a:hover svg { stroke: var(--gold); }

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-img { max-width: 280px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-hamburger { display: block; }
  nav { padding: 0 1.25rem; }
}

@media (max-width: 640px) {
  .hero { padding: 85px 0 32px; min-height: auto; }
  .hero-grid { padding: 0 1.25rem; }
  .hero-h1 { font-size: 1.85rem; }
  .hero-trust { gap: 1.5rem; }
  .container { padding: 0 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-card-trust { flex-direction: column; gap: 0.6rem; }
  .cta-actions { flex-direction: column; }
  .fleet-header { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .fleet-header p { text-align: left; }
  .footer-main { grid-template-columns: 1fr; padding: 2.5rem 1.25rem 2rem; gap: 1.5rem; }
  .footer-brand { grid-column: span 1; }
  .cta-card { max-width: 100%; }
  .footer-bottom { padding: 1.25rem; }
  .footer-bottom-inner { flex-direction: column; gap: 1.25rem; text-align: center; }
  .footer-legal { gap: 1.25rem; }
}