/* ============================================================
   RAA ENTERPRISE — Premium Design System
   Moving Today • Delivering Tomorrow
   ============================================================ */

/* --- Design Tokens / CSS Variables --- */
:root {
  /* Brand Colors */
  --color-navy: #0a1628;
  --color-navy-light: #132240;
  --color-navy-medium: #1a2d4a;
  --color-red: #c41e3a;
  --color-red-dark: #a01830;
  --color-red-light: #e8354f;
  --color-white: #ffffff;
  --color-off-white: #f8f9fc;
  --color-gray-50: #f4f5f7;
  --color-gray-100: #ebedf2;
  --color-gray-200: #d1d5de;
  --color-gray-300: #a8aebb;
  --color-gray-400: #7c8494;
  --color-gray-500: #5a6274;
  --color-gray-600: #3d4452;
  --color-gold: #d4a853;

  /* Gradients */
  --gradient-navy: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0f1d33 100%);
  --gradient-red: linear-gradient(135deg, #c41e3a 0%, #e8354f 100%);
  --gradient-hero: linear-gradient(160deg, #0a1628 0%, #132240 40%, #1a2d4a 70%, #0f1d33 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  --gradient-cta: linear-gradient(135deg, #0a1628 0%, #c41e3a 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes (Fluid) */
  --text-xs: clamp(0.7rem, 0.8vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.9vw, 0.9rem);
  --text-base: clamp(0.95rem, 1vw, 1.05rem);
  --text-lg: clamp(1.05rem, 1.15vw, 1.2rem);
  --text-xl: clamp(1.2rem, 1.4vw, 1.4rem);
  --text-2xl: clamp(1.4rem, 1.8vw, 1.8rem);
  --text-3xl: clamp(1.8rem, 2.4vw, 2.4rem);
  --text-4xl: clamp(2.2rem, 3.2vw, 3.2rem);
  --text-5xl: clamp(2.8rem, 4vw, 4.2rem);
  --text-6xl: clamp(3.2rem, 5vw, 5.5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-section: clamp(5rem, 8vw, 8rem);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 16px 60px rgba(10, 22, 40, 0.16);
  --shadow-glow-red: 0 0 30px rgba(196, 30, 58, 0.3);
  --shadow-glow-navy: 0 0 30px rgba(10, 22, 40, 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-gray-600);
  background-color: var(--color-white);
  overflow-x: hidden;
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray-50);
}

::-webkit-scrollbar-thumb {
  background: var(--color-navy);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-red);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section-padding {
  padding: var(--space-section) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-lg);
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--color-red);
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-400);
  max-width: 600px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.text-center .section-label {
  justify-content: center;
}

.text-white {
  color: var(--color-white);
}

.bg-light {
  background-color: var(--color-off-white);
}

.bg-navy {
  background: var(--gradient-navy);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-red);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  width: 80px;
  height: auto;
  margin-bottom: var(--space-xl);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader__bar-track {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader__bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-red);
  border-radius: var(--radius-full);
  animation: preloaderFill 1.8s var(--ease-in-out) forwards;
}

.preloader__text {
  margin-top: var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

@keyframes preloaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.navbar__logo {
  height: 48px;
  width: auto;
  transition: var(--transition-fast);
}

.navbar.scrolled .navbar__logo {
  height: 40px;
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
}

.navbar__brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.navbar.scrolled .navbar__brand-name {
  color: var(--color-navy);
}

.navbar__brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.navbar.scrolled .navbar__brand-tagline {
  color: var(--color-gray-300);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.navbar__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-white);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar.scrolled .navbar__link {
  color: var(--color-gray-500);
}

.navbar.scrolled .navbar__link:hover,
.navbar.scrolled .navbar__link.active {
  color: var(--color-navy);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.navbar__phone i {
  color: var(--color-red);
}

.navbar.scrolled .navbar__phone {
  color: var(--color-navy);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
}

.navbar__hamburger span {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.navbar.scrolled .navbar__hamburger span {
  background: var(--color-navy);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.navbar__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 85vw);
  height: 100vh;
  background: var(--color-navy);
  padding: 100px var(--space-2xl) var(--space-2xl);
  transition: right var(--transition-slow);
  z-index: 50;
  overflow-y: auto;
}

.navbar__mobile-menu.active {
  right: 0;
}

.navbar__mobile-menu .navbar__link {
  display: block;
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar__mobile-menu .navbar__link:hover {
  color: var(--color-white);
  padding-left: var(--space-md);
}

.navbar__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 40;
}

.navbar__mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn--primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn--outline-dark:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--text-base);
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--text-xs);
}

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Magnetic wrapper */
.magnetic-wrap {
  display: inline-block;
  position: relative;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--navbar-height);
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.7) saturate(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.7) 0%,
    rgba(10, 22, 40, 0.45) 40%,
    rgba(10, 22, 40, 0.55) 70%,
    rgba(10, 22, 40, 0.85) 100%
  );
  z-index: 2;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: var(--color-red);
  top: -10%;
  right: -5%;
  animation: floatShape 15s ease-in-out infinite;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: #1e4a8a;
  bottom: -10%;
  left: -5%;
  animation: floatShape 20s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 300px;
  height: 300px;
  background: var(--color-red-light);
  top: 50%;
  left: 50%;
  animation: floatShape 18s ease-in-out infinite 3s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 750px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(196, 30, 58, 0.15);
  border: 1px solid rgba(196, 30, 58, 0.3);
  color: var(--color-red-light);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
}

.hero__badge i {
  font-size: 0.6rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.hero__title span {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 550px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__route-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
}

.hero__route-badge strong {
  color: var(--color-white);
  font-weight: 600;
}

.hero__route-badge .route-arrow {
  color: var(--color-red);
  font-weight: 700;
  margin: 0 var(--space-xs);
}

/* Hero Truck Visual */
.hero__visual {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 55%;
  max-width: 800px;
  z-index: 4;
  pointer-events: none;
}

.hero__truck-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  opacity: 0.85;
}

/* Road Animation at bottom */
.hero__road {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 4;
  overflow: hidden;
}

.hero__road-surface {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.8) 30%, #1a1a1a 50%, #222 100%);
  position: relative;
}

.hero__road-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 200%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 0px,
    rgba(255, 255, 255, 0.4) 40px,
    transparent 40px,
    transparent 80px
  );
  animation: roadMove 2s linear infinite;
}

@keyframes roadMove {
  0% { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(-80px); }
}


/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  position: relative;
  background: var(--gradient-navy);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.stats__item {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stats__number span {
  color: var(--color-red);
}

.stats__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.05em;
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.service-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(196, 30, 58, 0.08);
  color: var(--color-red);
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: var(--color-red);
  color: var(--color-white);
  transform: scale(1.1);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  line-height: 1.7;
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-red);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================================
   ROUTES / MAP SECTION
   ============================================================ */
.routes {
  position: relative;
  overflow: hidden;
}

.routes__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  margin-top: var(--space-3xl);
}

.routes__map-container {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 600px;
}

.routes__map-container svg {
  width: 100%;
  height: 100%;
}

.routes__cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.routes__city-group h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.routes__city-group h3 .state-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.routes__city-group h3 .state-dot--gj {
  background: var(--color-red);
}

.routes__city-group h3 .state-dot--mh {
  background: var(--color-navy);
}

.routes__city-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--text-base);
  color: var(--color-gray-500);
  transition: all var(--transition-fast);
  cursor: default;
}

.routes__city-list li:hover {
  color: var(--color-navy);
  padding-left: var(--space-sm);
}

.routes__city-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gray-200);
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.routes__city-list li:hover::before {
  background: var(--color-red);
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.03));
  color: var(--color-red);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.why-card:hover .why-card__icon {
  background: var(--color-red);
  color: var(--color-white);
  transform: rotateY(180deg);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.why-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  line-height: 1.7;
}


/* ============================================================
   FLEET SECTION
   ============================================================ */
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.fleet-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-base);
}

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

.fleet-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.fleet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.fleet-card:hover .fleet-card__image img {
  transform: scale(1.08);
}

.fleet-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.fleet-card__body {
  padding: var(--space-xl);
}

.fleet-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.fleet-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.fleet-card__spec {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-gray-400);
}

.fleet-card__spec i {
  color: var(--color-red);
  font-size: 0.8rem;
  width: 16px;
}


/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process__timeline {
  position: relative;
  max-width: 800px;
  margin: var(--space-3xl) auto 0;
}

.process__line {
  position: absolute;
  left: 40px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--color-gray-100);
}

.process__line-fill {
  width: 100%;
  height: 0%;
  background: var(--gradient-red);
  transition: height 0.8s var(--ease-out);
}

.process__step {
  display: flex;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  position: relative;
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__step-number {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-gray-100);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-gray-200);
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}

.process__step.active .process__step-number {
  border-color: var(--color-red);
  color: var(--color-red);
  box-shadow: var(--shadow-glow-red);
}

.process__step-content {
  padding-top: var(--space-md);
}

.process__step-icon {
  font-size: 1.5rem;
  color: var(--color-red);
  margin-bottom: var(--space-sm);
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.process__step-desc {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  line-height: 1.7;
  max-width: 400px;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  overflow: hidden;
}

.testimonials__slider {
  margin-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  height: auto;
}

.testimonial-card__quote {
  font-size: 3rem;
  color: var(--color-red);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-md);
  font-family: Georgia, serif;
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-gray-500);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-lg);
}

.testimonial-card__stars i {
  color: var(--color-gold);
  font-size: 0.85rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  font-size: var(--text-base);
}

.testimonial-card__role {
  font-size: var(--text-sm);
  color: var(--color-gray-300);
}

/* Swiper overrides */
.swiper-pagination-bullet {
  background: var(--color-gray-200) !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-red) !important;
  width: 28px !important;
  border-radius: var(--radius-full) !important;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  max-width: 800px;
  margin: var(--space-3xl) auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-gray-100);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--color-red);
}

.faq__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gray-50);
  color: var(--color-gray-400);
  transition: all var(--transition-base);
  font-size: var(--text-sm);
}

.faq__item.active .faq__icon {
  background: var(--color-red);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq__answer-inner {
  padding-bottom: var(--space-xl);
  font-size: var(--text-base);
  color: var(--color-gray-400);
  line-height: 1.8;
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  position: relative;
  background: var(--gradient-cta);
  overflow: hidden;
}

.cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-5xl) 0;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.cta__subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta__truck {
  position: absolute;
  bottom: -20px;
  right: 5%;
  width: 300px;
  opacity: 0.08;
  z-index: 1;
}

.cta__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.cta__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.cta__shape--1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  top: -30%;
  right: 10%;
}

.cta__shape--2 {
  width: 300px;
  height: 300px;
  background: var(--color-red-light);
  bottom: -20%;
  left: 5%;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  margin-top: var(--space-3xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  position: relative;
}

.form-group__input,
.form-group__textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  background: var(--color-gray-50);
  font-size: var(--text-base);
  color: var(--color-navy);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
  color: var(--color-gray-300);
}

.form-group__input:focus,
.form-group__textarea:focus {
  border-color: var(--color-red);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group__textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group__label {
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gray-400);
  background: var(--color-gray-50);
  padding: 0 4px;
  pointer-events: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-lg);
}

.contact-info__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(196, 30, 58, 0.08);
  color: var(--color-red);
  font-size: 1.2rem;
}

.contact-info__label {
  font-size: var(--text-sm);
  color: var(--color-gray-300);
  margin-bottom: 2px;
}

.contact-info__value {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
}

.contact-info__value a {
  color: var(--color-navy);
  transition: color var(--transition-fast);
}

.contact-info__value a:hover {
  color: var(--color-red);
}

.contact__map {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--color-gray-100);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-red);
}

.footer__top {
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-lg);
  filter: brightness(0) invert(1);
}

.footer__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  position: relative;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__links a:hover {
  color: var(--color-white);
  padding-left: var(--space-sm);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer__contact-item i {
  color: var(--color-red);
  margin-top: 3px;
  width: 16px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.4);
}

.footer__contact-item a:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-xl) 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.3);
}

.footer__copyright a {
  color: var(--color-red);
}

.footer__back-to-top {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.footer__back-to-top:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: translateY(-3px);
}


/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9990;
}

.whatsapp-float__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  position: relative;
}

.whatsapp-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .routes__wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .routes__map-container {
    max-height: 400px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .hero__visual {
    display: none;
  }

  .hero__content {
    max-width: 100%;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE LARGE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }

  .navbar__menu,
  .navbar__phone {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__actions .btn {
    display: none;
  }

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

  .stats__item:not(:last-child)::after {
    display: none;
  }

  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .process__step {
    gap: var(--space-lg);
  }

  .process__step-number {
    width: 60px;
    height: 60px;
    font-size: var(--text-xl);
  }

  .process__line {
    left: 30px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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


/* ============================================================
   RESPONSIVE — MOBILE SMALL
   ============================================================ */
@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  .fleet__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .routes__cities {
    grid-template-columns: 1fr;
  }

  .hero__route-badge {
    flex-wrap: wrap;
  }

  .cta__title {
    font-size: var(--text-3xl);
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float__btn {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
}
