/* ============================================================
   FARGO TRANSPORTATION INC. — MAIN STYLESHEET
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; color: #1A2E54; background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand colors: Navy #1E3464 + Gold #C4A96C */
  --red:        #C4A96C;                   /* gold — accent / highlight */
  --red-dark:   #A8904F;                   /* darker gold */
  --red-glow:   rgba(196,169,108,0.20);
  --red-soft:   rgba(196,169,108,0.10);
  --navy:       #1E3464;                   /* brand navy blue */
  --navy-2:     #172B54;                   /* deeper navy */
  --navy-card:  rgba(255,255,255,0.06);
  --dark:       #1A2E54;                   /* dark navy for text/headings */
  --mid:        #4b5563;
  --muted:      #9ca3af;
  --border:     #e5e7eb;
  --surface:    #f8f9fb;
  --white:      #ffffff;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12), 0 24px 64px rgba(0,0,0,0.1);
  --radius:     4px;
  --radius-lg:  6px;
  --radius-xl:  10px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- LAYOUT ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }

/* ---------- TYPOGRAPHY SHARED ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-head h2, .section-head-light h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 900; color: var(--dark); line-height: 1.1; margin: 12px 0 16px; letter-spacing: -1.5px; text-transform: uppercase; }
.section-head p { font-size: 17px; color: var(--mid); }
.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255,255,255,0.6); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--red);
  flex-shrink: 0;
}

.tag-light {
  color: var(--red);
}

.tag-light::before {
  background: var(--red);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.3;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--red);
  color: var(--dark);
  border-color: var(--red);
  box-shadow: 0 2px 8px rgba(196,169,108,0.35);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,169,108,0.5);
}

.btn-white {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  border-width: 2px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline-dark:hover { border-color: var(--dark); background: var(--surface); }

.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-xl { padding: 17px 36px; font-size: 16px; border-radius: var(--radius); }
.btn-full { width: 100%; padding: 16px; font-size: 16px; border-radius: var(--radius); }

/* ---------- HEADER — Industrial ---------- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: box-shadow 0.3s, background 0.3s;
}

/* Animated truck lane at bottom of header */
.nav-truck-lane {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  overflow: visible;
  pointer-events: none;
}

.nav-truck {
  position: absolute;
  bottom: -6px;
  left: 0;
  animation: nav-truck-ride 14s linear infinite;
  pointer-events: none;
  opacity: 0.92;
}

@keyframes nav-truck-ride {
  0%   { transform: translateX(calc(100vw + 80px)) scaleX(-1); }
  100% { transform: translateX(-80px) scaleX(-1); }
}
#header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }
.logo-mark { display: flex; align-items: center; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 16px; font-weight: 700; color: var(--dark); }
.logo-name strong { color: var(--red); }
.logo-sub { font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.logo-light .logo-name { color: #fff; }
.logo-light .logo-sub { color: rgba(255,255,255,0.4); }
.logo-img { height: 44px; width: auto; display: block; }

/* Desktop Nav */
#nav { flex: 1; display: flex; }
#nav ul { display: flex; gap: 2px; }
.nav-link {
  display: block;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--red); background: var(--red-soft); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.header-phone:hover { color: var(--red); background: var(--red-soft); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--surface); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 890;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-inner { padding: 32px 28px 40px; min-height: 100%; display: flex; flex-direction: column; }
.mobile-nav-inner nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-link {
  display: block;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.mobile-link:hover { background: var(--red-soft); color: var(--red); border-left-color: var(--red); }
.mobile-ctas { display: flex; flex-direction: column; gap: 12px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 76px;
  background-color: #0C1424;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(196,169,108,0.03) 40px,
      rgba(196,169,108,0.03) 41px
    ),
    radial-gradient(ellipse at 25% 55%, rgba(196,169,108,0.10) 0%, transparent 55%);
}

/* ---------- HERO LAYOUT ---------- */

/* Full-width image slider — now IS the hero */
.hero-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0A1A3A;
  flex-shrink: 0;
}

/* Dark gradient so text is readable over images */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 18, 40, 0.72) 0%,
    rgba(10, 18, 40, 0.45) 55%,
    rgba(10, 18, 40, 0.15) 100%
  );
  z-index: 1;
}

/* Text content overlaid on slider */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 80px;
}

.hero-content .hero-desc {
  max-width: 520px;
}

.hero-img-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}

.hero-img-slide.active {
  opacity: 1;
}

/* Image slideshow dots — overlaid on the frame */
.hero-img-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.hero-img-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.4s ease;
  cursor: pointer;
}

.hero-img-dot.active {
  width: 22px;
  border-radius: 3px;
  background: var(--red);
}

/* ---------- HERO TEXT ANIMATIONS ---------- */

/* 1 — Masked line reveal (title) */
@keyframes lineReveal {
  from { transform: translateY(108%); }
  to   { transform: translateY(0); }
}

/* 2 — Slide in from left */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* 3 — Blur to sharp */
@keyframes blurSharp {
  from { opacity: 0; filter: blur(14px); letter-spacing: 10px; }
  to   { opacity: 1; filter: blur(0);   letter-spacing: 4px; }
}

/* 4 — Fade left (description) */
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* 5 — Spring pop (buttons) */
@keyframes springPop {
  from { opacity: 0; transform: translateY(22px) scale(0.88); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* 6 — Fade + scale up (credential strip) */
@keyframes fadeScale {
  from { opacity: 0; transform: scaleX(0.92); transform-origin: left; }
  to   { opacity: 1; transform: scaleX(1);    transform-origin: left; }
}

/* Eyebrow slides in from left */
.hero-content .hero-eyebrow {
  animation: slideInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* Title — each line masked reveal, staggered */
.hero-title .hero-line {
  display: block;
  overflow: hidden;
  line-height: 1.08;
  padding-bottom: 0.06em;
}
.hero-title .hero-line > span {
  display: block;
  animation: lineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-title .hero-line:nth-child(1) > span { animation-delay: 0.18s; }
.hero-title .hero-line:nth-child(2) > span { animation-delay: 0.32s; }
.hero-title .hero-line:nth-child(3) > span { animation-delay: 0.46s; }

/* Tagline — blur to sharp */
.hero-content .hero-tagline {
  animation: blurSharp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

/* Description — fade slide from left */
.hero-content .hero-desc {
  animation: fadeSlideLeft 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.82s both;
}

/* Buttons — spring pop, staggered */
.hero-content .hero-ctas .btn:first-child {
  animation: springPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 1.0s both;
}
.hero-content .hero-ctas .btn:last-child {
  animation: springPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 1.12s both;
}

/* Credential strip — fade + scale */
.hero-content .hero-credential-strip {
  animation: fadeScale 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.28s both;
}

/* ---------- INDUSTRIAL HERO ELEMENTS ---------- */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-eyebrow-bar {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-eyebrow-dot {
  display: block;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Credential strip — USDOT / MC / States */
.hero-credential-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  border: 1px solid rgba(196,169,108,0.25);
  border-left: 4px solid var(--red);
  background: rgba(20,36,80,0.55);
  backdrop-filter: none;
  padding: 14px 24px;
  width: fit-content;
}

.hcs-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px;
}

.hcs-item:first-child { padding-left: 0; }

.hcs-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}

.hcs-val {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
}

.hcs-sep {
  width: 1px;
  height: 32px;
  background: rgba(196,169,108,0.2);
  flex-shrink: 0;
}

/* hero-badge no longer used — replaced by hero-eyebrow */
.hero-badge { display: none; }

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-br { display: block; }

.hero-accent {
  color: var(--red);
  display: block;
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
  background: linear-gradient(135deg, var(--red) 0%, #E8CB8A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
  border-left: 3px solid rgba(196,169,108,0.4);
  padding-left: 16px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  animation: slide 2s ease-in-out infinite;
}
@keyframes slide { 0% { left: -100%; } 100% { left: 100%; } }

/* ---------- TRUCK ANIMATION ---------- */
@keyframes truck-drive {
  0%   { transform: translateX(-140px); }
  100% { transform: translateX(100vw); }
}
@keyframes wheel-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes exhaust-puff {
  0%   { opacity: 0.7; transform: translateY(0) scale(1); }
  100% { opacity: 0;   transform: translateY(-12px) scale(2); }
}

.truck-strip {
  position: relative;
  height: 64px;
  background: #fff;
  overflow: hidden;
  border-bottom: 2px solid #e5e7eb;
  z-index: 5;
}

.truck-road-line {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #d1d5db 0px,
    #d1d5db 30px,
    transparent 30px,
    transparent 60px
  );
}

.truck-anim {
  position: absolute;
  bottom: 4px;
  animation: truck-drive 8s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  z-index: 2;
}


/* Stats Bar — Industrial */
/* ---------- STATS KEYFRAMES ---------- */
@keyframes stats-shimmer {
  0%   { transform: translateX(-120%) skewX(-20deg); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(900%) skewX(-20deg); opacity: 0; }
}

@keyframes stat-rise {
  from { opacity: 0; transform: translateY(22px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

@keyframes num-glow-pulse {
  0%, 100% { text-shadow: 0 0 24px rgba(220,38,38,0.3); }
  50%       { text-shadow: 0 0 56px rgba(220,38,38,0.75), 0 0 90px rgba(220,38,38,0.25); }
}

@keyframes ring-expand {
  0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(2.8); opacity: 0; }
}

@keyframes border-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1e 0%, var(--navy) 50%, #0d1530 100%);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

/* Animated gradient top border */
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), #C4A96C, #2a4a80, #E8CB8A, var(--navy), #C4A96C);
  background-size: 300% 100%;
  animation: border-flow 4s linear infinite;
}

/* Shimmer sweep */
.stats-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: stats-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

/* Stat items hidden until in-view */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 44px;
  position: relative;
  transition: background 0.3s ease;
  cursor: default;
  opacity: 0;
}

/* Staggered entrance when .stats-bar gets .in-view */
.stats-bar.in-view .stat-item {
  animation: stat-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.stats-bar.in-view .stat-item:nth-child(1) { animation-delay: 0.05s; }
.stats-bar.in-view .stat-item:nth-child(3) { animation-delay: 0.2s;  }
.stats-bar.in-view .stat-item:nth-child(5) { animation-delay: 0.35s; }
.stats-bar.in-view .stat-item:nth-child(7) { animation-delay: 0.5s;  }

.stat-item:hover {
  background: rgba(255,255,255,0.05);
}

/* Ring pulse on hover */
.stat-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(220,38,38,0.5);
  opacity: 0;
  pointer-events: none;
}
.stat-item:hover::after {
  animation: ring-expand 0.7s ease-out forwards;
}

.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -1px;
  animation: num-glow-pulse 3s ease-in-out infinite;
  transition: transform 0.25s ease;
}

.stat-item:hover .stat-num {
  transform: translateY(-3px) scale(1.08);
  animation: none;
  text-shadow: 0 0 56px rgba(220,38,38,0.8), 0 0 20px rgba(220,38,38,0.4);
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 6px;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.stat-item:hover .stat-label {
  color: rgba(255,255,255,0.95);
  letter-spacing: 3.5px;
}

.stat-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15) 30%, rgba(255,255,255,0.15) 70%, transparent);
  flex-shrink: 0;
  align-self: stretch;
  margin: 12px 0;
}

/* ---------- ABOUT ---------- */
/* ---------- ABOUT KEYFRAMES ---------- */
/* ---------- ABOUT TRANSPORT ANIMATIONS ---------- */
@keyframes bg-truck-drive {
  0%   { transform: translateX(-160px) scaleX(1); }
  100% { transform: translateX(105vw)  scaleX(1); }
}
@keyframes bg-truck-drive-reverse {
  0%   { transform: translateX(105vw)  scaleX(-1); }
  100% { transform: translateX(-160px) scaleX(-1); }
}
@keyframes speed-line-fly {
  0%   { transform: translateX(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(110vw); opacity: 0; }
}
@keyframes route-dot-pulse {
  0%,100% { transform: scale(1);   opacity: 0.5; box-shadow: 0 0 0 0 rgba(30,52,100,0.3); }
  50%      { transform: scale(1.3); opacity: 1;   box-shadow: 0 0 0 12px rgba(30,52,100,0); }
}
@keyframes about-bg-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---------- ABOUT ---------- */
.about {
  border-top: 3px solid var(--red);
  padding: 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(196,169,108,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(196,169,108,0.08) 0%, transparent 45%),
    linear-gradient(135deg, #0a1628 0%, #0f1e3a 35%, #172B54 65%, #1E3464 100%);
  animation: none;
}

/* Moving background trucks */
.about-bg-truck {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: #C4A96C;
  animation: bg-truck-drive linear infinite;
}

.about-bg-truck-1 { width: 130px; top: 12%;   opacity: 0.35; animation-name: bg-truck-drive;         animation-duration: 14s; animation-delay: 0s;    }
.about-bg-truck-2 { width: 90px;  top: 52%;   opacity: 0.28; animation-name: bg-truck-drive-reverse; animation-duration: 20s; animation-delay: -7s;   }
.about-bg-truck-3 { width: 160px; bottom: 8%; opacity: 0.4;  animation-name: bg-truck-drive;         animation-duration: 11s; animation-delay: -4s;  }
.about-bg-truck-4 { width: 110px; top: 30%;   opacity: 0.3;  animation-name: bg-truck-drive-reverse; animation-duration: 17s; animation-delay: -10s; }
.about-bg-truck-5 { width: 75px;  bottom: 28%; opacity: 0.32; animation-name: bg-truck-drive;        animation-duration: 13s; animation-delay: -2s;  }

.about-bg-truck svg { width: 100%; height: auto; display: block; }

/* Speed streaks */
.about-speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.about-speed-lines span {
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to right, transparent, rgba(196,169,108,0.15), transparent);
  animation: speed-line-fly linear infinite;
}
.about-speed-lines span:nth-child(1) { top: 20%; width: 35%; animation-duration: 4s;  animation-delay: 0s;    }
.about-speed-lines span:nth-child(2) { top: 38%; width: 50%; animation-duration: 6s;  animation-delay: -2s;   }
.about-speed-lines span:nth-child(3) { top: 55%; width: 28%; animation-duration: 3.5s; animation-delay: -1s;  }
.about-speed-lines span:nth-child(4) { top: 70%; width: 42%; animation-duration: 5s;  animation-delay: -3s;   }
.about-speed-lines span:nth-child(5) { top: 85%; width: 32%; animation-duration: 4.5s; animation-delay: -1.5s; }

/* Route / GPS dots */
.about-route-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: none;
  z-index: 0;
  animation: route-dot-pulse 2.5s ease-in-out infinite;
}
.about-route-dot-1 { top: 25%; left: 20%;  animation-delay: 0s;    }
.about-route-dot-2 { top: 60%; left: 55%;  animation-delay: 0.8s;  }
.about-route-dot-3 { top: 40%; right: 18%; animation-delay: 1.6s;  }

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* --- Image panel --- */
.about-image-panel {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.about-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* Fleet badge */
.about-fleet-badge {
  position: absolute;
  bottom: 36px;
  left: 32px;
  z-index: 2;
  background: var(--red);
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  box-shadow: 0 8px 28px rgba(220,38,38,0.45);
}

.fleet-num {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.fleet-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/* --- About text animations --- */
@keyframes about-text-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes about-pillar-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes heading-glow {
  0%,100% { text-shadow: none; }
  50%      { text-shadow: 0 0 40px rgba(30,52,100,0.12); }
}

.about-anim {
  opacity: 0;
}
.about-content.visible .about-anim {
  animation: about-text-rise 0.65s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: var(--anim-delay, 0s);
}
.about-pillar-anim {
  opacity: 0;
}
.about-content.visible .about-pillar-anim {
  animation: about-pillar-pop 0.5s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: var(--anim-delay, 0s);
}
.about-content.visible h2 {
  animation: about-text-rise 0.65s cubic-bezier(0.22,1,0.36,1) both,
             heading-glow 3s ease-in-out infinite 1s;
  animation-delay: var(--anim-delay, 0s), 1s;
}

/* --- Content panel --- */
.about-content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.about-content .tag { margin-bottom: 16px; }

.about-content h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.about-content h2 span { color: var(--red); }

.about-content .lead {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  line-height: 1.78;
  margin-bottom: 14px;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.about-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.75;
}

/* --- Pillars --- */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,169,108,0.15);
  border-left: 3px solid var(--red);
  padding: 13px 15px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.pillar:nth-child(1) { background: rgba(196,169,108,0.13); border-left-color: #C4A96C; }
.pillar:nth-child(2) { background: rgba(91,143,201,0.15);  border-left-color: #5b8fc9; }
.pillar:nth-child(3) { background: rgba(52,211,153,0.10);  border-left-color: #34d399; }
.pillar:nth-child(4) { background: rgba(251,146,60,0.10);  border-left-color: #fb923c; }

.pillar:hover {
  background: rgba(196,169,108,0.08);
  border-color: rgba(196,169,108,0.3);
  border-left-color: var(--red);
}

.pillar-icon { font-size: 18px; flex-shrink: 0; }
.pillar strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.pillar span   { font-size: 11px; color: rgba(255,255,255,0.45); }

/* ---------- SERVICES ---------- */
.services {
  background: var(--surface);
  border-top: 4px solid var(--red);
  padding: 56px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: var(--white);
  padding: 24px 28px;
  border-left: 5px solid var(--red);
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-left-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon-wrap.primary { background: var(--red); color: #fff; }
.service-icon-wrap.dark    { background: var(--navy); color: #fff; }

.service-card-body { flex: 1; }

.service-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.service-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  transition: gap 0.2s;
}
.service-link:hover { gap: 8px; }

/* ---------- WHY CHOOSE US ---------- */
/* ---------- WHY KEYFRAMES ---------- */
@keyframes blob-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(40px, -30px) scale(1.08); }
  70%       { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes blob-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%       { transform: translate(-50px, 20px) scale(1.06); }
  65%       { transform: translate(30px, -25px) scale(0.96); }
}
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes icon-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes border-top-glow {
  0%, 100% { box-shadow: 0 -4px 0 var(--red) inset; }
  50%       { box-shadow: 0 -4px 16px rgba(220,38,38,0.8) inset, 0 0 20px rgba(220,38,38,0.25); }
}
@keyframes scan-line {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ---------- WHY SECTION ---------- */
.why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Animated background blobs */
.why::before,
.why::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.why::before {
  width: 700px;
  height: 700px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(196,169,108,0.18) 0%, rgba(196,169,108,0.06) 45%, transparent 70%);
  animation: blob-drift-a 12s ease-in-out infinite;
}
.why::after {
  width: 600px;
  height: 600px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(220,38,38,0.12) 0%, rgba(220,38,38,0.04) 45%, transparent 70%);
  animation: blob-drift-b 15s ease-in-out infinite;
}

/* Horizontal speed streaks */
.why-streaks {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.why-streaks span {
  position: absolute;
  height: 1px;
  left: -350px;
  border-radius: 1px;
  animation: why-streak linear infinite;
}
.why-streaks span:nth-child(1) { width: 200px; top: 11%; animation-duration: 6s;   animation-delay: 0s;    background: linear-gradient(to right, transparent, rgba(196,169,108,0.55), transparent); }
.why-streaks span:nth-child(2) { width: 120px; top: 27%; animation-duration: 9s;   animation-delay: 1.4s;  background: linear-gradient(to right, transparent, rgba(196,169,108,0.35), transparent); }
.why-streaks span:nth-child(3) { width: 290px; top: 41%; animation-duration: 7s;   animation-delay: 3.6s;  background: linear-gradient(to right, transparent, rgba(196,169,108,0.45), transparent); }
.why-streaks span:nth-child(4) { width: 85px;  top: 56%; animation-duration: 5s;   animation-delay: 0.7s;  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }
.why-streaks span:nth-child(5) { width: 230px; top: 70%; animation-duration: 8s;   animation-delay: 2.2s;  background: linear-gradient(to right, transparent, rgba(196,169,108,0.4), transparent); }
.why-streaks span:nth-child(6) { width: 160px; top: 19%; animation-duration: 11s;  animation-delay: 5s;    background: linear-gradient(to right, transparent, rgba(196,169,108,0.3), transparent); }
.why-streaks span:nth-child(7) { width: 340px; top: 83%; animation-duration: 6.5s; animation-delay: 1.8s;  background: linear-gradient(to right, transparent, rgba(196,169,108,0.5), transparent); }
.why-streaks span:nth-child(8) { width: 105px; top: 34%; animation-duration: 10s;  animation-delay: 5.5s;  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent); }
@keyframes why-streak {
  0%   { transform: translateX(0);                   opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateX(calc(100vw + 380px)); opacity: 0; }
}

/* Moving scan line */
.why .why-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,169,108,0.3), transparent);
  animation: scan-line 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.why .container { position: relative; z-index: 2; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 4px solid var(--red);
  border-radius: 0;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  animation: border-top-glow 4s ease-in-out infinite;
}

/* stagger the glow pulse so cards feel independent */
.why-card:nth-child(1) { animation-delay: 0s;    }
.why-card:nth-child(2) { animation-delay: 1s;    }
.why-card:nth-child(3) { animation-delay: 2s;    }
.why-card:nth-child(4) { animation-delay: 3s;    }

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,169,108,0.05) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.why-card:hover {
  background: rgba(196,169,108,0.07);
  border-top-color: #E8CB8A;
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(196,169,108,0.15);
  animation: none;
}
.why-card:hover::before { opacity: 1; }

.why-number {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: color 0.35s ease;
}
.why-card:hover .why-number { color: rgba(196,169,108,0.12); }

.why-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(196,169,108,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

/* staggered float per card */
.why-card:nth-child(1) .why-icon-wrap { animation: icon-float 3.5s ease-in-out infinite 0s;    }
.why-card:nth-child(2) .why-icon-wrap { animation: icon-float 3.5s ease-in-out infinite 0.6s;  }
.why-card:nth-child(3) .why-icon-wrap { animation: icon-float 3.5s ease-in-out infinite 1.2s;  }
.why-card:nth-child(4) .why-icon-wrap { animation: icon-float 3.5s ease-in-out infinite 1.8s;  }

.why-card:hover .why-icon-wrap {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 24px rgba(220,38,38,0.5);
  animation: none;
}
.why-card:hover .why-icon-wrap svg {
  animation: icon-spin 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.why-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.why-card p  { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.why-read-more { display: none; }

/* ---------- DRIVERS ---------- */
.drivers { background: var(--white); border-top: 4px solid var(--red); position: relative; overflow: hidden; }
.drivers .container { position: relative; z-index: 1; }

/* Road dashes */
.drivers-bg-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px, var(--red) 28px,
    transparent 28px, transparent 56px
  );
  background-size: 56px 100%;
  opacity: 0.12;
  animation: driver-road-scroll 1.2s linear infinite;
  pointer-events: none;
}
@keyframes driver-road-scroll {
  from { background-position: 0 0; }
  to   { background-position: 56px 0; }
}

/* Truck silhouettes */
.drivers-bg-trucks { position: absolute; inset: 0; pointer-events: none; }
.drivers-bg-trucks span {
  position: absolute;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='50' viewBox='0 0 110 50'%3E%3Crect x='0' y='10' width='70' height='28' rx='2' fill='%231E3464'/%3E%3Crect x='2' y='13' width='66' height='4' rx='1' fill='%23C4A96C'/%3E%3Crect x='70' y='16' width='30' height='22' rx='2' fill='%23172B54'/%3E%3Crect x='72' y='18' width='14' height='10' rx='1' fill='%235b8fc9'/%3E%3Ccircle cx='14' cy='40' r='7' fill='%231E3464'/%3E%3Ccircle cx='28' cy='40' r='7' fill='%231E3464'/%3E%3Ccircle cx='86' cy='40' r='7' fill='%231E3464'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.drivers-bg-trucks span:nth-child(1) { width: 110px; height: 50px; top: 14%; opacity: 0.07; animation: driver-truck-ride 20s linear infinite; animation-delay: 0s; }
.drivers-bg-trucks span:nth-child(2) { width: 85px;  height: 38px; top: 52%; opacity: 0.05; animation: driver-truck-ride 28s linear infinite; animation-delay: -9s; }
.drivers-bg-trucks span:nth-child(3) { width: 130px; height: 59px; top: 76%; opacity: 0.06; animation: driver-truck-ride 22s linear infinite; animation-delay: -14s; }
@keyframes driver-truck-ride {
  0%   { transform: translateX(-180px); }
  100% { transform: translateX(calc(100vw + 180px)); }
}

/* Floating dots */
.drivers-bg-dots { position: absolute; inset: 0; pointer-events: none; }
.drivers-bg-dots span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #C4A96C;
  animation: driver-dot-float 3.5s ease-in-out infinite;
}
.drivers-bg-dots span:nth-child(1) { width: 8px;  height: 8px;  top: 10%; left: 6%;  opacity: 0.2;  animation-delay: 0s; }
.drivers-bg-dots span:nth-child(2) { width: 6px;  height: 6px;  top: 60%; left: 91%; opacity: 0.15; animation-delay: -1.3s; }
.drivers-bg-dots span:nth-child(3) { width: 10px; height: 10px; top: 38%; left: 78%; opacity: 0.12; animation-delay: -0.7s; }
.drivers-bg-dots span:nth-child(4) { width: 5px;  height: 5px;  top: 82%; left: 32%; opacity: 0.18; animation-delay: -2.1s; }
@keyframes driver-dot-float {
  0%, 100% { transform: scale(1);   opacity: 0.15; }
  50%       { transform: scale(1.7); opacity: 0.32; }
}

.driver-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

/* Benefits Panel */
.driver-benefits-panel {
  background: var(--navy);
  border-radius: 0;
  border-top: 4px solid var(--red);
  padding: 40px 36px;
  position: sticky;
  top: 96px;
  overflow: hidden;
}
.driver-benefits-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196,169,108,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.panel-header { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.panel-icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.panel-header h3 { font-size: 20px; font-weight: 800; color: #fff; }

.benefits-list { display: flex; flex-direction: column; gap: 20px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 14px; }
.benefit-check {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--dark);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefits-list li strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.benefits-list li span { font-size: 13px; color: rgba(255,255,255,0.5); }

.driver-cta-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Driver Form Panel */
.driver-form-panel {
  background: var(--white);
  border-radius: 0;
  padding: 44px;
  border: none;
  border-left: 6px solid var(--red);
  border-bottom: 3px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-panel-header { margin-bottom: 32px; }
.form-panel-header h3 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.form-panel-header p { font-size: 14px; color: var(--muted); }

/* Form Section Labels */
.form-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--red-soft);
}
.form-section-label:first-of-type { margin-top: 0; }

/* Form Fields */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.field:last-of-type { margin-bottom: 0; }

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.2px;
}
.req { color: var(--red); }

.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input.error { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,0.1); }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.field textarea { resize: vertical; min-height: 80px; }

/* Checkboxes */
.check-group { display: flex; gap: 12px; flex-wrap: wrap; padding: 4px 0; }
.check-group.error { outline: 2px solid #C4A96C; border-radius: 8px; padding: 8px; }
.check-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
  user-select: none;
}
.check-option:hover { border-color: var(--red); background: var(--red-soft); }
.check-option input[type="checkbox"] { display: none; }
.check-option input:checked + span { color: var(--red); }
.check-option:has(input:checked) { border-color: var(--red); background: var(--red-soft); }
.check-option span { font-size: 14px; font-weight: 600; color: var(--dark); }

/* File Upload */
.file-upload-wrap { position: relative; }
.file-upload-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.file-upload-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 20px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  background: var(--surface);
  color: var(--muted);
}
.file-upload-wrap:hover .file-upload-ui { border-color: var(--red); background: var(--red-soft); color: var(--red); }
.file-upload-ui span { font-size: 14px; font-weight: 600; }
.file-upload-ui small { font-size: 12px; }

/* Form Note & Success */
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.success-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ecfdf5;
  border: 1.5px solid #6ee7b7;
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.hidden { display: none !important; }

.error-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

/* ---- SUCCESS TOAST POPUP ---- */
.toast-popup {
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-left: 5px solid #16a34a;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 18px 24px;
  min-width: 320px;
  max-width: 520px;
  width: calc(100vw - 40px);
  transition: top 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.toast-popup.show {
  top: 24px;
}
.toast-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}
.toast-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.toast-body strong {
  font-size: 15px;
  font-weight: 700;
  color: #14532d;
  line-height: 1.2;
}
.toast-body span {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.4;
}
.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #9ca3af;
  line-height: 1;
  padding: 0 0 0 8px;
  transition: color 0.2s;
}
.toast-close:hover { color: #374151; }

/* SweetAlert2 overrides */
.swal2-title { color: #1A2E54 !important; font-size: 22px !important; }
.swal2-popup  { border-radius: 16px !important; padding: 40px 32px !important; }
.swal2-icon.swal2-success { border-color: #C4A96C !important; }
.swal2-icon.swal2-success [class^=swal2-success-line] { background: #C4A96C !important; }
.swal2-icon.swal2-success .swal2-success-ring { border-color: rgba(196,169,108,.3) !important; }
.toast-popup.toast-error { border-left-color: #dc2626; }
.toast-popup.toast-error .toast-icon { background: #fee2e2; color: #dc2626; }
.toast-popup.toast-error .toast-body strong { color: #7f1d1d; }

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

button:disabled { opacity: 0.75; cursor: not-allowed; transform: none !important; }

/* ---------- QUOTE SECTION ---------- */
.quote-section {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 80% 80%, rgba(196,169,108,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 20%, rgba(91,143,201,0.12) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

/* Dot grid overlay */
.quote-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,169,108,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
  animation: quote-grid-shift 12s ease-in-out infinite;
}
@keyframes quote-grid-shift {
  0%,100% { opacity: 0.5; transform: translateY(0); }
  50%      { opacity: 0.9; transform: translateY(-10px); }
}

/* Diagonal speed streaks */
.quote-bg-streaks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.quote-bg-streaks span {
  position: absolute;
  height: 1px;
  border-radius: 2px;
  background: linear-gradient(to right, transparent, rgba(196,169,108,0.5), transparent);
  animation: quote-streak linear infinite;
}
.quote-bg-streaks span:nth-child(1) { top: 15%; width: 40%; animation-duration: 5s;  animation-delay: 0s;    }
.quote-bg-streaks span:nth-child(2) { top: 32%; width: 25%; animation-duration: 7s;  animation-delay: -2s;   }
.quote-bg-streaks span:nth-child(3) { top: 50%; width: 55%; animation-duration: 4.5s; animation-delay: -1s;  }
.quote-bg-streaks span:nth-child(4) { top: 65%; width: 30%; animation-duration: 6s;  animation-delay: -3.5s; }
.quote-bg-streaks span:nth-child(5) { top: 80%; width: 45%; animation-duration: 5.5s; animation-delay: -0.5s;}
.quote-bg-streaks span:nth-child(6) { top: 90%; width: 20%; animation-duration: 8s;  animation-delay: -4s;   }
@keyframes quote-streak {
  0%   { transform: translateX(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(110vw); opacity: 0; }
}

/* Pulsing GPS dots */
.quote-bg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.quote-bg-dots span {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  animation: quote-dot-pulse 3s ease-in-out infinite;
}
.quote-bg-dots span:nth-child(1) { width: 8px;  height: 8px;  top: 20%; left: 8%;   animation-delay: 0s;    }
.quote-bg-dots span:nth-child(2) { width: 6px;  height: 6px;  top: 55%; left: 92%;  animation-delay: 0.8s;  }
.quote-bg-dots span:nth-child(3) { width: 10px; height: 10px; top: 75%; left: 18%;  animation-delay: 1.6s;  }
.quote-bg-dots span:nth-child(4) { width: 5px;  height: 5px;  top: 35%; left: 75%;  animation-delay: 0.4s;  }
.quote-bg-dots span:nth-child(5) { width: 7px;  height: 7px;  top: 88%; left: 55%;  animation-delay: 1.2s;  }
@keyframes quote-dot-pulse {
  0%,100% { transform: scale(1);   opacity: 0.4; box-shadow: 0 0 0 0 rgba(196,169,108,0.4); }
  50%      { transform: scale(1.4); opacity: 1;   box-shadow: 0 0 0 10px rgba(196,169,108,0); }
}

/* Radar sweep */
.quote-bg-radar {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,108,0.08);
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.quote-bg-radar::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,108,0.06);
}
.quote-bg-radar::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 2px;
  background: linear-gradient(to right, rgba(196,169,108,0.6), transparent);
  transform-origin: left center;
  animation: radar-spin 6s linear infinite;
}
@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Keep content above bg elements */
.quote-section .container { position: relative; z-index: 1; }

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.quote-info .tag { margin-bottom: 16px; }
.quote-info h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.quote-info > p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 40px; }

.quote-perks { display: flex; flex-direction: column; gap: 20px; }
.perk { display: flex; align-items: center; gap: 16px; }
.perk-icon { font-size: 28px; width: 52px; text-align: center; flex-shrink: 0; }
.perk strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.perk span { font-size: 13px; color: rgba(255,255,255,0.5); }

.quote-form-panel {
  background: var(--white);
  border-radius: 0;
  border-left: 6px solid var(--red);
  border-bottom: 3px solid rgba(196,169,108,0.3);
  padding: 48px 44px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

/* ---------- CONTACT ---------- */
/* ---------- CONTACT ---------- */
.contact-section {
  background: var(--white);
  border-top: 4px solid var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 4px;
}

.contact-card strong {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.contact-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.contact-card a:hover { color: var(--red); }

.contact-card span {
  font-size: 13px;
  color: var(--dark);
  font-weight: 500;
}

.contact-note {
  font-size: 11px !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
}

.social-row { display: flex; gap: 8px; }
.social-btn {
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  border: 1.5px solid transparent;
  letter-spacing: 0.5px;
}
.social-btn.facebook { background: #1877f2; color: #fff; }
.social-btn.facebook:hover { background: #1558b0; }
.social-btn.linkedin { background: #0077b5; color: #fff; }
.social-btn.linkedin:hover { background: #005f8e; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy); padding: 80px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 2px solid var(--red);
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 0;
}

.footer-dot-mc {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.footer-dot-mc strong {
  color: var(--red);
  font-weight: 700;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--red); }
.footer-col ul li:not(:has(a)) { font-size: 14px; color: rgba(255,255,255,0.4); }

.footer-contact-list li {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.footer-contact-list svg { color: rgba(255,255,255,0.3); flex-shrink: 0; }
.footer-contact-list a, .footer-contact-list span {
  font-size: 14px;
  color: rgba(255,255,255,0.55) !important;
}
.footer-contact-list a:hover { color: var(--red) !important; }

.footer-bottom { padding: 24px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }


/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196,169,108,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }

.visible.reveal, .visible.reveal-left, .visible.reveal-right {
  opacity: 1;
  transform: translate(0);
}

/* Stagger delays for grid children */
.why-card:nth-child(1) { transition-delay: 0s; }
.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.12s; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- Tablet landscape --- */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .driver-layout { grid-template-columns: 1fr; gap: 20px; }
  .driver-benefits-panel {
    position: static;
    padding: 18px 16px;
    border-top-width: 3px;
  }
  .driver-benefits-panel::before { display: none; }
  .panel-header { margin-bottom: 12px; gap: 10px; }
  .panel-icon { width: 32px; height: 32px; border-radius: 6px; }
  .panel-icon svg { width: 16px; height: 16px; }
  .panel-header h3 { font-size: 14px; }
  .benefits-list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    position: relative;
    padding-left: 0;
  }
  .benefits-list::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 24px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(196,169,108,0.6), rgba(196,169,108,0.05));
    pointer-events: none;
  }
  .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0 0 14px;
    background: none;
    border: none;
    border-radius: 0;
    flex: none;
    position: relative;
  }
  .benefits-list li:last-child { padding-bottom: 0; }
  .benefit-check {
    width: 22px; height: 22px; min-width: 22px;
    font-size: 11px;
    border-radius: 50%;
    background: #172B54;
    border: 1.5px solid #C4A96C;
    color: #C4A96C;
    flex-shrink: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .benefits-list li strong { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; display: block; }
  .benefits-list li span { display: block; font-size: 10px; color: rgba(255,255,255,0.45); line-height: 1.4; }
  .driver-cta-note { margin-top: 12px; padding-top: 12px; font-size: 10px; }
  .driver-cta-note svg { width: 14px; height: 14px; flex-shrink: 0; }
  .quote-layout { gap: 48px; }
}

/* --- Tablet portrait --- */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-image-panel { padding: 16px; }
  .about-content { padding: 52px 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 14px;
    border-left: none;
    border-top: 4px solid var(--red);
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  }
  .service-card:hover { transform: translateY(-3px); }
  .service-icon-wrap { width: 44px; height: 44px; }
  .service-card h3 { font-size: 13px; margin-bottom: 6px; }
  .service-card p { font-size: 11px; margin-bottom: 8px; }
  .service-link { font-size: 11px; justify-content: center; }
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  }
  .contact-card {
    flex-direction: row;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
    align-items: center;
    border-top: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
  }
  .contact-card:last-child { border-bottom: none; }
  .contact-card-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .contact-card-icon svg { width: 15px; height: 15px; }
  .contact-card-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
  .contact-card strong { font-size: 10px; letter-spacing: 0.5px; }
  .contact-card a { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .contact-card span { font-size: 12px; }
  .contact-note { font-size: 10px !important; }
  .quote-layout { grid-template-columns: 1fr; gap: 20px; }
  .quote-info { text-align: center; }
  .quote-info .tag { margin-bottom: 8px; }
  .quote-info h2 { font-size: 22px; letter-spacing: -1px; margin-bottom: 8px; }
  .quote-info > p { font-size: 13px; margin-bottom: 16px; line-height: 1.5; }
  .quote-perks { flex-direction: row; justify-content: center; gap: 10px; flex-wrap: wrap; max-width: 100%; margin: 0; }
  .perk { flex-direction: column; align-items: center; text-align: center; gap: 4px; flex: 1; min-width: 80px; }
  .perk-icon { font-size: 20px; width: auto; }
  .perk strong { font-size: 11px; }
  .perk span { font-size: 10px; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 18px 24px; }

  /* Hero */
  .hero-credential-strip { flex-wrap: nowrap; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }

  /* Header */
  #nav { display: none; }
  .header-phone, .header-actions .btn-primary { display: none; }
  .header-actions .btn-ghost { font-size: 12px; padding: 7px 12px; }
  .hamburger { display: flex; }
  .header-inner { gap: 0; }

  /* ===== MOBILE HERO ===== */
  .hero-img-frame { aspect-ratio: unset; min-height: 560px; background-color: #0a1628; }
  .hero-img-slide { background-size: cover; background-position: center center; background-color: #0a1628; }
  .hero-content { padding-top: 16px; padding-bottom: 24px; }
  .hero-title { font-size: 28px; letter-spacing: -1px; }
  .hero-br { display: block; }
  .hero-desc { font-size: 15px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: row; gap: 8px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .hero-ctas .btn-xl { padding: 10px 12px; font-size: 12px; }
  .hero-ctas .btn svg { display: none; }
  .hero-eyebrow { margin-bottom: 10px; }
  .hero-scroll { display: none; }
  .hero-credential-strip { flex-wrap: nowrap; width: auto; padding: 8px 12px; margin-top: 20px; }
  .hcs-item { padding: 0 10px; gap: 1px; }
  .hcs-item:first-child { padding-left: 0; }
  .hcs-label { font-size: 7px; letter-spacing: 1px; }
  .hcs-val { font-size: 11px; }
  .hcs-sep { height: 24px; }

  /* Stats bar — single row */
  .stats-inner { flex-wrap: nowrap; justify-content: space-between; gap: 0; }
  .stat-item { width: auto; flex: 1; padding: 14px 4px; position: relative; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:last-child { border-right: none; }
  .stat-divider { display: none; }
  .stat-num { font-size: 17px; letter-spacing: 0; }
  .stat-label { font-size: 7px; letter-spacing: 1px; }
  .stat-item { padding: 16px 10px; }

  /* About */
  .about-bg-truck { z-index: 2; }
  .about-bg-truck-1 { width: 100px; top: 5%;    opacity: 0.35; animation-duration: 10s; }
  .about-bg-truck-2 { width: 70px;  top: 48%;   opacity: 0.28; animation-duration: 14s; }
  .about-bg-truck-3 { width: 120px; bottom: 4%; opacity: 0.38; animation-duration: 8s;  }
  .about-bg-truck-4 { width: 85px;  top: 28%;   opacity: 0.32; animation-duration: 12s; }
  .about-bg-truck-5 { width: 60px;  bottom: 22%; opacity: 0.3; animation-duration: 9s; }
  .about-speed-lines span { height: 1px; }
  .about-route-dot { width: 7px; height: 7px; }
  .about-pillars { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pillar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 10px;
    border-left: none;
    border-top: 3px solid var(--red);
    border-radius: 4px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.25);
  }
  .pillar:nth-child(1) { border-top-color: #C4A96C; background: rgba(196,169,108,0.13); }
  .pillar:nth-child(2) { border-top-color: #5b8fc9; background: rgba(91,143,201,0.15);  }
  .pillar:nth-child(3) { border-top-color: #34d399; background: rgba(52,211,153,0.10);  }
  .pillar:nth-child(4) { border-top-color: #fb923c; background: rgba(251,146,60,0.10);  }
  .pillar-icon { font-size: 22px; }
  .pillar strong { font-size: 12px; }
  .pillar span { font-size: 10px; }
  .about-fleet-badge { padding: 8px 14px; bottom: 16px; left: 16px; }
  .fleet-num { font-size: 18px; }
  .fleet-label { font-size: 7px; letter-spacing: 1.5px; }
  .about-content { padding: 40px 20px; }

  /* Driver form */
  .driver-form-panel { padding: 28px 20px; }
  .form-row-2 { grid-template-columns: 1fr 1fr; gap: 8px; }
  .form-row-2 .field { margin-bottom: 12px; }
  .form-row-2 input, .form-row-2 select { font-size: 13px; padding: 9px 10px; }

  /* Quote */
  .quote-form-panel { padding: 20px 16px; border-left-width: 4px; }


  /* Footer */
  .footer { padding: 32px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px 10px; }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .logo { margin-bottom: 0; }
  .footer-brand > p { display: none; }
  .footer-badges { gap: 6px; }
  .footer-badges .badge { font-size: 9px; padding: 3px 8px; }
  .footer-dot-mc { margin-top: 0; gap: 12px; }
  .footer-dot-mc span { font-size: 10px; }
  .footer-col-links    { order: 1; }
  .footer-col-services { order: 2; }
  .footer-col-contact  { order: 3; }
  .footer-col {
    text-align: center;
    padding: 12px 6px 14px;
  }
  .footer-col-links, .footer-col-contact, .footer-col-services { border-top: none; }
  .footer-col h4 {
    font-size: 7px; letter-spacing: 1.8px; margin-bottom: 10px;
    color: rgba(255,255,255,0.4);
  }
  .footer-col ul { gap: 5px; align-items: center; }
  .footer-col ul li a { font-size: 10px; color: rgba(255,255,255,0.65); }
  .footer-contact-list { align-items: center; gap: 8px; }
  .footer-contact-list li { flex-direction: column; align-items: center; gap: 2px; }
  .footer-contact-list svg { display: none; }
  .footer-contact-list a {
    font-size: 10px; color: rgba(255,255,255,0.7);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 90px; display: block;
  }
  .footer-contact-list span { font-size: 9px; color: rgba(255,255,255,0.4); }
  .footer-bottom { padding: 14px 0; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 2px; }
  .footer-bottom p { font-size: 11px; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }

  /* Font reductions */
  .section-head { margin: 0 auto 32px; padding: 0 4px; }
  .section-head h2, .section-head-light h2 { font-size: 20px; letter-spacing: -0.5px; margin: 8px 0 10px; line-height: 1.2; }
  .section-head p { font-size: 13px; line-height: 1.5; }
  .tag { font-size: 9px; letter-spacing: 2px; gap: 6px; }
  .tag::before { width: 18px; height: 2px; }
  .section { padding: 52px 0; }

  /* Why grid → 2×2 professional cards */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  .why-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 14px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border-left: none;
    border-top: none;
    border-bottom: 2px solid rgba(196,169,108,0.25);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  .why-card:nth-child(1) { border-bottom-color: rgba(196,80,80,0.5); }
  .why-card:nth-child(2) { border-bottom-color: rgba(91,143,201,0.5); }
  .why-card:nth-child(3) { border-bottom-color: rgba(52,211,153,0.5); }
  .why-card:nth-child(4) { border-bottom-color: rgba(196,169,108,0.5); }
  .why-number {
    position: absolute;
    top: 8px; right: 10px;
    font-size: 28px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0;
  }
  .why-icon-wrap {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(196,169,108,0.12);
    margin-bottom: 10px;
    grid-column: unset;
    grid-row: unset;
    align-self: unset;
  }
  .why-icon-wrap svg { width: 20px; height: 20px; }
  .why-card h3 {
    grid-column: unset;
    grid-row: unset;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    line-height: 1.25;
  }
  .why-card-text {
    display: block;
    grid-column: unset;
    grid-row: unset;
    font-size: 10px;
    color: rgba(255,255,255,0.42);
    line-height: 1.5;
    margin: 0;
  }
  .why-card-text.open { display: block; }
  .why-read-more { display: none; }
}

/* --- Small mobile --- */
@media (max-width: 480px) {
  .hero-title { font-size: 26px; letter-spacing: -1px; }
  .hero-inner { padding: 32px 16px 24px; }
  .btn-xl { padding: 15px 24px; font-size: 15px; }
  .service-card { padding: 20px 18px; gap: 14px; }
  .why-card { padding: 14px 12px 12px; }
  .why-card h3 { font-size: 12px; }
  .why-card-text { font-size: 9px; }
  .driver-form-panel { padding: 24px 16px; }
  .quote-form-panel { padding: 24px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 8px 6px; }
  .footer-col { padding: 8px 4px 10px; }
  .footer-col h4 { font-size: 6px; letter-spacing: 1.5px; margin-bottom: 8px; }
  .footer-col ul li a { font-size: 9px; }
  .footer-contact-list a { font-size: 9px; max-width: 76px; }
  .footer-contact-list span { font-size: 8px; }
  .toast-popup { top: auto; bottom: -120px; transition: bottom 0.45s cubic-bezier(0.34,1.56,0.64,1); padding: 14px 16px; gap: 12px; }
  .toast-popup.show { top: auto; bottom: 20px; }
  .section-head { margin-bottom: 40px; }
  .check-group { flex-direction: row; flex-wrap: nowrap; gap: 6px; }
  .check-option { flex: 1; justify-content: center; }
  .check-option span { font-size: 12px; }
  .file-upload-ui { padding: 14px 12px; gap: 4px; flex-direction: row; justify-content: center; }
  .file-upload-ui svg { width: 16px; height: 16px; flex-shrink: 0; }
  .file-upload-ui span { font-size: 12px; }
  .file-upload-ui small { display: none; }
  #driverForm .btn-full { margin-top: 20px; }
}
