/* ═══════════════════════════════════════════════════════════════
   ARAV TRANSPORT — PREMIUM LOGISTICS WEBSITE STYLESHEET
   Brand: Navy Blue #1e3a8a / Electric Blue #2563eb / Orange #f97316
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  background: #ffffff;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

a {
  text-decoration: none;
  color: inherit;
  transition: all .25s ease
}

ul {
  list-style: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

button,
input,
select,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none
}

button {
  cursor: pointer
}

/* ── TOKENS ── */
:root {
  --navy: #1e3a8a;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --orange: #f97316;
  --orange-light: #fb923c;
  --white: #ffffff;
  --off-white: #f8fafc;
  --text: #0f172a;
  --text-mid: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-blue: rgba(37, 99, 235, .18);
  --glass: rgba(255, 255, 255, .7);
  --glass-dark: rgba(15, 23, 42, .85);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .1);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, .14);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, .18);
  --shadow-orange: 0 8px 32px rgba(249, 115, 22, .25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --trans-fast: all .2s cubic-bezier(.4, 0, .2, 1);
  --trans-med: all .35s cubic-bezier(.4, 0, .2, 1);
  --trans-slow: all .55s cubic-bezier(.4, 0, .2, 1);
  --max-w: 1280px;
}

/* ── UTILITIES ── */
.t-orange {
  color: var(--orange)
}

.s-wrap,
.a-wrap,
.cta-content-wrap,
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem
}

.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249, 115, 22, .08);
  border: 1px solid rgba(249, 115, 22, .2);
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem
}

.s-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1rem
}

.s-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-orange);
  transition: var(--trans-med);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ea6c0c, #f97316);
  opacity: 0;
  transition: opacity .3s
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, .38)
}

.btn-primary:hover::before {
  opacity: 1
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1
}

.btn-primary svg {
  transition: transform .3s
}

.btn-primary:hover svg {
  transform: translateX(4px)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: white;
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  transition: var(--trans-med);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue)
}

.btn-ghost:hover svg {
  transform: translateX(4px)
}

.btn-ghost svg {
  transition: transform .3s
}

/* ═══════════════════════════════════════════════════════════════
   PAGE LOADER
   ═══════════════════════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .6s ease, visibility .6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 320px
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white
}

.loader-bar-wrap {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 99px;
  overflow: hidden
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 99px;
  width: 0%;
  transition: width .1s linear
}

.loader-road {
  position: relative;
  width: 100%;
  height: 50px;
  overflow: hidden
}

.loader-road-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .08)
}

.loader-truck-icon {
  position: absolute;
  bottom: 10px;
  left: -90px;
  animation: truckLoad 2.2s ease-in-out forwards
}

@keyframes truckLoad {
  0% {
    left: -90px
  }

  100% {
    left: calc(100% + 10px)
  }
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: .8rem 0;
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .08);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0
}

.logo-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, .3)
}

.logo-text-group {
  display: flex;
  flex-direction: column
}

.logo-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -.02em
}

.navbar.scrolled .logo-brand {
  color: var(--navy)
}

.logo-tagline {
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  line-height: 1;
  margin-top: .15rem
}

.navbar.scrolled .logo-tagline {
  color: var(--text-muted)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem
}

.nav-item {
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
  position: relative
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--orange);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform .25s ease
}

.nav-item:hover,
.nav-item.active {
  color: white
}

.nav-item:hover::after,
.nav-item.active::after {
  transform: scaleX(1)
}

.navbar.scrolled .nav-item {
  color: var(--text-mid)
}

.navbar.scrolled .nav-item:hover,
.navbar.scrolled .nav-item.active {
  color: var(--navy)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem
}

.nav-search {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: var(--trans-fast)
}

.nav-search:hover {
  background: rgba(255, 255, 255, .1);
  color: white
}

.navbar.scrolled .nav-search {
  color: var(--text-muted)
}

.navbar.scrolled .nav-search:hover {
  background: var(--off-white);
  color: var(--navy)
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  font-weight: 700;
  font-size: .88rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-orange);
  transition: var(--trans-med);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, .4)
}

.nav-cta svg {
  transition: transform .25s
}

.nav-cta:hover svg {
  transform: translateX(3px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  background: transparent
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--trans-fast)
}

.navbar.scrolled .hamburger span {
  background: var(--navy)
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: white;
  z-index: 1100;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: -10px 0 60px rgba(0, 0, 0, .15);
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
}

.mobile-nav.open {
  right: 0
}

.mobile-nav .nav-item {
  color: var(--text-mid);
  font-size: 1.1rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--border)
}

.mobile-nav .nav-item:hover,
.mobile-nav .nav-item.active {
  color: var(--navy)
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px)
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1e3d 0%, #1e3a8a 40%, #1d4ed8 70%, #1e3a8a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

/* Animated orbs */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(37, 99, 235, .25);
  top: -150px;
  right: -100px;
  animation-delay: 0s
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(249, 115, 22, .15);
  bottom: -100px;
  left: -50px;
  animation-delay: -3s
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, .1);
  top: 50%;
  left: 30%;
  animation-delay: -5s
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-30px) scale(1.05)
  }
}

/* Route SVG paths */
.hero-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none
}

.rp {
  stroke-dashoffset: 1000;
  animation: drawRoute 6s linear infinite
}

.rp1 {
  animation-delay: 0s
}

.rp2 {
  animation-delay: -3s
}

.gn {
  animation: gpsPulse 2s ease-in-out infinite
}

.gn1 {
  animation-delay: 0s
}

.gn2 {
  animation-delay: -.7s
}

.gn3 {
  animation-delay: -1.4s
}

@keyframes drawRoute {
  0% {
    stroke-dashoffset: 1000
  }

  100% {
    stroke-dashoffset: -1000
  }
}

@keyframes gpsPulse {

  0%,
  100% {
    r: 7;
    opacity: .9
  }

  50% {
    r: 11;
    opacity: .4
  }
}

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

/* Left content */
.hero-tagline {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .24em;
  color: #60a5fa;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1.1rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.badge-ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: ping 1.4s ease-in-out infinite;
}

@keyframes ping {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.6);
    opacity: .5
  }
}

.hero-h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #ffffff;
  margin-bottom: 1.4rem;
}

.h1-highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.h1-underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  animation: drawUnder 1.2s ease 1s both;
}

@keyframes drawUnder {
  from {
    stroke-dasharray: 0 300
  }

  to {
    stroke-dasharray: 300 0
  }
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem
}

.hero-trust {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(4px);
}

.trust-check {
  color: var(--orange);
  font-size: .9rem
}

.trust-green {
  color: #34d399
}

/* Hero right visual */
.hero-right {
  position: relative
}

.hero-img-stack {
  position: relative
}

.hero-main-img {
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4), 0 0 0 1px rgba(255, 255, 255, .08);
  animation: heroImgFloat 5s ease-in-out infinite;
}

@keyframes heroImgFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius-md);
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-lg);
  animation: fcFloat 4s ease-in-out infinite;
  min-width: 180px;
}

.fc-track {
  top: 15%;
  left: -50px;
  animation-delay: 0s
}

.fc-delivered {
  bottom: 22%;
  left: -30px;
  animation-delay: -1.5s
}

.fc-global {
  top: 5%;
  right: -20px;
  animation-delay: -2.5s
}

@keyframes fcFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.fc-body {
  display: flex;
  flex-direction: column;
  gap: .15rem
}

.fc-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em
}

.fc-val {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text)
}

.fc-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif
}

.fc-prog-bar {
  height: 3px;
  background: #e2e8f0;
  border-radius: 99px;
  margin-top: .3rem;
  width: 120px
}

.fc-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 99px;
  transition: width 1s ease
}

/* Handwritten text */
.hero-handwritten {
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  animation: scrollCueFade 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, .5);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite
}

@keyframes scrollWheel {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  100% {
    transform: translateY(8px);
    opacity: 0
  }
}

@keyframes scrollCueFade {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

/* ═══════════════════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════════════════ */
.ticker-section {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}

.ticker-label {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap
}

.ticker-outer {
  overflow: hidden;
  flex: 1
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: ticker 28s linear infinite
}

.ticker-inner:hover {
  animation-play-state: paused
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.t-item {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-mid);
  white-space: nowrap;
  padding: .3rem .8rem;
  border-radius: var(--radius-sm);
  transition: var(--trans-fast)
}

.t-item:hover {
  color: var(--blue)
}

.t-sep {
  color: var(--orange);
  font-size: .6rem;
  opacity: .6
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services-section {
  padding: 7rem 0;
  background: var(--white)
}

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

.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  overflow: hidden;
  transition: var(--trans-med);
  cursor: default;
  --gc: #2563eb;
  --rc: #2563eb;
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-light);
  box-shadow: 0 24px 64px rgba(37, 99, 235, .12);
}

.svc-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, var(--gc), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}

.svc-card:hover .svc-glow {
  opacity: .08
}

.svc-num {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  transition: color .3s;
}

.svc-card:hover .svc-num {
  color: rgba(37, 99, 235, .08)
}

.svc-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #f0f7ff, #e0edff);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: var(--trans-med);
}

.svc-card:hover .svc-icon-wrap {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 8px 24px rgba(37, 99, 235, .25)
}

.svc-ring {
  position: absolute;
  inset: -6px;
  border: 2px solid var(--rc, #2563eb);
  border-radius: calc(var(--radius-md) + 6px);
  opacity: 0;
  animation: ringPulse 2.5s ease-in-out infinite;
}

.svc-card:hover .svc-ring {
  opacity: .4
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .4
  }

  50% {
    transform: scale(1.06);
    opacity: .15
  }
}

.svc-svg {
  width: 40px;
  height: 40px;
  transition: var(--trans-med)
}

.svc-card:hover .svc-svg rect[fill^="url"],
.svc-card:hover .svc-svg path[fill^="url"] {
  /* handled by icon-wrap bg change */
}

.svc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .7rem
}

.svc-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.4rem
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  transition: var(--trans-fast);
}

.svc-link svg {
  transition: transform .25s
}

.svc-link:hover {
  color: var(--orange);
  gap: .7rem
}

.svc-link:hover svg {
  transform: translateX(4px)
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about-section {
  padding: 7rem 0;
  background: var(--off-white)
}

.a-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.a-visual {
  position: relative
}

.a-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.a-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease
}

.a-img:hover {
  transform: scale(1.02)
}

.a-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(30, 58, 138, .3), transparent 50%, rgba(249, 115, 22, .1));
}

/* Stat chips */
.a-chip {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: .9rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 110px;
}

.chip-tl {
  top: 1.5rem;
  left: 1.5rem
}

.chip-tr {
  top: 1.5rem;
  right: 1.5rem
}

.chip-bl {
  bottom: 1.5rem;
  left: 1.5rem
}

.chip-br {
  bottom: 1.5rem;
  right: 1.5rem
}

.chip-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  display: block
}

.chip-lbl {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em
}

.a-deco {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  pointer-events: none
}

.a-deco1 {
  width: 120px;
  height: 120px;
  border-color: rgba(249, 115, 22, .2);
  bottom: -30px;
  right: -30px;
  animation: decoSpin 15s linear infinite
}

.a-deco2 {
  width: 60px;
  height: 60px;
  border-color: rgba(37, 99, 235, .3);
  top: -20px;
  left: 40%;
  animation: decoSpin 10s linear infinite reverse
}

@keyframes decoSpin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

/* About content */
.a-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin: 1rem 0 1.4rem;
  color: var(--text)
}

.a-text {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem
}

.a-feats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 1.8rem 0 2.2rem
}

.a-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start
}

.feat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: .3rem;
  animation: featPulse 2s ease-in-out infinite
}

.fd-blue {
  background: var(--blue);
  animation-delay: -.6s
}

.fd-green {
  background: #10b981;
  animation-delay: -1.2s
}

@keyframes featPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.3)
  }
}

.a-feat strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem
}

.a-feat p {
  font-size: .87rem;
  color: var(--text-muted)
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.how-section {
  padding: 7rem 0;
  background: var(--white)
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  z-index: 2
}

.step-bubble {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, var(--sb, var(--navy)), var(--sb, var(--blue)));
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  box-shadow: 0 8px 24px rgba(30, 58, 138, .3);
  position: relative;
  transition: var(--trans-med);
  animation: stepFloat 3.5s ease-in-out infinite;
}

.step:nth-child(1) .step-bubble {
  animation-delay: 0s
}

.step:nth-child(5) .step-bubble {
  animation-delay: -.8s
}

.step:nth-child(9) .step-bubble {
  animation-delay: -1.6s
}

.step:nth-child(13) .step-bubble {
  animation-delay: -2.4s
}

@keyframes stepFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.step-bubble:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 58, 138, .4)
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .65rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .05em
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem
}

.step p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 180px;
  margin: 0 auto
}

/* Connector */
.step-connector {
  flex-shrink: 0;
  width: 100px;
  padding-top: 2.5rem;
  position: relative;
  z-index: 1
}

.sc-line {
  position: relative;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 99px;
  opacity: .3;
  overflow: visible;
}

.sc-truck {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation: truckRide 4s linear infinite;
}

@keyframes truckRide {
  0% {
    left: -10%;
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: 1
  }

  100% {
    left: 110%;
    opacity: 0
  }
}

/* ═══════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════ */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f1e3d, #1e3a8a);
  position: relative;
  overflow: hidden;
}

.stats-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .3), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 6s ease-in-out infinite;
}

.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-box {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--trans-med);
}

.stat-box:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, .4)
}

.stat-emoji {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
  animation: emojiFloat 3s ease-in-out infinite
}

.stat-box:nth-child(2) .stat-emoji {
  animation-delay: -.75s
}

.stat-box:nth-child(3) .stat-emoji {
  animation-delay: -1.5s
}

.stat-box:nth-child(4) .stat-emoji {
  animation-delay: -2.25s
}

@keyframes emojiFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-5px) rotate(5deg)
  }
}

.stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: .4rem
}

.stat-lbl {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1rem
}

.stat-track {
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 99px;
  overflow: hidden
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-light), var(--orange));
  border-radius: 99px;
  width: 0%;
  transition: width 1.5s cubic-bezier(.4, 0, .2, 1) .3s
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
}

.cta-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 10s ease-in-out infinite
}

.cta-orb1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, .2);
  top: -100px;
  left: -100px;
  animation-delay: 0s
}

.cta-orb2 {
  width: 400px;
  height: 400px;
  background: rgba(249, 115, 22, .12);
  bottom: -80px;
  right: -80px;
  animation-delay: -5s
}

.cta-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.cta-rp {
  stroke-dashoffset: 2000;
  animation: drawRoute 10s linear infinite
}

.cta-gps {
  animation: gpsPulse 2s ease-in-out infinite
}

.cta-gps1 {
  animation-delay: 0s
}

.cta-gps2 {
  animation-delay: -.8s
}

.cta-gps3 {
  animation-delay: -1.6s
}

/* Animated truck across the section */
.cta-truck {
  position: absolute;
  bottom: 80px;
  animation: ctaTruckDrive 18s linear infinite;
}

@keyframes ctaTruckDrive {
  0% {
    left: -200px;
    opacity: 0
  }

  5% {
    opacity: 1
  }

  95% {
    opacity: 1
  }

  100% {
    left: calc(100% + 200px);
    opacity: 0
  }
}

/* Content */
.cta-content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-eyebrow {
  color: var(--orange) !important
}

.cta-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: white;
  margin: 1rem 0 1.2rem;
}

.cta-p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 2rem
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap
}

.cta-phone-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255, 255, 255, .8);
  transition: var(--trans-fast);
}

.cta-phone-btn:hover {
  color: white
}

.cta-phone-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ringPulseW 2s ease-in-out infinite;
}

@keyframes ringPulseW {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .2)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0)
  }
}

.cta-ph-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 600
}

.cta-ph-num {
  font-size: 1rem;
  font-weight: 700;
  color: white
}

/* CTA Form Card */
.cta-form-card {
  background: rgba(255, 255, 255, .97);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .3), 0 0 0 1px rgba(255, 255, 255, .1);
}

.cfc-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.8rem;
}

.cfc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  animation: ping 1.5s ease-in-out infinite
}

.cfc-form {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.cfc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.cfc-input {
  padding: .8rem 1rem;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text);
  transition: var(--trans-fast);
  width: 100%;
}

.cfc-input:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .08)
}

.cfc-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: 20px
}

.cfc-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testi-section {
  padding: 7rem 0;
  background: var(--off-white)
}

.testi-slider-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem
}

.testi-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.testi-card {
  flex: 0 0 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.tc-stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: 1.2rem
}

.tc-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.8rem
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 1rem
}

.tc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  color: white;
  flex-shrink: 0
}

.tc-name {
  font-weight: 700;
  color: var(--text);
  font-size: .95rem
}

.tc-role {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .15rem
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem
}

.tc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-mid);
  transition: var(--trans-fast);
}

.tc-arrow:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy)
}

.tc-dots {
  display: flex;
  gap: .5rem
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--trans-fast)
}

.tc-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0a0f1e;
  color: rgba(255, 255, 255, .7)
}

.footer-top {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.f-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem
}

.f-brand {
  display: flex;
  flex-direction: column
}

.f-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 280px
}

.f-socials {
  display: flex;
  gap: .6rem
}

.f-soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  transition: var(--trans-fast);
}

.f-soc:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange)
}

.f-col {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.f-col h4 {
  font-size: .95rem;
  font-weight: 700;
  color: white;
  margin-bottom: .8rem;
  position: relative;
  padding-bottom: .8rem
}

.f-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px
}

.f-col a {
  font-size: .87rem;
  color: rgba(255, 255, 255, .5);
  transition: var(--trans-fast)
}

.f-col a:hover {
  color: var(--orange);
  padding-left: 4px
}

.f-contact {
  gap: .75rem
}

.f-ci {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .87rem;
  color: rgba(255, 255, 255, .5)
}

.f-active {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: .5rem;
}

.f-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: ping 1.5s ease-in-out infinite
}

.footer-bottom {
  padding: 1.5rem 0
}

.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}

.fb-inner span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35)
}

.fb-links {
  display: flex;
  gap: 1.5rem
}

.fb-links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
  transition: color .2s
}

.fb-links a:hover {
  color: var(--orange)
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.floating-btns {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.fl-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--trans-med);
}

.fl-btn:hover {
  transform: scale(1.12);
  box-shadow: var(--shadow-lg)
}

.fl-wa {
  background: #25d366
}

.fl-top {
  background: linear-gradient(135deg, var(--navy), var(--blue))
}

.fl-top.hidden {
  opacity: 0;
  pointer-events: none
}

/* ═══════════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════════ */
.toast-root {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.toast-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  min-width: 280px;
  animation: toastIn .35s ease;
}

.toast-item.hide {
  animation: toastOut .3s ease forwards
}

@keyframes toastIn {
  from {
    transform: translateX(-110%);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes toastOut {
  from {
    transform: translateX(0);
    opacity: 1
  }

  to {
    transform: translateX(-110%);
    opacity: 0
  }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1)
}

[data-reveal][data-dir="left"] {
  transform: translateX(-50px)
}

[data-reveal][data-dir="right"] {
  transform: translateX(50px)
}

[data-reveal].visible {
  opacity: 1;
  transform: none
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media(max-width:1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .hero-btns {
    justify-content: center
  }

  .hero-trust {
    justify-content: center
  }

  .hero-right {
    display: none
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .a-wrap {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .a-visual {
    order: 2
  }

  .a-content {
    order: 1
  }

  .cta-content-wrap {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .f-wrap {
    grid-template-columns: 1fr 1fr
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .nav-search {
    display: none
  }

  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-h1 {
    font-size: 2.4rem
  }

  .svc-grid {
    grid-template-columns: 1fr
  }

  .cfc-row {
    grid-template-columns: 1fr
  }

  .steps-row {
    flex-direction: column;
    gap: 1rem
  }

  .step-connector {
    width: auto;
    height: 40px;
    padding: 0
  }

  .sc-line {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--blue), var(--orange));
    margin: 0 auto
  }

  .sc-truck {
    display: none
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .f-wrap {
    grid-template-columns: 1fr
  }

  .fb-inner {
    flex-direction: column;
    text-align: center
  }

  .ticker-label {
    display: none
  }

  .float-card {
    display: none
  }

  .a-chip {
    display: none
  }
}

@media(max-width:480px) {
  .stats-grid {
    grid-template-columns: 1fr
  }

  .hero-h1 {
    font-size: 2rem
  }

  .hero-badge {
    font-size: .73rem
  }
}

/* ═══════════════════════════════════════════════════════════════
   TOP ENQUIRY HEADER BAR (Inspired by Aarav World Logistics)
   ═══════════════════════════════════════════════════════════════ */
.top-bar {
  background: #0b1329;
  color: rgba(255, 255, 255, .75);
  font-size: .8rem;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.tb-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.tb-left {
  display: flex;
  align-items: center;
  gap: 1.5rem
}

.tb-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .75)
}

.tb-item svg {
  color: var(--orange)
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 1.2rem
}

.tb-enquiry-box {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(249, 115, 22, .12);
  border: 1px solid rgba(249, 115, 22, .3);
  padding: .25rem .8rem;
  border-radius: 99px;
  color: white;
  font-weight: 700;
  font-size: .78rem;
}

.tb-enquiry-box a {
  color: var(--orange);
  font-weight: 800
}

.tb-wa-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #25d366;
  font-weight: 700;
  font-size: .78rem;
}

/* Page navbar position adjustment when top-bar present */
body.has-top-bar .navbar {
  top: 36px;
  transition: top .3s ease, background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}

body.has-top-bar .navbar.scrolled {
  top: 0 !important;
}

@media(max-width:768px) {
  .top-bar {
    display: none
  }

  body.has-top-bar .navbar {
    top: 0
  }
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE HERO BANNER
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #0f1e3d 0%, #1e3a8a 50%, #0f172a 100%);
  color: white;
  overflow: hidden;
}

.ph-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2
}

.ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: .8rem
}

.ph-breadcrumb a {
  color: var(--orange);
  font-weight: 600
}

.ph-breadcrumb a:hover {
  text-decoration: underline
}

.ph-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem
}

.ph-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .75);
  max-width: 640px;
  line-height: 1.6
}

/* Spin tyres animation for road freight truck visuals */
.spin-tyres {
  animation: spinWheel 1s linear infinite
}

@keyframes spinWheel {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

/* ═══════════════════════════════════════════════════════════════
   FLEET SHOWCASE & FILTER TABS
   ═══════════════════════════════════════════════════════════════ */
.fleet-section {
  padding: 5rem 0;
  background: var(--off-white)
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: .65rem 1.4rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--trans-fast);
  cursor: pointer;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  box-shadow: var(--shadow-blue);
}

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

.fleet-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-med);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.fleet-img-wrap {
  position: relative;
  height: 220px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.05)
}

.fleet-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, .85);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .3rem .75rem;
  border-radius: 99px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
}

.fleet-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1
}

.fleet-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem
}

.fleet-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem
}

.fleet-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  background: #f8fafc;
  padding: .8rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  margin-top: auto;
}

.spec-item {
  display: flex;
  flex-direction: column
}

.spec-lbl {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase
}

.spec-val {
  font-size: .85rem;
  color: var(--navy);
  font-weight: 700
}

.btn-spec-modal {
  width: 100%;
  padding: .7rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-weight: 700;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--trans-fast);
}

.btn-spec-modal:hover {
  background: var(--orange)
}

/* ═══════════════════════════════════════════════════════════════
   VEHICLE SPEC MODAL
   ═══════════════════════════════════════════════════════════════ */
.spec-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, .75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.spec-modal.open {
  opacity: 1;
  pointer-events: auto
}

.spec-modal-card {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(.95);
  transition: transform .3s ease;
}

.spec-modal.open .spec-modal-card {
  transform: scale(1)
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--trans-fast);
}

.modal-close:hover {
  background: var(--orange);
  color: white
}

.sm-header {
  margin-bottom: 1.5rem
}

.sm-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy)
}

.sm-sub {
  font-size: .9rem;
  color: var(--text-muted)
}

.sm-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0
}

.sm-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: .9rem
}

.sm-table td:first-child {
  font-weight: 700;
  color: var(--text-mid);
  width: 40%;
  background: #f8fafc
}

.sm-table td:last-child {
  color: var(--text);
  font-weight: 600
}

/* ═══════════════════════════════════════════════════════════════
   FREIGHT COST CALCULATOR COMPONENT
   ═══════════════════════════════════════════════════════════════ */
.calc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem
}

.calc-form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.2rem
}

.calc-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .04em
}

.calc-input,
.calc-select {
  padding: .85rem 1rem;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  transition: var(--trans-fast);
  width: 100%;
}

.calc-input:focus,
.calc-select:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .08)
}

.calc-result-box {
  background: linear-gradient(135deg, #0f1e3d, #1e3a8a);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cr-title {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.2rem
}

.cr-recommendation {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.cr-rec-lbl {
  font-size: .72rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase
}

.cr-rec-truck {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-top: .2rem
}

.cr-price-wrap {
  margin-bottom: 1.5rem
}

.cr-price-lbl {
  font-size: .78rem;
  color: rgba(255, 255, 255, .7)
}

.cr-price-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1
}

.cr-breakdown {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 1rem;
  margin-bottom: 1.5rem
}

.cr-breakdown div {
  display: flex;
  justify-content: space-between;
  margin-bottom: .3rem
}

/* ═══════════════════════════════════════════════════════════════
   LOAD CAPACITY SPECIFICATION TABLE (services.html)
   ═══════════════════════════════════════════════════════════════ */
.spec-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin: 3rem 0
}

.capacity-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: white
}

.capacity-table th {
  background: var(--navy);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  padding: 1rem 1.2rem
}

.capacity-table td {
  padding: .9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text-mid)
}

.capacity-table tr:hover td {
  background: #f8fafc
}

.capacity-table tr:last-child td {
  border-bottom: none
}

/* ═══════════════════════════════════════════════════════════════
   HUB LOCATOR CARDS (contact.html)
   ═══════════════════════════════════════════════════════════════ */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0
}

.hub-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--trans-med);
  box-shadow: var(--shadow-sm);
}

.hub-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue)
}

.hub-city {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.hub-tag {
  font-size: .7rem;
  font-weight: 700;
  background: rgba(249, 115, 22, .1);
  color: var(--orange);
  padding: .2rem .6rem;
  border-radius: 99px;
  text-transform: uppercase
}

.hub-address {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem
}

.hub-phone {
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: .4rem
}

/* FAQ Accordion */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden
}

.faq-q {
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform .3s;
  color: var(--orange)
}

.faq-item.active .faq-icon {
  transform: rotate(45deg)
}

.faq-a {
  padding: 0 1.5rem 1.2rem;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none
}

.faq-item.active .faq-a {
  display: block
}

@media(max-width:992px) {

  .fleet-grid,
  .hub-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .calc-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:640px) {

  .fleet-grid,
  .hub-grid {
    grid-template-columns: 1fr
  }
}

/* ═══════════════════════════════════════════════════════════════
   LIVE PAN-INDIA HIGHWAY TRANSIT SECTION (EXACT SCREENSHOT DESIGN)
   ═══════════════════════════════════════════════════════════════ */
.hw-live-section {
  background: #060c1d;
  padding: 3.5rem 0 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.hw-live-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.hw-live-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid #ea580c;
  color: #f97316;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.hw-live-heading {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

.hw-road-wrap {
  width: 100%;
  position: relative;
}

.hw-orange-bar {
  height: 4px;
  width: 100%;
  background: #f97316;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.8);
}

.hw-road-surface {
  position: relative;
  height: 220px;
  background: #091024;
  overflow: hidden;
}

.hw-dashed-center-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 4px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, #ffffff 0, #ffffff 28px, transparent 28px, transparent 56px);
  opacity: 0.9;
  animation: hwLineMove 1.8s linear infinite;
}

@keyframes hwLineMove {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(-56px, -50%);
  }
}

/* Truck Entities */
.hw-truck-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.hw-truck-item:hover {
  z-index: 20;
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.6));
}

/* Lane Positioning & Timings */
.truck-reefer-item {
  top: 16px;
  animation: moveEast1 20s linear infinite;
}

.truck-heavy-item {
  top: 115px;
  animation: moveEast2 24s linear infinite;
  animation-delay: -12s;
}

.truck-ftl-item {
  top: 22px;
  animation: moveEast3 22s linear infinite;
  animation-delay: -8s;
}

@keyframes moveEast1 {
  0% {
    left: -280px;
  }
  100% {
    left: 105%;
  }
}

@keyframes moveEast2 {
  0% {
    left: -280px;
  }
  100% {
    left: 105%;
  }
}

@keyframes moveEast3 {
  0% {
    left: -280px;
  }
  100% {
    left: 105%;
  }
}

/* Route Tags (Pill Badges) */
.hw-route-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.tag-reefer {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid #10b981;
  color: #34d399;
}

.tag-heavy {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid #f97316;
  color: #fb923c;
}

.tag-ftl {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid #3b82f6;
  color: #60a5fa;
}

/* Graphic & SVG */
.hw-truck-graphic {
  position: relative;
  display: flex;
  align-items: center;
}

.hw-truck-svg {
  width: 160px;
  height: 48px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Headlight Beam Cone */
.hw-headlight-beam {
  position: absolute;
  top: 14px;
  right: -55px;
  width: 58px;
  height: 24px;
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 65%);
  pointer-events: none;
}

.beam-teal {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.75), rgba(56, 189, 248, 0));
}

.beam-orange {
  background: linear-gradient(90deg, rgba(253, 186, 116, 0.75), rgba(253, 186, 116, 0));
}

.beam-yellow {
  background: linear-gradient(90deg, rgba(254, 240, 138, 0.8), rgba(254, 240, 138, 0));
}

/* Responsive query */
@media (max-width: 768px) {
  .hw-live-heading {
    font-size: 1.5rem;
  }
  .hw-road-surface {
    height: 180px;
  }
}