/* ============================================================
   FSG Logistics - style.css
   Premium Truck Dispatch Company Website — Cinematic Redesign
   ============================================================ */

:root {
  --blue:         #0E66C7;
  --blue-dark:    #0a4f9e;
  --blue-light:   #1a7de0;
  --orange:       #F57C00;
  --orange-light: #FF9800;
  --dark:         #1A1A1A;
  --gray-700:     #374151;
  --gray-500:     #6B7280;
  --gray-300:     #D1D5DB;
  --gray-100:     #F3F4F6;
  --light:        #F8F9FB;
  --white:        #FFFFFF;

  --hero-1:       #05070f;
  --hero-2:       #0a1f3d;
  --hero-3:       #0a4f9e;

  --glass-bg:     rgba(15, 20, 33, .55);
  --glass-bg-strong: rgba(10, 14, 26, .78);
  --glass-border: rgba(255, 255, 255, .1);

  --nav-dark:          rgba(18, 18, 20, .55);
  --nav-dark-scrolled: rgba(12, 12, 14, .82);
  --radius-nav:       20px;
  --radius-nav-inner: 12px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.14);
  --shadow-blue: 0 8px 30px rgba(14,102,199,.25);
  --shadow-orange: 0 8px 26px rgba(245,124,0,.3);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   30px;
  --radius-pill: 999px;

  --ease:        cubic-bezier(.4,0,.2,1);
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
  --font-head:   'Barlow', sans-serif;
  --font-body:   'Inter', sans-serif;

  --nav-gap: 22px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { display: block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* ---------- Utility Classes ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; }
.section-tag {
  display: inline-block;
  background: rgba(14,102,199,.08);
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-title  { color: var(--dark); margin-bottom: 16px; }
.section-lead   { font-size: 1.05rem; color: var(--gray-500); max-width: 620px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-lead { margin: 0 auto; }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.bg-light    { background: var(--light); }
.bg-dark     { background: var(--dark); }

/* Angled section dividers */
.clip-top    { clip-path: polygon(0 46px, 100% 0, 100% 100%, 0 100%); padding-top: 140px; }
.clip-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), 0 100%); padding-bottom: 140px; }
.clip-both   { clip-path: polygon(0 46px, 100% 0, 100% calc(100% - 46px), 0 100%); padding-top: 140px; padding-bottom: 140px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: none;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245,124,0,.35);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(245,124,0,.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px) scale(1.03);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px) scale(1.03);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(14,102,199,.4);
}

/* ============================================================
   NAVBAR — full-width sticky bar, solid on scroll
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
#navbar.scrolled {
  background: rgba(8, 11, 20, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.nav-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: padding .4s var(--ease);
}
#navbar.scrolled .nav-shell { padding: 12px 24px; }

.nav-logo-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 6px 4px;
  /* #navbar is position:fixed, which creates its own stacking context — mix-blend-mode
     can only blend with paint inside that same context, not the page behind it. So we
     give the badge its own dark backdrop (matching the hero tone) for the logo to blend
     against locally, instead of relying on whatever happens to be behind the navbar. */
  background: #05070f;
  border-radius: 10px;
  transition: var(--transition);
}
.nav-logo-badge:hover { transform: translateY(-2px) scale(1.03); }
.nav-logo-badge img {
  height: 46px;
  width: auto;
  mix-blend-mode: screen; /* the source PNG has a solid black backing; screen blend drops the black so only the artwork shows */
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-icon-circle {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-phone {
  display: none;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-phone .nav-icon-circle { background: rgba(255,255,255,.12); color: var(--white); }
.nav-phone:hover { color: var(--white); }
@media (min-width: 1150px) { .nav-phone { display: inline-flex; } }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 12px 10px 12px 24px;
  font-size: .88rem;
}
.nav-cta .nav-icon-circle { background: rgba(255,255,255,.25); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  cursor: pointer;
  background: var(--nav-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  backdrop-filter: blur(18px);
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

/* Mobile full-screen overlay menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #060a16 0%, #0a1f3d 100%);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .btn { margin-top: 20px; padding: 16px 40px; font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 40px;
  background:
    radial-gradient(ellipse 900px 600px at 85% 15%, rgba(14,102,199,.4), transparent 60%),
    linear-gradient(160deg, rgba(5,7,15,.94) 0%, rgba(10,31,61,.88) 55%, rgba(5,7,15,.96) 100%),
    url('../assets/73979.jpg') center 30%/cover no-repeat;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 40%, transparent 90%);
  animation: gridDrift 26s linear infinite;
}
@keyframes gridDrift {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 46px 92px, 46px 92px; }
}
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.5) 1.4px, transparent 1.4px),
    radial-gradient(rgba(245,124,0,.5) 1.4px, transparent 1.4px);
  background-size: 140px 140px, 190px 190px;
  background-position: 0 0, 70px 60px;
  opacity: .5;
  animation: particleDrift 40s linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(-140px,-140px); }
}

/* .hero is display:flex, so .container (its only in-flow child) would otherwise
   shrink-wrap to content width and self-center via its own auto margins instead
   of filling out to max-width — width:100% forces it to actually fill the row. */
.hero .container { max-width: 1320px; width: 100%; }
.hero-container {
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,124,0,.14);
  border: 1px solid rgba(245,124,0,.4);
  color: #FFB74D;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero h1 { color: var(--white); margin-bottom: 26px; font-size: clamp(2.2rem,4.6vw,3.6rem); }
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.hero-stat {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
}
.hero-stat:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.62);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px;
}
.hero-stat .num .accent { color: var(--orange); }

/* ============================================================
   WHY CHOOSE SECTION — dark glass
   ============================================================ */
.why-section {
  background: linear-gradient(160deg, #070b16 0%, #0a1c34 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .5;
}
.why-section .container { position: relative; z-index: 1; }
.why-section .section-tag { background: rgba(255,255,255,.08); color: #7fb4ef; }
.why-section .section-title { color: var(--white); }
.why-section .section-lead { color: rgba(255,255,255,.55); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 3px solid rgba(14,102,199,.5);
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14,102,199,.28);
  border-color: rgba(14,102,199,.4);
  background: rgba(255,255,255,.06);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-6deg); }
.feature-card h4 { font-size: .95rem; color: var(--white); margin-bottom: 8px; }
.feature-card p  { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.55; }

/* Plain-background variant (used on About page) */
.features-grid.on-light .feature-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
}
.features-grid.on-light .feature-card:hover { box-shadow: var(--shadow-lg); background: var(--white); }
.features-grid.on-light .feature-icon { background: linear-gradient(135deg, rgba(14,102,199,.12), rgba(14,102,199,.06)); }
.features-grid.on-light .feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.features-grid.on-light .feature-card h4 { color: var(--dark); }
.features-grid.on-light .feature-card p  { color: var(--gray-500); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section-wrap { position: relative; overflow: hidden; }
.services-section-wrap .container { position: relative; z-index: 1; }
.services-bg-truck {
  position: absolute;
  top: 0; right: -4%; bottom: 0;
  width: 56%;
  background: url('../assets/services-truck-glow.jpg') center/cover no-repeat;
  opacity: .16;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, #000 45%, transparent 100%);
  mask-image: linear-gradient(to left, #000 45%, transparent 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px,1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 22px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light) 60%, var(--orange));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover h4,
.service-card:hover p,
.service-card:hover .service-arrow { color: var(--white); }
.service-icon {
  width: 58px; height: 58px;
  background: rgba(14,102,199,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(255,255,255,.18); animation: iconBounce .4s var(--ease); }
@keyframes iconBounce { 0%,100% { transform: translateY(0); } 40% { transform: translateY(-6px); } 70% { transform: translateY(2px); } }
.service-card h4 { font-size: .95rem; color: var(--dark); margin-bottom: 8px; transition: var(--transition); }
.service-card p  { font-size: .8rem; color: var(--gray-500); line-height: 1.45; transition: var(--transition); margin-bottom: 14px; }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: all .3s var(--ease);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   PROCESS SECTION — timeline
   ============================================================ */
.process-section { background: var(--light); position: relative; }
.process-row { position: relative; margin-bottom: 20px; }
.process-row:last-child { margin-bottom: 0; }
.process-line {
  position: absolute;
  top: 36px; left: 60px;
  width: calc(100% - 120px);
  height: 30px;
  overflow: visible;
  z-index: 0;
}
.process-line path {
  fill: none;
  stroke: #F57C00;
  stroke-width: 2;
  stroke-dasharray: 6,4;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  position: relative;
}
.process-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 16px;
}
.process-row:nth-child(odd) .process-card:nth-child(2n) { transform: translateY(16px); }
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
  transition: background .45s var(--ease), color .45s var(--ease), transform .3s var(--ease);
}
.process-card:nth-child(1) .process-num { transition-delay: 0s; }
.process-card:nth-child(2) .process-num { transition-delay: .15s; }
.process-card:nth-child(3) .process-num { transition-delay: .3s; }
.process-card:nth-child(4) .process-num { transition-delay: .45s; }
.process-row.visible .process-num { background: var(--blue); color: var(--white); }
.process-card:hover .process-num {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.12);
}
.process-card h4  { font-size: .95rem; color: var(--dark); margin-bottom: 8px; }
.process-card p   { font-size: .8rem; color: var(--gray-500); line-height: 1.5; }
.process-icon { font-size: 1.3rem; margin-bottom: 8px; }

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex; align-items: flex-end;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 28px;
  transition: var(--transition);
  cursor: pointer;
}
.industry-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}
.industry-card:hover { transform: scale(1.02) translateY(-4px); box-shadow: var(--shadow-lg); }
.industry-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,.12);
  line-height: 1;
}
.industry-content { position: relative; z-index: 1; }
.industry-icon { font-size: 2rem; margin-bottom: 10px; }
.industry-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.industry-card p  { color: rgba(255,255,255,.7); font-size: .82rem; }

/* ============================================================
   TESTIMONIALS — carousel
   ============================================================ */
.testimonials-section {
  background: linear-gradient(160deg, #0a0a0a 0%, #17120a 100%);
  overflow: hidden;
}
.testimonials-section .section-tag { background: rgba(245,124,0,.15); color: var(--orange); }
.testimonials-section .section-title { color: var(--white); }

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 clamp(280px, 45%, 420px);
  scroll-snap-align: start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,.09); border-color: rgba(245,124,0,.35); transform: translateY(-4px); }
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-info .name { font-weight: 600; color: var(--white); font-size: .9rem; }
.author-info .role { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 2px; }

.testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testimonials-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: var(--transition);
}
.testimonials-dots button.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question h4 {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
  flex: 1;
  padding-right: 20px;
}
.faq-question:hover h4 { color: var(--blue); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer p {
  padding: 0 0 20px;
  color: var(--gray-500);
  line-height: 1.75;
  font-size: .95rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background:
    radial-gradient(ellipse 700px 500px at 15% 0%, rgba(245,124,0,.18), transparent 60%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section .hero-bg-grid { opacity: .5; }
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -220px; right: -120px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(245,124,0,.16);
  bottom: -170px; left: -90px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.cta-badge .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { font-size: 1.02rem; padding: 18px 44px; box-shadow: 0 10px 34px rgba(245,124,0,.45); }
.cta-trustrow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 30px;
}
.cta-trustrow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
}
.cta-trustrow span::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
}

/* Home page final CTA — solid blue with two blue decorative blobs, compact + a subtle trucking image */
.cta-final { background: #0E66C7; padding: 64px 0; }
.cta-final::before { width: 260px; height: 260px; background: rgba(10,79,158,.4); top: -80px; right: -60px; bottom: auto; left: auto; }
.cta-final::after  { width: 320px; height: 320px; background: rgba(10,79,158,.5); bottom: -100px; left: -60px; top: auto; right: auto; }
.cta-final .cta-badge { background: rgba(10,20,40,.45); border-color: rgba(255,255,255,.15); }
.cta-final h2 { font-weight: 900; }
.cta-final .btn-primary { padding: 18px 56px; }
.cta-final .cta-trustrow span { background: rgba(255,255,255,.12); padding: 8px 16px; border-radius: var(--radius-pill); }
.cta-truck-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46%;
  background: url('../assets/services-truck-glow.jpg') center/cover no-repeat;
  opacity: .2;
  -webkit-mask-image: linear-gradient(to left, #000 40%, transparent 100%);
  mask-image: linear-gradient(to left, #000 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   PAGE HERO (about/services/contact) — cinematic dark
   ============================================================ */
.page-hero {
  position: relative;
  padding: 190px 0 110px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 800px 500px at 80% 0%, rgba(14,102,199,.35), transparent 60%),
    linear-gradient(160deg, var(--hero-1) 0%, var(--hero-2) 60%, var(--hero-1) 100%);
}
.page-hero .hero-bg-grid,
.page-hero .hero-particles { position: absolute; inset: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .breadcrumb { color: rgba(255,255,255,.5); font-size: .85rem; margin-bottom: 20px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.75); transition: var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-section { overflow: hidden; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background:
    linear-gradient(180deg, rgba(5,10,20,.35) 0%, rgba(5,10,20,.75) 100%),
    url('../assets/about-truck.jpg') center 35%/cover no-repeat;
}
.story-visual-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); text-align: center; padding: 40px;
}
.story-visual-content h3 { font-size: 1.6rem; margin-bottom: 12px; }
.story-visual-content p  { color: rgba(255,255,255,.7); }
.story-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.story-badge .num { font-size: 2rem; line-height: 1; }
.story-badge .lbl { font-size: .72rem; opacity: .85; }
.story-text .checklist { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.story-text .checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem; color: var(--gray-700);
}
.story-text .checklist li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(14,102,199,.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Mission / Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-card {
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
}
.mv-card.mission { background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: var(--white); }
.mv-card.vision  { background: var(--white); border: 2px solid rgba(0,0,0,.06); box-shadow: var(--shadow-md); }
.mv-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.mv-card p  { line-height: 1.75; opacity: .85; }
.mv-card.vision h3 { color: var(--dark); }
.mv-card.vision p  { color: var(--gray-500); opacity: 1; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { color: var(--blue); font-size: 1.1rem; margin-bottom: 10px; }
.value-card p  { color: var(--gray-500); font-size: .88rem; line-height: 1.6; }

/* Stats Counters */
.stats-section { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); position: relative; overflow: hidden; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .num .accent { color: var(--orange); }
.stat-item .lbl { color: rgba(255,255,255,.65); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
/* Category header — replaces plain inline-styled <h3> dividers */
.svc-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.svc-category-icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-blue);
}
.svc-category-tag {
  display: block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.svc-category h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--dark); margin: 0; }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(14,102,199,.18); border-color: rgba(14,102,199,.25); }
.svc-card:hover .svc-icon { background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: var(--white); transform: scale(1.08) rotate(-4deg); }
.svc-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14,102,199,.12), rgba(14,102,199,.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.svc-card h4 { font-size: 1.02rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.svc-card p  { font-size: .85rem; color: var(--gray-500); line-height: 1.6; }
.svc-card .svc-tag {
  display: inline-block;
  background: rgba(14,102,199,.07);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* Floating label fields */
.form-field { position: relative; margin-bottom: 30px; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 4px 10px;
  border: none;
  border-bottom: 2px solid var(--gray-300);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: transparent;
  transition: var(--transition);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field label {
  position: absolute;
  left: 4px; top: 12px;
  font-size: .95rem;
  color: var(--gray-500);
  pointer-events: none;
  transition: all .2s var(--ease);
  background: transparent;
}
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--blue); }
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: -14px;
  font-size: .74rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: .02em;
}
.form-field::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .35s var(--ease);
}
.form-field:focus-within::after { width: 100%; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(14,102,199,.08); }

.form-submit {
  width: 100%; justify-content: center; font-size: 1rem; padding: 16px;
  position: relative;
}
.form-submit .spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.form-submit.loading .btn-label { display: none; }
.form-submit.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Contact Info */
.contact-info-wrap { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(14,102,199,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: .88rem; color: var(--gray-500); font-weight: 500; margin-bottom: 4px; }
.contact-info-card p  { font-size: .95rem; color: var(--dark); font-weight: 600; }
.contact-info-card a  { color: var(--blue); }

/* Map placeholder */
.map-section { background: var(--light); }
.map-placeholder {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e8f0fe, #dbeafe);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--gray-500);
  border: 2px dashed var(--gray-300);
  gap: 12px;
}
.map-placeholder .map-icon { font-size: 3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0a0e1a;
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-about .footer-logo {
  display: inline-flex;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  margin-bottom: 20px;
}
.footer-about .footer-logo img { height: 44px; }
.footer-about p { font-size: .88rem; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.footer-social a:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--orange);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--orange); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item .icon { font-size: .9rem; margin-top: 2px; color: var(--orange); }
.footer-contact-item span { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(.96);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.reveal:nth-child(1) { transition-delay: .05s; }
.reveal:nth-child(2) { transition-delay: .10s; }
.reveal:nth-child(3) { transition-delay: .15s; }
.reveal:nth-child(4) { transition-delay: .20s; }
.reveal:nth-child(5) { transition-delay: .25s; }
.reveal:nth-child(6) { transition-delay: .30s; }
.reveal:nth-child(7) { transition-delay: .35s; }
.reveal:nth-child(8) { transition-delay: .40s; }
.reveal:nth-child(9) { transition-delay: .45s; }
.reveal:nth-child(10) { transition-delay: .50s; }

/* Success / error message */
.form-success {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-top: 16px;
  display: none;
}
.form-error {
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.3);
  color: #991b1b;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-top: 16px;
  display: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero             { flex-wrap: wrap; }
  .hero .container  { flex: 0 0 100%; }
  .hero-content     { max-width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-btns        { justify-content: center; }
  .process-grid     { grid-template-columns: repeat(2,1fr); }
  .process-line     { display: none; }
  .process-row:nth-child(odd) .process-card:nth-child(2n) { transform: none; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .story-grid       { grid-template-columns: 1fr; }
  .story-visual     { aspect-ratio: 16/7; }
  .contact-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section          { padding: 64px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .nav-shell        { padding: 12px 16px; }
  .nav-links        { display: none; }
  .nav-logo-badge img { height: 30px; }
  .hamburger        { display: flex; }
  .hero-stats       { grid-template-columns: repeat(2,1fr); }
  .features-grid    { grid-template-columns: repeat(2,1fr); }
  .services-grid    { grid-template-columns: repeat(2,1fr); }
  .industries-grid  { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex-basis: 82%; }
  .mv-grid          { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: repeat(2,1fr); }
  .stats-grid       { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; gap: 8px; text-align: center; }
  .clip-top, .clip-bottom, .clip-both { clip-path: none; padding-top: 64px; padding-bottom: 64px; }
}
@media (max-width: 480px) {
  .container        { padding: 0 16px; }
  .hero-btns        { flex-direction: column; width: 100%; }
  .hero-btns .btn   { width: 100%; justify-content: center; }
  .hero-stats       { grid-template-columns: 1fr 1fr; }
  .features-grid    { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .industries-grid  { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .process-grid     { grid-template-columns: 1fr; }
  .testimonial-card { flex-basis: 90%; }
  .nav-actions .nav-cta { padding: 12px 18px; font-size: .8rem; }
}

/* ============================================================
   SCROLL-DRIVEN TRUCK JOURNEY (GSAP ScrollTrigger)
   ============================================================ */
.truck-scroll-section {
  position: relative;
  height: 320vh;
  background: #1A1A1A;
}
.truck-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.truck-scene {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url('../assets/road-scene.jpg') center 65% / cover no-repeat;
}
/* Grades the real photo toward the brand's dark tone and keeps the milestones/UI legible */
.truck-scene-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,7,15,.45) 0%, rgba(5,7,15,.1) 35%, rgba(5,7,15,.4) 75%, rgba(5,7,15,.7) 100%);
  z-index: 1;
  pointer-events: none;
}

/* A couple of soft extra clouds drifting over the photo for scroll parallax */
.truck-clouds { position: absolute; inset: 0; z-index: 1; opacity: .4; }
.cloud {
  position: absolute;
  background: rgba(255,255,255,.55);
  border-radius: 50px;
  filter: blur(7px);
  will-change: transform;
}
.cloud-1 { width: 190px; height: 40px; top: 9%;  left: 10%; }
.cloud-2 { width: 150px; height: 34px; top: 15%; left: 64%; }

/* Road — the photo already shows real asphalt; this just carries the animated brand-orange lane line.
   Named distinctly from .truck-road (hero) to avoid a class collision between the two sections. */
.scroll-road {
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 30%;
  z-index: 2;
}
.scroll-road-line {
  position: absolute;
  top: 55%; left: 0; right: 0; height: 5px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, #F57C00 0 40px, transparent 40px 84px);
  background-size: 168px 5px;
  opacity: .9;
  filter: drop-shadow(0 0 4px rgba(245,124,0,.55));
  will-change: background-position;
}

/* Truck rig (photo + shadow move together) */
.truck-rig {
  position: absolute;
  bottom: 21%; left: 50%;
  width: min(42vw, 460px);
  z-index: 3;
  will-change: transform;
}
.truck-shadow {
  position: absolute;
  bottom: -10px; left: 50%;
  width: 78%; height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  filter: blur(5px);
  transform: translateX(-50%) scale(1);
  will-change: transform;
}
.scroll-truck-photo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  /* the source PNG has ~11% transparent padding below the wheels; shift down by
     that same share of its own height so the wheels actually meet the road */
  transform: translateY(10.8%);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}

/* Milestones */
.truck-milestones {
  position: absolute;
  bottom: 26%; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 9%;
  z-index: 2;
  pointer-events: none;
}
.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(18px) scale(.6);
}
.milestone.active {
  animation: milestonePop .6s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes milestonePop {
  0%   { opacity: 0; transform: translateY(18px) scale(.5); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.15); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.milestone-dot {
  position: relative;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #F57C00;
  box-shadow: 0 0 0 6px rgba(245,124,0,.25);
}
.milestone.active .milestone-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #F57C00;
  opacity: 0;
  animation: milestoneRing .8s ease-out .1s forwards;
}
@keyframes milestoneRing {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(2.8); opacity: 0; }
}
.milestone-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  color: #ffffff;
  background: rgba(10,20,40,.65);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Scroll hint */
.truck-scroll-hint {
  position: absolute;
  bottom: 7%; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: opacity .6s ease;
}
.hint-arrow { font-size: 1.1rem; animation: truckHintBounce 1.6s ease infinite; }
@keyframes truckHintBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* Progress bar */
.truck-progress-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: rgba(255,255,255,.14);
  z-index: 5;
}
.truck-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0E66C7, #F57C00);
}

@media (max-width: 768px) {
  .truck-scroll-section { height: 260vh; }
  .truck-milestones { padding: 0 4%; }
  .milestone-label { font-size: .68rem; padding: 5px 10px; }
  .truck-rig { width: min(60vw, 380px); }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 1200;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 10px rgba(37,211,102,0); }
}
@media (max-width: 480px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}
