/* =====================================================================
   HOUSE 2 HOUSE PACKERS AND MOVERS — style.css
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111827;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ── Design Tokens ── */
:root {
  --orange: #dc2626;
  --orange-light: #f59e0b;
  --orange-50: #fffbe8;
  --orange-100: #fef3c7;
  --red-accent: #dc2626;
  --yellow-accent: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-500: #3b82f6;
  --green-500: #22c55e;
  --purple-500: #a855f7;
  --teal-500: #14b8a6;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, .07), 0 2px 4px rgba(0, 0, 0, .06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, .07), 0 4px 6px rgba(0, 0, 0, .05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, .07), 0 8px 10px rgba(0, 0, 0, .04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, .12);
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
}

/* ── Text Gradient ── */
.text-gradient {
  background: linear-gradient(135deg, #e11d48, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section helpers ── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-inner-narrow {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--gray-900);
  margin-top: .5rem;
}

.section-title-xl {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  margin-top: .5rem;
}

.section-sub {
  max-width: 750px;
  margin: 1rem auto 0;
  color: var(--gray-600);
  line-height: 1.75;
}

.section-badge-blue {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: .75rem;
}

.section-badge-orange {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: .75rem;
}

.pill-badge {
  display: inline-block;
  padding: .4rem 1.25rem;
  border-radius: var(--radius-full);
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #dc2626, #f59e0b);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: 0 20px 40px rgba(220, 38, 38, .25);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, .35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  color: var(--gray-800);
  font-size: 1rem;
  font-weight: 700;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px);
  transition: border-color .2s, color .2s;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-2xl);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-2xl);
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 15px 30px rgba(37, 211, 102, .25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, .35);
}

/* Shiny shimmer effect */
.btn-shiny::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -75%;
  }

  60%,
  100% {
    left: 125%;
  }
}

/* ── Keyframes ── */
@keyframes float-slow {

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

  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes float-medium {

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

  50% {
    transform: translateY(-14px);
  }
}

@keyframes float-fast {

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

  50% {
    transform: translateY(-10px);
  }
}

@keyframes marquee-fwd {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-rev {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes blobFloat {

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

  33% {
    transform: scale(1.15) translate(30px, -30px);
    opacity: .2;
  }

  66% {
    transform: scale(.9) translate(-20px, 20px);
    opacity: .12;
  }
}

@keyframes pulseGlow {

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

  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: .8;
  }

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

@keyframes truckDrive {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(180px);
    opacity: 0;
  }
}

@keyframes roadDash {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(120px);
  }
}

@keyframes speedLine {
  0% {
    transform: scaleX(1);
    opacity: .7;
  }

  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

@keyframes boxDrop {
  0% {
    transform: translateY(-40px) scale(.8);
    opacity: 0;
  }

  60% {
    transform: translateY(4px) scale(1.05);
    opacity: 1;
  }

  80% {
    transform: translateY(-3px) scale(1);
  }

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

@keyframes shockwave {
  0% {
    transform: scale(.2);
    opacity: .8;
  }

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

@keyframes packingScale {
  0% {
    transform: scale(.7);
    opacity: 0;
  }

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

@keyframes sparkle-fly {
  0% {
    box-shadow: 0 0 0 rgba(255, 87, 34, 0);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 87, 34, .5);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 87, 34, 0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes navSlide {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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


/* =====================================================================
   NAVBAR
   ===================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: navSlide .5s ease-out;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  max-height: 55px;
  overflow: hidden;
}

.nav-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  max-height: 52px;
}

.site-logo {
  height: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 768px) {
  .site-logo {
    height: 38px !important;
    max-height: 38px !important;
    max-width: 165px !important;
  }
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: .75rem;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(255, 87, 34, .3);
  flex-shrink: 0;
}

.logo-icon.small {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

.logo-main {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  display: block;
}

.logo-sub {
  font-size: .7rem;
  color: var(--gray-500);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1a2e6e;
  font-weight: 700;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #ff5722, #ff9800);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 87, 34, .25);
  transition: transform .2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
}


/* =====================================================================
   HERO SECTION
   ===================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 90px 1.5rem 80px;
  background: #fff;
  overflow: hidden;
}

/* ── Hero Background ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Ghost icons */
.ghost-icon {
  position: absolute;
  color: var(--orange);
  font-size: 200px;
  opacity: .05;
}

.ghost-icon.top-left {
  top: 10%;
  left: 5%;
}

.ghost-icon.bottom-right {
  bottom: 15%;
  right: 5%;
}

/* Float classes */
.float-slow {
  animation: float-slow 15s ease-in-out infinite;
}

.float-medium {
  animation: float-medium 8s ease-in-out infinite;
}

.float-fast {
  animation: float-fast 6s ease-in-out infinite;
}

/* Marquee rows */
.marquee-row {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  opacity: .03;
  color: var(--gray-900);
}

.marquee-row-1 {
  top: 25%;
}

.marquee-row-2 {
  bottom: 25%;
}

.marquee-track {
  display: flex;
}

.marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0;
}

.marquee-fwd {
  animation: marquee-fwd 60s linear infinite;
}

.marquee-rev {
  animation: marquee-rev 80s linear infinite;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 8rem;
  padding: 0 4rem;
}

.icon-xl {
  font-size: 70px;
}

.icon-lg {
  font-size: 60px;
}

.icon-xxl {
  font-size: 90px;
}

/* Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  animation: blobFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff9800, #ff5722);
  top: -5%;
  left: -8%;
  animation-delay: 0s;
}

.blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #ffd7a8, #ff9800);
  bottom: -12%;
  right: -8%;
  animation-delay: -5s;
}

/* ── Hero Content Grid ── */
.hero-content-grid {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Hero Text ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--orange-100);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.live-dot {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}

.live-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4ade80;
  opacity: .75;
  animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-typed {
  display: block;
  margin-top: .25rem;
}

.typed-cursor {
  display: inline-block;
  width: 4px;
  height: .9em;
  background: var(--orange);
  margin-left: 4px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink .8s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

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

/* Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-right: -12px;
}

.avatar-more {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray-600);
}

.rating-info {
  font-size: .875rem;
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 1.5rem 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* ── Hero Card Deck Layout ── */
.hero-card-deck {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 420px;
  margin: 0 auto;
}

.hero-deck-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(220, 38, 38, .25), rgba(245, 158, 11, .2));
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
}

.deck-card {
  position: absolute;
  border-radius: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.deck-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.deck-card-main {
  top: 10%;
  left: 5%;
  right: 5%;
  background: linear-gradient(135deg, #1a2e6e, #0f172a);
  color: #ffffff;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .15);
}

.deck-card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #f59e0b;
  color: #0f172a;
  font-size: .75rem;
  font-weight: 800;
  padding: .3rem .9rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.deck-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 1.2rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
  flex-shrink: 0;
}

.deck-card-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .25rem;
}

.deck-card-content p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
}

.deck-card-sub {
  bottom: 12%;
  left: 0;
  width: 60%;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
}

.deck-card-accent {
  bottom: 5%;
  right: 0;
  width: 58%;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-color: #fef08a;
}

.deck-sub-icon {
  width: 44px;
  height: 44px;
  border-radius: .8rem;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ghost-icon-sm {
  position: absolute;
  font-size: 3rem;
  color: #dc2626;
  opacity: .15;
}

.hero-truck-icon {
  font-size: 7.5rem;
  color: var(--orange);
}

.hero-badge-pill {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #0f172a;
  color: #fff;
  padding: .6rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 900;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: var(--shadow-2xl);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 10px #4ade80;
}

/* Side cards */
.hero-side-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 1.25rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(249, 250, 251, .5);
  z-index: 30;
}

.hero-side-left {
  left: 1.5rem;
}

.hero-side-right {
  right: 1.5rem;
}

/* Decorative dots */
.deco-dot {
  position: absolute;
  border-radius: 50%;
}

.deco-dot-1 {
  top: 2.5rem;
  right: 5rem;
  width: 12px;
  height: 12px;
  background: #bfdbfe;
  animation: blink 3s ease-in-out infinite;
}

.deco-dot-2 {
  bottom: 2.5rem;
  left: 5rem;
  width: 16px;
  height: 16px;
  background: #fed7aa;
  animation: float-fast 3s ease-in-out infinite;
}


/* =====================================================================
   STATS SECTION
   ===================================================================== */
.stats-section {
  padding: 5rem 1.5rem;
  background: #fafafa;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.stats-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .stats-grid-wrap {
    flex-direction: row;
    gap: 4rem;
  }
}

.stats-img-wrap {
  width: 100%;
  flex: 1;
}

.stats-img-card {
  position: relative;
}

.stats-img-card .stats-img-glow {
  position: absolute;
  inset: -2.5rem;
  background: rgba(255, 178, 84, .15);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 1s;
  opacity: 0;
}

.stats-img-card:hover .stats-img-glow {
  opacity: 1;
}

.stats-truck-img {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  transition: transform .7s;
}

.stats-truck-img:hover {
  transform: scale(1.03);
}

/* Stats Cards Grid */
.stats-cards {
  flex: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  position: relative;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.stat-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 87, 34, .06), transparent 70%);
  pointer-events: none;
}

.stat-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange);
  font-size: 2.5rem;
  background: var(--orange-50);
}

.stat-card:hover .stat-icon-wrap {
  transform: scale(1.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: .5rem;
  line-height: 1;
  animation: countUp .4s ease-out;
}

.stat-label {
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gray-400);
  transition: color .2s;
}

.stat-card:hover .stat-label {
  color: var(--orange);
}


/* Ticker offset & scroll padding */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px !important;
}

section,
.section,
[id] {
  scroll-margin-top: 120px !important;
}

.page-header {
  margin-top: 110px !important;
  padding: 60px 20px !important;
}

.hero-section {
  padding-top: 135px !important;
}

/* =====================================================================
   SERVICES SECTION & CAROUSEL
   ===================================================================== */
.services-section {
  padding: 5rem 0 5rem;
  background: #fafafa;
  overflow: hidden;
}

.services-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.carousel-controls {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #1a2e6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: #1a2e6e;
  color: #ffffff;
  border-color: #1a2e6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 46, 110, 0.25);
}

.services-slider {
  display: flex !important;
  gap: 1.5rem !important;
  overflow-x: auto !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 1rem 1.5rem 2rem !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  /* Firefox */
  -ms-overflow-style: none !important;
  /* IE/Edge */
  scroll-behavior: smooth !important;
}

.services-slider::-webkit-scrollbar {
  display: none !important;
  /* Chrome, Safari, Opera */
  width: 0 !important;
  height: 0 !important;
}

.service-slide {
  flex: 0 0 calc(25% - 1.15rem) !important;
  /* Exactly 4 cards visible at a time */
  min-width: 260px !important;
  scroll-snap-align: start !important;
  display: flex !important;
}

@media (max-width: 1200px) {
  .service-slide {
    flex: 0 0 calc(33.333% - 1rem) !important;
  }
}

@media (max-width: 900px) {
  .service-slide {
    flex: 0 0 calc(50% - 0.75rem) !important;
  }
}

@media (max-width: 600px) {
  .service-slide {
    flex: 0 0 85% !important;
  }
}

.service-card {
  background: #fff;
  border-radius: 2rem;
  border: 1px solid var(--gray-100);
  padding: 2rem 1.5rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.service-icon-wrap.orange {
  background: #fff7ed;
  color: var(--orange);
}

.service-icon-wrap.blue {
  background: #eff6ff;
  color: var(--blue-500);
}

.service-icon-wrap.green {
  background: #f0fdf4;
  color: var(--green-500);
}

.service-icon-wrap.purple {
  background: #faf5ff;
  color: var(--purple-500);
}

.service-icon-wrap.yellow {
  background: #fefce8;
  color: #ca8a04;
}

.service-icon-wrap.teal {
  background: #f0fdfa;
  color: var(--teal-500);
}

.service-icon-wrap.red {
  background: #fef2f2;
  color: #ef4444;
}

.service-icon-wrap.indigo {
  background: #eef2ff;
  color: #6366f1;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.service-btns {
  display: flex !important;
  gap: 0.5rem !important;
  width: 100% !important;
  margin-top: auto !important;
}

.svc-btn {
  flex: 1 1 50% !important;
  min-width: 0 !important;
  padding: 0.65rem 0.3rem !important;
  border-radius: 0.75rem !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  /* Force text onto single line */
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
}

.svc-btn.outline-orange {
  border: 1.5px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.svc-btn.outline-orange:hover {
  background: var(--orange-50);
}

.svc-btn.solid-orange {
  background: var(--orange);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(255, 87, 34, .25);
}

.svc-btn.solid-orange:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 87, 34, .35);
}

.svc-btn.sparkle {
  animation: sparkle-fly 3s ease-in-out infinite;
}


/* =====================================================================
   HOW IT WORKS / STORY SECTION
   ===================================================================== */
.story-section {
  position: relative;
  padding: 6rem 1.5rem;
  background: #fff;
}

.dot-bg {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Story Container */
.story-container {
  position: relative;
  padding-left: 0;
  margin-top: 3rem;
}

.story-path {
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.story-progress {
  width: 100%;
  background: linear-gradient(to bottom, var(--orange), #ff9800);
  border-radius: 2px;
  height: 0%;
  transition: height .3s ease;
}

/* Story Node */
.story-node {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 5rem;
}

.story-node:last-child {
  margin-bottom: 0;
}

.story-icon-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gray-400);
  box-shadow: var(--shadow-sm);
  z-index: 5;
  transition: border-color .4s, color .4s, background .4s;
}

.story-node.active .story-icon-container {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-50);
}

.story-card {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gray-100);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.step-badge {
  display: inline-block;
  font-size: .625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .5rem;
}

.step-badge.orange {
  color: var(--orange);
}

.step-badge.blue {
  color: var(--blue-500);
}

.step-badge.green {
  color: var(--green-500);
}

.story-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .75rem;
}

.story-card>p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Story Animation Box */
.story-anim {
  background: var(--gray-50);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 8rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Packing Animation */
.packing-anim {
  justify-content: center;
}

.packing-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
}

.pp1 {
  top: 25%;
  left: 25%;
  animation: none;
}

.pp2 {
  top: 20%;
  right: 25%;
  background: #fb923c;
}

.pp3 {
  top: 15%;
  left: 45%;
  background: #fbbf24;
}

.story-node.active .packing-particle {
  animation: particlePop .6s ease-out forwards;
}

@keyframes particlePop {
  0% {
    transform: scale(0) translate(0, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1) translate(var(--tx, 20px), var(--ty, -20px));
    opacity: 0;
  }
}

.pp1 {
  --tx: -30px;
  --ty: -25px;
  animation-delay: .1s !important;
}

.pp2 {
  --tx: 30px;
  --ty: -30px;
  animation-delay: .2s !important;
}

.pp3 {
  --tx: 0px;
  --ty: -40px;
  animation-delay: .3s !important;
}

.packing-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  position: relative;
  z-index: 10;
  transform: scale(.7);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
}

.story-node.active .packing-boxes {
  transform: scale(1);
  opacity: 1;
}

.pbox {
  width: 48px;
  height: 48px;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
}

.pbox-orange {
  background: var(--orange);
  font-size: 1.5rem;
}

.pbox-light {
  background: #fb923c;
}

.pbox-mid {
  background: #f97316;
  font-size: 1.2rem;
}

/* Truck Animation */
.truck-anim {
  overflow: hidden;
}

.road-line {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  height: 2px;
  border-bottom: 2px dashed var(--gray-200);
}

.speed-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--orange-100));
  border-radius: 2px;
  transform-origin: right;
  transform: scaleX(0);
}

.sl1 {
  width: 80px;
  top: 3rem;
  right: 30%;
}

.sl2 {
  width: 50px;
  top: 4rem;
  right: 38%;
}

.story-node.active .speed-line {
  animation: speedLine 1s ease-in-out infinite;
}

.road-dash {
  position: absolute;
  bottom: 1.45rem;
  width: 24px;
  height: 3px;
  background: var(--gray-300);
  border-radius: 2px;
}

.rd1 {
  left: 2.5rem;
}

.rd2 {
  left: 10rem;
}

.story-node.active .road-dash {
  animation: roadDash 1.5s linear infinite;
}

.truck-icon-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}

.truck-icon {
  font-size: 3.75rem;
  color: var(--orange);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, .15));
  display: block;
  transform: translateX(-60px);
  opacity: 0;
}

.story-node.active .truck-icon {
  animation: truckDrive 3s ease-in-out infinite;
}

/* Delivery Animation */
.delivery-anim {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.shockwave-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(34, 197, 94, .4);
  border-radius: 50%;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

.story-node.active .shockwave-ring {
  animation: shockwave 1s ease-out infinite;
}

.checkmark-box {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  background: var(--green-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 4px solid #fff;
  margin-bottom: -.625rem;
  position: relative;
  z-index: 10;
  transform: translateY(-40px) scale(.8);
  opacity: 0;
  transition: transform .5s ease .2s, opacity .5s ease .2s;
}

.story-node.active .checkmark-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ground-line {
  width: 128px;
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, .06);
}


/* =====================================================================
   ABOUT SECTION
   ===================================================================== */
.about-section {
  padding: 6rem 1.5rem;
  background: #fff;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    flex-direction: row;
    gap: 5rem;
  }
}

/* About cards grid */
.about-cards {
  flex: 1;
  width: 100%;
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.about-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(255, 237, 213, .4);
  filter: blur(64px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.about-col-offset {
  margin-top: 3rem;
}

.about-card {
  background: #fff;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
  transition: box-shadow .3s;
}

.about-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  transition: transform .2s;
}

.about-card:hover .about-card-icon {
  transform: scale(1.1);
}

.about-card-icon.orange {
  background: #fff7ed;
  color: #f97316;
}

.about-card-icon.blue {
  background: #eff6ff;
  color: var(--blue-500);
}

.about-card-icon.green {
  background: #f0fdf4;
  color: var(--green-500);
}

.about-card-icon.purple {
  background: #faf5ff;
  color: var(--purple-500);
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
}

.about-card p {
  font-size: .875rem;
  color: var(--gray-500);
}

/* About Text */
.about-text {
  flex: 1;
  width: 100%;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 2rem;
}

.about-paras {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-paras p {
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 520px;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.check-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: transform .2s;
}

.check-item:hover .check-circle {
  transform: scale(1.1);
}

.check-item span {
  font-weight: 700;
  color: var(--gray-900);
}


/* =====================================================================
   ORANGE BAND SECTION
   ===================================================================== */
.orange-band {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #b91c1c, #dc2626, #f59e0b);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.orange-glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  pointer-events: none;
  filter: blur(80px);
}

.og1 {
  width: 50%;
  height: 50%;
  top: -20%;
  right: -20%;
}

.og2 {
  width: 40%;
  height: 40%;
  bottom: 10%;
  left: -10%;
  filter: blur(100px);
}

.orange-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.orange-card {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  transition: transform .3s;
}

.orange-card:hover {
  transform: translateY(-6px);
}

.orange-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, .1);
}

.orange-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: .025em;
}

.orange-card p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.7;
}


/* =====================================================================
   GST SECTION
   ===================================================================== */
.gst-section {
  padding: 5rem 1.5rem;
  background: #fafafa;
  border-top: 1px solid var(--gray-100);
}

.gst-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gst-card {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

.gst-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gst-pct {
  font-size: 2.25rem;
  font-weight: 900;
  display: block;
  margin-bottom: 1rem;
}

.gst-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .75rem;
}

.gst-card p {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.7;
}


/* =====================================================================
   CONTACT SECTION
   ===================================================================== */
.contact-section {
  padding: 6rem 1.5rem;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 20s ease-in-out infinite;
}

.cb1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ff9800, #ff5722);
  opacity: .06;
  top: -15%;
  right: -10%;
}

.cb2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #ffb347, #ff5722);
  opacity: .05;
  bottom: -15%;
  left: -8%;
  animation-delay: -7s;
}

.contact-inner {
  position: relative;
  z-index: 10;
}

.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.contact-section>div>p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* =====================================================================
   FOOTER & LEGAL STYLING
   ===================================================================== */
.footer {
  background: linear-gradient(135deg, #0b1536 0%, #152454 50%, #0d193d 100%) !important;
  color: #cbd5e1 !important;
  padding: 4.5rem 1.5rem 2rem !important;
  border-top: 4px solid #dc2626 !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}

.footer-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  width: 100% !important;
  display: block !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1.1fr 0.9fr 1.3fr !important;
  gap: 2rem !important;
  margin-bottom: 3.5rem !important;
  width: 100% !important;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }
}

.footer-col {
  display: flex !important;
  flex-direction: column !important;
}

.footer-col h4 {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-top: 0 !important;
  margin-bottom: 1.35rem !important;
  letter-spacing: 0.03em !important;
  position: relative !important;
  padding-bottom: 0.6rem !important;
}

.footer-col h4::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 35px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #dc2626, #f59e0b) !important;
  border-radius: 2px !important;
}

.footer-brand {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.footer-logo-wrap {
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.96) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  align-self: flex-start !important;
  margin-bottom: 0.5rem !important;
  max-width: 220px !important;
}

.footer-logo-img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  max-width: 190px !important;
  object-fit: contain !important;
  display: block !important;
}

.footer-tagline {
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  color: #94a3b8 !important;
  margin: 0 !important;
}

.footer-badges {
  display: flex !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
  margin-top: 0.5rem !important;
}

.f-badge {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 0.3rem 0.65rem !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
}

.f-badge i {
  color: #f59e0b !important;
}

.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.65rem !important;
}

.footer-links li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-links li a {
  color: #94a3b8 !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  text-decoration: none !important;
}

.footer-links li a i {
  font-size: 0.75rem !important;
  color: #dc2626 !important;
  transition: transform 0.2s ease !important;
}

.footer-links li a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.footer-links li a:hover i {
  color: #f59e0b !important;
}

.footer-contact-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.f-contact-item {
  display: flex !important;
  gap: 0.85rem !important;
  align-items: flex-start !important;
  font-size: 0.875rem !important;
  color: #94a3b8 !important;
  line-height: 1.5 !important;
}

.f-contact-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(220, 38, 38, 0.15) !important;
  color: #f87171 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  flex-shrink: 0 !important;
}

.f-contact-text span {
  display: block !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-weight: 700 !important;
  color: #f59e0b !important;
  margin-bottom: 0.15rem !important;
}

.f-contact-text a {
  color: #ffffff !important;
  font-weight: 600 !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
}

.f-contact-text a:hover {
  color: #f59e0b !important;
}

.footer-bottom {
  padding-top: 2rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}

.footer-bottom-copy {
  font-size: 0.82rem !important;
  color: #64748b !important;
  margin: 0 !important;
}

.footer-bottom-copy a {
  color: #f59e0b !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.footer-bottom-copy a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.footer-bottom-links {
  display: flex !important;
  gap: 1.5rem !important;
  flex-wrap: wrap !important;
}

.footer-bottom-links a {
  font-size: 0.8rem !important;
  color: #94a3b8 !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
}

.footer-bottom-links a:hover {
  color: #ffffff !important;
}


/* Legal Pages Styling */
.legal-hero {
  padding: 130px 1.5rem 50px;
  background: linear-gradient(135deg, #0b1536 0%, #1a2e6e 100%);
  color: #fff;
  text-align: center;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.legal-breadcrumb a {
  color: #f59e0b;
  font-weight: 600;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
}

.legal-subtitle {
  font-size: 0.95rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.legal-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.legal-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

@media (max-width: 640px) {
  .legal-card {
    padding: 1.75rem 1.25rem;
  }
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f1f5f9;
}

.legal-section h2 i {
  color: #dc2626;
}

.legal-section p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section ul li {
  font-size: 0.93rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 0.5rem;
}

.legal-notice-box {
  background: #eff6ff;
  border-left: 4px solid #1a2e6e;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  color: #1e3a8a;
  font-size: 0.92rem;
  line-height: 1.6;
}

.legal-notice-box.warning {
  background: #fffbe8;
  border-left-color: #f59e0b;
  color: #78350f;
}



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

.mobile-toggle {
  display: none;
  background: #f1f5f9;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: .75rem;
  color: #1a2e6e;
  font-size: 1.4rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.mobile-toggle:hover {
  background: #1a2e6e;
  color: #ffffff;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1023px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
  }

  .nav-links.nav-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 125px;
    padding-bottom: 50px;
  }

  .hero-headline {
    min-height: 120px;
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas a {
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    padding: .45rem .85rem;
    font-size: .78rem;
  }

  .hero-card-deck {
    height: 340px;
  }

  .deck-card-main {
    padding: 1.2rem;
    gap: 1rem;
  }

  .deck-icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }

  .deck-card-content h4 {
    font-size: 1rem;
  }

  .deck-card-content p {
    font-size: .75rem;
  }

  .stats-cards {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }

  .stat-card {
    padding: 1.25rem .75rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-slide {
    flex: 0 0 270px;
  }

  .about-cards {
    flex-direction: column;
  }

  .about-col-offset {
    margin-top: 0;
  }

  .orange-cards-grid {
    grid-template-columns: 1fr;
  }

  .gst-cards {
    grid-template-columns: 1fr;
  }

  .contact-btns {
    flex-direction: column;
    width: 100%;
  }

  .contact-btns a {
    width: 100%;
    justify-content: center;
  }
}


/* =====================================================================
   HOUSE 2 HOUSE — NEW SECTIONS
   ===================================================================== */

/* ── Ticker Bar ── */
.ticker-bar {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #dc2626, #f59e0b);
  color: #fff;
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-inner {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
}

.ticker-content span {
  padding: 0 2.5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}

.ticker-content span i {
  font-size: .9rem;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Adjust hero to account for ticker */
.hero-section {
  padding-top: 118px;
}

/* ── Branches Section ── */
.branches-section {
  padding: 5rem 1.5rem 6rem;
  background: #fff;
}

/* City Cards Grid & Uniform Image Sizing */
.branch-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .branch-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .branch-cards-grid {
    grid-template-columns: 1fr;
  }
}

.branch-card {
  position: relative !important;
  border-radius: 1.5rem !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-sm) !important;
  height: 220px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: transform .3s ease, box-shadow .3s ease !important;
}

.branch-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-xl) !important;
}

.branch-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform .5s ease !important;
}

.branch-card:hover img {
  transform: scale(1.08) !important;
}

.branch-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%) !important;
  pointer-events: none !important;
}

.branch-card-info {
  position: absolute !important;
  bottom: 1.25rem !important;
  left: 1.25rem !important;
  right: 1.25rem !important;
  z-index: 5 !important;
  color: #ffffff !important;
}

.branch-card-info h3 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 0.2rem 0 !important;
}

/* ── Branches Split View Layout ── */
.branches-split-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .branches-split-wrap {
    grid-template-columns: 1fr;
  }
}

.branch-directory-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-height: 520px;
  overflow-y: auto;
  padding-right: .5rem;
}

.branch-directory-list::-webkit-scrollbar {
  width: 6px;
}

.branch-directory-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.directory-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
}

.directory-item:hover,
.directory-item.active {
  background: #ffffff;
  border-color: #1a2e6e;
  box-shadow: 0 10px 25px rgba(26, 46, 110, 0.08);
  transform: translateX(4px);
}

.directory-item.active {
  border-left: 4px solid #dc2626;
}

.dir-icon {
  width: 42px;
  height: 42px;
  border-radius: .8rem;
  background: #ffffff;
  color: #1a2e6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
  flex-shrink: 0;
}

.directory-item:hover .dir-icon,
.directory-item.active .dir-icon {
  background: #1a2e6e;
  color: #ffffff;
}

.dir-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: .15rem;
}

.dir-info span {
  font-size: .75rem;
  color: #64748b;
  font-weight: 600;
}

.dir-badge {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 900;
  padding: .2rem .6rem;
  border-radius: 999px;
}

.dir-badge.hq {
  background: #1a2e6e;
  color: #ffffff;
}

.dir-badge.hub {
  background: #dc2626;
  color: #ffffff;
}

.branch-card-info p {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-top: .15rem;
}

/* HQ & Hub Badges */
.branch-hq-badge,
.branch-hub-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  padding: .25rem .6rem;
  border-radius: var(--radius-full);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.branch-hq-badge {
  background: linear-gradient(135deg, #1a2e6e, #2a4598);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 46, 110, .4);
}

.branch-hub-badge {
  background: linear-gradient(135deg, #dc2626, #f59e0b);
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, .4);
}

/* Leaflet Map */
.map-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  border: 1px solid var(--gray-100);
}

#branchMap {
  width: 100%;
  height: 480px;
  background: #f8f9fa;
}

.map-reset-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: all .2s;
}

.map-reset-btn:hover {
  color: #ff5722;
  box-shadow: var(--shadow-lg);
}

/* Leaflet custom popup */
.leaflet-popup-content-wrapper {
  border-radius: 1rem !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15) !important;
  border: none !important;
  padding: 0 !important;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0 !important;
}

.branch-popup {
  padding: .75rem 1rem;
  min-width: 140px;
}

.branch-popup strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #1a2e6e;
}

.branch-popup span {
  font-size: .7rem;
  color: var(--gray-500);
  font-weight: 600;
}

.leaflet-popup-tip {
  background: #fff !important;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  border: 2px solid #f1f5f9;
  transition: transform .25s, box-shadow .25s;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
  animation: none;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15), 0 0 0 0 rgba(37, 211, 102, .3);
  }

  50% {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* =====================================================================
   HOUSE 2 HOUSE — BRAND IDENTITY
   ===================================================================== */

/* Crimson Red + Yellow + Navy gradient text */
.text-gradient-navy {
  background: linear-gradient(135deg, #1a2e6e, #dc2626, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── H2H Logo ── */
.h2h-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.h2h-icon-wrap {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0;
  position: relative;
}

.h2h-house {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.h2h-house-left {
  color: #1a2e6e;
}

.h2h-house-right {
  color: #dc2626;
}

.h2h-two {
  font-size: 2.4rem;
  font-weight: 900;
  color: #1a2e6e;
  line-height: 1;
  margin: 0 .1rem;
}

/* Small logo variant (footer) */
.h2h-icon-wrap.sm .h2h-house {
  font-size: 1.1rem;
}

.h2h-icon-wrap.sm .h2h-two {
  font-size: 1.7rem;
}

.h2h-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.h2h-name {
  font-size: .95rem;
  font-weight: 900;
  color: #1a2e6e;
  letter-spacing: .04em;
}

.h2h-2 {
  color: #dc2626;
}

.h2h-sub {
  font-size: .62rem;
  font-weight: 700;
  color: #f59e0b;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Navy Primary Button ── */
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1a2e6e, #2a4598);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: 0 20px 40px rgba(26, 46, 110, .25);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(26, 46, 110, .35);
}

.btn-navy::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}

/* ── Navy Service Buttons ── */
.svc-btn.outline-navy {
  border: 1.5px solid #1a2e6e;
  color: #1a2e6e;
  background: transparent;
}

.svc-btn.outline-navy:hover {
  background: #eff4ff;
}

.svc-btn.solid-navy {
  background: linear-gradient(135deg, #1a2e6e, #2a4598);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(26, 46, 110, .25);
}

.svc-btn.solid-navy:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(26, 46, 110, .35);
}

/* ── Nav Tagline ── */
.nav-tagline {
  display: none;
  gap: 1rem;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: .05em;
  padding-top: .5rem;
  border-top: 1px solid var(--gray-100);
  margin-top: .5rem;
}

@media (min-width: 1100px) {
  .nav-tagline {
    display: flex;
  }
}

/* ── Footer phones ── */
.footer-phones {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-phones a {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255, 255, 255, .75);
  font-size: .875rem;
  font-weight: 600;
  transition: color .2s;
}

.footer-phones a:hover {
  color: #ff5722;
}

/* Update hero badge live dot to navy */
.hero-center-circle {
  background: #eff4ff;
}

.hero-truck-icon {
  color: #1a2e6e;
}

.hero-badge-pill {
  background: #1a2e6e;
}

/* Step badges navy */
.step-badge.orange {
  color: #1a2e6e;
}

/* Story icon active — navy */
.story-node.active .story-icon-container {
  border-color: #1a2e6e;
  color: #1a2e6e;
  background: #eff4ff;
}

/* Story progress bar — navy */
.story-progress {
  background: linear-gradient(to bottom, #1a2e6e, #ff5722);
}

/* About check circle — navy */
.check-circle {
  background: #eff4ff;
  color: #1a2e6e;
}

/* Stat icon — navy */
.stat-icon-wrap {
  color: #1a2e6e;
  background: #eff4ff;
}

.stat-card:hover .stat-label {
  color: #1a2e6e;
}

/* =====================================================================
   GLOBAL "GET FREE QUOTE & BOOK NOW" MODAL POPUP STYLES
   ===================================================================== */
.quote-modal-overlay {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(11, 21, 54, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 999999 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.25rem !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.quote-modal-overlay.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.quote-modal-card {
  background: #ffffff !important;
  width: 100% !important;
  max-width: 620px !important;
  border-radius: 1.75rem !important;
  padding: 2.25rem 2rem !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35) !important;
  position: relative !important;
  transform: translateY(20px) scale(0.95) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.quote-modal-overlay.active .quote-modal-card {
  transform: translateY(0) scale(1) !important;
}

.quote-modal-close {
  position: absolute !important;
  top: 1.25rem !important;
  right: 1.25rem !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: #f1f5f9 !important;
  color: #475569 !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.quote-modal-close:hover {
  background: #dc2626 !important;
  color: #ffffff !important;
}

.quote-modal-header {
  text-align: center !important;
  margin-bottom: 1.5rem !important;
}

.quote-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: 999px !important;
  background: #fff7ed !important;
  color: #ff5722 !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.5rem !important;
}

.quote-modal-header h3 {
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  color: #1a2e6e !important;
  margin: 0 0 0.4rem 0 !important;
}

.quote-modal-header p {
  font-size: 0.88rem !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.quote-modal-form .form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem !important;
}

@media (max-width: 600px) {
  .quote-modal-form .form-grid {
    grid-template-columns: 1fr !important;
  }
}

.quote-modal-form .form-group {
  margin-bottom: 1rem !important;
}

.quote-modal-form .form-group.full-width {
  grid-column: 1 / -1 !important;
}

.quote-modal-form label {
  display: flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  color: #334155 !important;
  margin-bottom: 0.4rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

.quote-modal-form label i {
  color: #ff5722 !important;
  font-size: 0.95rem !important;
}

.quote-modal-form .form-control {
  width: 100% !important;
  padding: 0.85rem 1rem !important;
  border-radius: 0.85rem !important;
  border: 1.5px solid #cbd5e1 !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: #64748b !important;
  background: #ffffff !important;
  outline: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.quote-modal-form .form-control::placeholder {
  color: #94a3b8 !important;
  font-weight: 400 !important;
}

.quote-modal-form select.form-control option {
  font-weight: 400 !important;
  color: #64748b !important;
}

.quote-modal-form .form-control:focus {
  border-color: #ff5722 !important;
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.12) !important;
  color: #334155 !important;
}

.btn-submit-quote {
  width: 100% !important;
  padding: 1.1rem !important;
  border-radius: 0.85rem !important;
  background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%) !important;
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  margin-top: 0.5rem !important;
}

.btn-submit-quote:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(255, 87, 34, 0.4) !important;
}

.modal-footer-note {
  text-align: center !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #64748b !important;
  margin-top: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
}

/* ===== ANIMATED H2H PACKERS MOVING TRUCK WIDGET ===== */
.stats-img-wrap {
  flex: 1;
  min-width: 320px;
  position: relative;
}

.stats-truck-animated-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 20px;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.stats-truck-badge {
  position: absolute;
  top: 18px;
  left: 20px;
  background: rgba(255, 87, 34, 0.15);
  color: #ff5722;
  border: 1px solid rgba(255, 87, 34, 0.3);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

/* Background Moving Scenery Layer (Trees) */
.truck-trees-layer {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  height: 160px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
}

.trees-track {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  width: 200%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: moveTreesPassBy 6s linear infinite;
}

.tree-item {
  color: #64748b;
  font-size: 10rem;
  line-height: 1;
  display: flex;
  align-items: flex-end;
}

.tree-item.tree-large {
  font-size: 5rem;
  color: #475569;
}

.tree-item.tree-small {
  font-size: 2.5rem;
  color: #94a3b8;
}

@keyframes moveTreesPassBy {
  0% {
    transform: translateX(0);
  }

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

/* Truck Stage Positioned Directly On Road Surface Line */
.stats-truck-stage {
  position: absolute;
  bottom: -109px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 3;
}

.stats-moving-truck {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.55));
  animation: truckDriveBounce 2.4s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}

.stats-truck-animated-box:hover .stats-moving-truck {
  transform: translateX(10px) translateY(-2px) scale(1.02);
}

@keyframes truckDriveBounce {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-2px) rotate(-0.4deg);
  }

  50% {
    transform: translateY(0px) rotate(0.2deg);
  }

  75% {
    transform: translateY(-1px) rotate(-0.2deg);
  }

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

.truck-road-line {
  position: absolute;
  bottom: 20px;
  left: 5%;
  width: 90%;
  height: 5px;
  background: #1e293b;
  border-radius: 99px;
  overflow: hidden;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.truck-road-dashes {
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(90deg,
      #ff5722 0px,
      #ff5722 25px,
      transparent 25px,
      transparent 50px);
  animation: roadSpeedDashes 0.8s linear infinite;
}

@keyframes roadSpeedDashes {
  0% {
    transform: translateX(0);
  }

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

.truck-speed-drift {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
}

.speed-particle {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 87, 34, 0.8), transparent);
  border-radius: 99px;
  animation: speedDrift 1.2s linear infinite;
}

.speed-particle:nth-child(1) {
  top: 10%;
  width: 60px;
  animation-duration: 0.9s;
}

.speed-particle:nth-child(2) {
  top: 40%;
  width: 90px;
  animation-duration: 0.7s;
  animation-delay: 0.2s;
}

.speed-particle:nth-child(3) {
  top: 75%;
  width: 50px;
  animation-duration: 1.1s;
  animation-delay: 0.4s;
}

@keyframes speedDrift {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    transform: translateX(-20%);
    opacity: 0;
  }
}