/* ═══════════════════════════════════════
   PARADISE DISPATCH SERVICES
   Main Stylesheet v2 — Mobile First
═══════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #080E1D;
  color: #EEF2FA;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --navy:      #080E1D;
  --navy2:     #0C1526;
  --surface:   #111827;
  --surface2:  #1C2A40;
  --surface3:  #1E3A5F;
  --blue:      #1A6FD4;
  --blue-light:#3B8EE8;
  --orange:    #F2650F;
  --orange-dk: #C4500A;
  --white:     #EEF2FA;
  --muted:     #7A8FA8;
  --muted2:    #4A5568;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --border-bl: rgba(26,111,212,0.3);
  --shadow-bl: rgba(26,111,212,0.15);
  --shadow-or: rgba(242,101,15,0.3);
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.8rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p  { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }

/* ── LAYOUT ── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 60px 1.25rem; }
.section-dark { background: var(--surface); }
.section-light { background: var(--navy2); }
.centered { text-align: center; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── EYEBROW LABEL ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: var(--orange); border-radius: 1px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  border: none; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
  text-decoration: none; line-height: 1;
}
.btn-orange {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 20px var(--shadow-or);
}
.btn-orange:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--shadow-or);
}
.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 20px var(--shadow-bl);
}
.btn-blue:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--border2);
}
.btn-ghost:hover {
  background: var(--surface2);
  border-color: var(--blue);
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,14,29,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem; height: 60px; gap: 0.75rem;
}
.logo {
  display: flex; flex-direction: column;
  cursor: pointer; text-decoration: none;
  flex-shrink: 0;
}
.logo-main {
  font-family: Georgia, serif;
  font-size: 16px; font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 1px; line-height: 1.2;
}
.logo-sub {
  font-family: Georgia, serif;
  font-size: 8px; font-weight: 400;
  color: var(--muted); letter-spacing: 3px;
  text-transform: uppercase; line-height: 1;
}
.logo-tag {
  font-size: 7px; color: var(--muted2);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 1px;
  flex: 1; justify-content: center;
}
.nav-link {
  padding: 5px 9px; border-radius: 6px;
  font-size: 12px; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all 0.18s;
  white-space: nowrap; border: none;
  background: none; text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--white); background: var(--surface2);
}
.nav-right {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.lang-toggle {
  display: flex; align-items: center; gap: 3px;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 6px; padding: 3px;
}
.lang-btn {
  padding: 3px 9px; border-radius: 4px;
  font-size: 11px; font-weight: 600; cursor: pointer;
  border: none; background: none; color: var(--muted);
  transition: all 0.15s;
}
.lang-btn.active { background: var(--blue); color: #fff; }
.nav-call {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--white);
  padding: 6px 12px; border-radius: 7px;
  background: var(--surface2); border: 1px solid var(--border2);
  text-decoration: none; transition: all 0.18s;
}
.nav-call:hover { background: var(--surface3); }
.nav-cta {
  background: var(--orange); color: #fff;
  padding: 7px 14px; border-radius: 7px;
  font-size: 12px; font-weight: 700;
  border: none; cursor: pointer;
  transition: all 0.18s; white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 2px 12px var(--shadow-or);
}
.nav-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }

/* hamburger */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 7px; cursor: pointer; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--white); border-radius: 1px;
  transition: all 0.2s;
}

/* mobile drawer */
.nav-drawer {
  display: none; position: fixed;
  inset: 60px 0 0 0; z-index: 199;
  background: rgba(8,14,29,0.99);
  padding: 1.25rem; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link {
  padding: 13px 16px; font-size: 15px;
  border-radius: 8px; border: 1px solid var(--border);
  color: var(--white); width: 100%; display: block;
}
.nav-drawer .nav-link:hover { background: var(--surface2); }
.nav-drawer-cta {
  margin-top: 8px; padding: 14px;
  background: var(--orange); color: #fff;
  border-radius: 8px; font-size: 15px;
  font-weight: 700; border: none;
  text-align: center; text-decoration: none;
  display: block;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,14,29,0.93) 0%,
    rgba(8,14,29,0.78) 50%,
    rgba(8,14,29,0.55) 100%
  );
  z-index: 1;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(26,111,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,111,212,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Each slide has its own content */
.hero-slide-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1240px; margin: 0 auto;
  padding: 5rem 1.25rem 4rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hero-slide.active .hero-slide-content {
  opacity: 1; transform: translateY(0);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,111,212,0.12);
  border: 1px solid rgba(26,111,212,0.3);
  border-radius: 20px; padding: 5px 14px;
  font-size: 11px; font-weight: 600;
  color: var(--blue-light); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero-badge .pulse {
  width: 6px; height: 6px;
  background: #4ADE80; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-slide-content h1,
.hero-slide-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 700px;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero-slide-content h1 span,
.hero-slide-content h2 span { color: var(--blue-light); }
.hero-slide-content h1 span { color: var(--blue-light); }
.hero-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 540px; margin-bottom: 2rem; line-height: 1.75;
}
.hero-btns {
  display: flex; gap: 10px;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}

/* dots at bottom of hero */
.hero-controls {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  z-index: 10; display: flex;
  justify-content: center; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--muted2);
  cursor: pointer; transition: all 0.3s; border: none;
}
.hero-dot.active {
  background: var(--orange); width: 24px; border-radius: 4px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 1.8rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-size: 11px; color: var(--muted);
  margin-top: 4px; font-weight: 500;
}

/* ── SERVICE CARDS ── */
.service-cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  cursor: pointer; transition: all 0.25s;
  position: relative; overflow: hidden;
  text-decoration: none; display: block;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
}
.card-blue::before   { background: linear-gradient(90deg,#1A6FD4,#3B8EE8); }
.card-orange::before { background: linear-gradient(90deg,#F2650F,#FF8C40); }
.card-green::before  { background: linear-gradient(90deg,#059669,#10B981); }
.card-purple::before { background: linear-gradient(90deg,#7C3AED,#A78BFA); }
.service-card:hover {
  border-color: var(--border-bl);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-bl);
}
.card-icon {
  font-size: 1.75rem; margin-bottom: 0.875rem;
  width: 48px; height: 48px;
  background: var(--surface);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.service-card h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 0.95rem; }
.service-card p { font-size: 0.85rem; }
.card-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 0.875rem; font-size: 11px; font-weight: 700;
  color: var(--blue-light); transition: gap 0.2s;
}
.service-card:hover .card-arrow { gap: 8px; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  transition: all 0.25s;
}
.testimonial-card:hover {
  border-color: var(--border-bl);
  box-shadow: 0 8px 24px var(--shadow-bl);
}
.stars { color: #F59E0B; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 0.875rem; }
.testimonial-text {
  font-size: 0.875rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--white); }
.author-role { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── OVERVIEW SECTIONS ── */
.overview-img {
  border-radius: 14px; overflow: hidden;
  position: relative;
}
.overview-img img {
  width: 100%; height: 340px; object-fit: cover;
}
.overview-img-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 6px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.overview-content { display: flex; flex-direction: column; gap: 1rem; }
.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--muted);
}
.check-list li::before {
  content: '✓'; color: var(--orange);
  font-weight: 900; flex-shrink: 0; margin-top: 1px;
}

/* ── TRUCK TYPES ── */
.truck-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.truck-cell {
  background: var(--surface2);
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.4rem;
  text-align: center; transition: background 0.2s;
}
.truck-cell:hover { background: var(--surface3); }
.truck-icon { font-size: 1.75rem; }
.truck-name { font-size: 0.8rem; font-weight: 700; color: var(--white); }
.truck-desc { font-size: 0.7rem; color: var(--muted); }

/* ── WHY CHOOSE ── */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  transition: all 0.25s;
}
.why-card:hover {
  border-color: var(--border-bl);
  box-shadow: 0 4px 24px var(--shadow-bl);
}
.why-num {
  font-size: 11px; font-weight: 700;
  color: var(--orange); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 0.6rem;
}
.why-card h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 0.95rem; }

/* ── HOW IT WORKS ── */
.steps-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.steps-row::before {
  content: ''; position: absolute;
  top: 26px; left: 12.5%; right: 12.5%;
  border-top: 2px dashed var(--border-bl);
}
.step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 1rem;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--surface2);
  border: 2px solid var(--border-bl);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
  color: var(--blue-light);
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.step h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 0.875rem; }
.step p { font-size: 0.8rem; }

/* ── BLOG PREVIEW ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.blog-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: all 0.25s; text-decoration: none;
  display: block;
}
.blog-card:hover {
  border-color: var(--border-bl);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-bl);
}
.blog-img {
  width: 100%; height: 170px; object-fit: cover;
  background: var(--surface3);
}
.blog-content { padding: 1.125rem; }
.blog-category {
  font-size: 10px; font-weight: 700;
  color: var(--orange); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.blog-title {
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); line-height: 1.4;
  margin-bottom: 0.4rem;
}
.blog-date { font-size: 11px; color: var(--muted2); }
.blog-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 0.625rem; font-size: 12px;
  font-weight: 700; color: var(--blue-light);
}

/* ── FINAL CTA ── */
.split-cta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.cta-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 0.875rem;
}
.cta-box h3 { color: var(--white); }
.cta-icon { font-size: 2.25rem; }

/* ── FOOTER ── */
footer {
  background: #060A14;
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.25rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1240px; margin: 0 auto 2.5rem;
}
.footer-brand { font-size: 15px; font-weight: 800; margin-bottom: 0.75rem; }
.footer-tagline {
  font-size: 13px; color: var(--muted);
  line-height: 1.65; margin-bottom: 1.25rem; max-width: 220px;
}
.footer-contact p { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.footer-contact a { color: var(--blue-light); font-size: 13px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.875rem;
}
.footer-link {
  display: block; font-size: 13px; color: var(--muted);
  margin-bottom: 8px; transition: color 0.15s;
  text-decoration: none;
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 12px; color: var(--muted2); }

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 10px 1rem; gap: 8px;
}

/* ── DIVIDER ── */
.divider {
  width: 40px; height: 3px;
  background: var(--orange); border-radius: 2px;
  margin-bottom: 1rem;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET 1024px
════════════════════════════════════════ */
@media(max-width: 1024px) {
  .service-cards     { grid-template-columns: repeat(2,1fr); }
  .grid-4            { grid-template-columns: repeat(2,1fr); }
  .why-grid          { grid-template-columns: repeat(2,1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .stats-inner       { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid         { grid-template-columns: repeat(2,1fr); }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE 768px
════════════════════════════════════════ */
@media(max-width: 768px) {
  /* section spacing */
  .section { padding: 48px 1rem; }

  /* header */
  .nav-links { display: none; }
  .nav-call  { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 56px; padding: 0 1rem; }

  /* hero */
  .hero { min-height: 100svh; }
  .hero-slide-content { padding: 6rem 1rem 5rem; }
  .hero-slide-content h1 { font-size: 1.75rem; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .hero-btns { gap: 8px; }
  .hero-btns .btn { padding: 11px 16px; font-size: 13px; }
  .hero-controls { bottom: 1.5rem; }

  /* stats */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1.25rem 0.75rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-num { font-size: 1.5rem; }

  /* grids */
  .grid-2            { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-3            { grid-template-columns: 1fr; }
  .service-cards     { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr; }
  .split-cta         { grid-template-columns: 1fr; }

  /* truck grid */
  .truck-grid { grid-template-columns: repeat(2,1fr); }

  /* how it works */
  .steps-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .steps-row::before { display: none; }

  /* overview image — goes below content on mobile */
  .grid-2 .overview-img { order: -1; }
  .overview-img img { height: 220px; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tagline { max-width: 100%; }

  /* sticky cta */
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE 480px
════════════════════════════════════════ */
@media(max-width: 480px) {
  .hero-slide-content h1 { font-size: 1.5rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .truck-grid { grid-template-columns: repeat(2,1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .split-cta .btn { width: 100%; justify-content: center; }
}
/* ═══════════════════════════════════════
   FORMS — mobile-first
═══════════════════════════════════════ */
.form-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.form-label .req { color: var(--orange); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 46px;
  background: var(--navy);
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px; /* 16px prevents iOS auto-zoom on focus */
  color: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8FA8' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--shadow-bl);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted2); }

.form-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
}

.form-submit {
  width: 100%;
  min-height: 50px;
  font-size: 15px;
  justify-content: center;
  margin-top: 0.25rem;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.form-msg {
  display: none;
  margin-top: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.form-msg.success {
  display: block;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34D399;
}
.form-msg.error {
  display: block;
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.3);
  color: #F87171;
}

/* Star rating input (reviews page) */
.star-rating {
  display: flex;
  gap: 10px;
  font-size: 1.9rem;
  line-height: 1;
}
.star-rating span {
  color: var(--muted2);
  cursor: pointer;
  transition: color 0.15s, transform 0.1s;
  padding: 4px; /* larger tap target */
}
.star-rating span:active { transform: scale(0.9); }
.star-rating span.filled { color: #F59E0B; }

/* Wider screens: two columns for shorter fields */
@media(min-width: 640px) {
  .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }
  .form-submit { width: auto; padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* ═══════════════════════════════════════
   FAQ ACCORDION — mobile-first
═══════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  min-height: 44px;
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface3);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.25s;
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 18px 16px;
  font-size: 13.5px;
  line-height: 1.7;
}