/* ===== CSS VARIABLES ===== */
:root {
  --blue-dark: #0a1628;
  --blue-mid: #0d2147;
  --blue-bright: #1a3a7a;
  --blue-accent: #1e5dbe;
  --saffron: #f7941d;
  --saffron-light: #fbb040;
  --saffron-dark: #e07b0a;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --light-gray: #e8edf5;
  --gray: #6b7a99;
  --dark-text: #0d1f3c;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-orange: 0 8px 30px rgba(247,148,29,0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --blue-dark: #f0f4fb;
  --blue-mid: #dce6f8;
  --card-bg: rgba(255,255,255,0.85);
  --card-border: rgba(26,58,122,0.15);
  --dark-text: #0d1f3c;
  --off-white: #ffffff;
  --white: #0d1f3c;
  --gray: #4a5568;
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--blue-dark);
  color: var(--white);
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

a { 
  text-decoration: none; 
  color: inherit; 
}

img { 
  max-width: 100%; 
  display: block; 
}

section { 
  position: relative; 
}

/* ===== LOADER ===== */
#loader {
  position: fixed; 
  inset: 0;
  background: var(--blue-dark);
  z-index: 10000;
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease;
}

.loader-truck {
  font-size: 56px;
  animation: truckDrive 1.2s ease-in-out infinite alternate;
}

@keyframes truckDrive {
  from { transform: translateX(-30px); }
  to { transform: translateX(30px); }
}

.loader-road {
  width: 240px; 
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  border-radius: 2px;
  animation: roadAnim 1.2s ease-in-out infinite;
}

@keyframes roadAnim {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.loader-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  color: var(--saffron);
  letter-spacing: 4px;
  text-transform: uppercase;
}

#loader.hidden { 
  opacity: 0; 
  pointer-events: none; 
}

/* ===== NAVBAR ===== */
nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(247,148,29,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

[data-theme="light"] nav.scrolled { 
  background: rgba(255,255,255,0.95); 
}

.nav-brand {
  display: flex; 
  align-items: center; 
  gap: 12px;
}

.nav-logo {
  width: 44px; 
  height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 10px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-orange);
}

.nav-name { 
  font-family: 'Rajdhani', sans-serif; 
}

.nav-name-main { 
  font-size: 20px; 
  font-weight: 700; 
  line-height: 1; 
  color: var(--white); 
}

.nav-name-sub { 
  font-size: 11px; 
  color: var(--saffron); 
  letter-spacing: 1px; 
  font-weight: 500; 
}

.nav-links {
  display: flex; 
  align-items: center; 
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px; 
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}

[data-theme="light"] .nav-links a { 
  color: rgba(13,31,60,0.8); 
}

.nav-links a::after {
  content: ''; 
  position: absolute; 
  bottom: -4px; 
  left: 0; 
  right: 0;
  height: 2px; 
  background: var(--saffron);
  transform: scaleX(0); 
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { 
  color: var(--saffron); 
}

.nav-links a:hover::after { 
  transform: scaleX(1); 
}

.nav-cta {
  display: flex; 
  align-items: center; 
  gap: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white; 
  border: none; 
  cursor: pointer;
  padding: 10px 24px; 
  border-radius: 8px;
  font-family: 'Nunito', sans-serif; 
  font-weight: 700; 
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(247,148,29,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247,148,29,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white); 
  border: 2px solid rgba(255,255,255,0.3); 
  cursor: pointer;
  padding: 9px 22px; 
  border-radius: 8px;
  font-family: 'Nunito', sans-serif; 
  font-weight: 700; 
  font-size: 14px;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--saffron); 
  color: var(--saffron);
  transform: translateY(-2px);
}

.theme-toggle {
  width: 38px; 
  height: 38px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer; 
  font-size: 18px; 
  transition: var(--transition);
  color: var(--saffron);
}

.theme-toggle:hover { 
  background: rgba(247,148,29,0.2); 
}

.hamburger {
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer;
  background: none; 
  border: none; 
  padding: 4px;
}

.hamburger span {
  width: 24px; 
  height: 2px;
  background: var(--white); 
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed; 
  top: 72px; 
  left: 0; 
  right: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 5%;
  border-bottom: 1px solid rgba(247,148,29,0.15);
  z-index: 999;
}

.mobile-menu.open { 
  display: block; 
}

.mobile-menu ul { 
  list-style: none; 
}

.mobile-menu ul li { 
  padding: 12px 0; 
  border-bottom: 1px solid rgba(255,255,255,0.08); 
}

.mobile-menu ul li a { 
  font-weight: 600; 
  color: rgba(255,255,255,0.85); 
}

.mobile-menu .mobile-btns { 
  display: flex; 
  gap: 12px; 
  margin-top: 16px; 
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #020c1b 0%, #0a1628 40%, #0d1f45 70%, #0a1628 100%);
  display: flex; 
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
  position: relative;
}

.hero-bg-grid {
  position: absolute; 
  inset: 0;
  background-image:
    linear-gradient(rgba(30,93,190,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,93,190,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px; 
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-1 {
  background: radial-gradient(circle, rgba(247,148,29,0.12) 0%, transparent 70%);
  top: -100px; 
  right: -100px;
}

.hero-glow-2 {
  background: radial-gradient(circle, rgba(30,93,190,0.2) 0%, transparent 70%);
  bottom: -100px; 
  left: -100px;
}

.hero-content {
  position: relative; 
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: rgba(247,148,29,0.12);
  border: 1px solid rgba(247,148,29,0.3);
  padding: 6px 16px; 
  border-radius: 100px;
  font-size: 13px; 
  font-weight: 600; 
  color: var(--saffron);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-badge i { 
  font-size: 11px; 
}

.hero-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-title span { 
  color: var(--saffron); 
  display: block; 
}

.hero-sub {
  font-size: 18px; 
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-btns {
  display: flex; 
  flex-wrap: wrap; 
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.9s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white; 
  border: none; 
  cursor: pointer;
  padding: 16px 36px; 
  border-radius: 12px;
  font-family: 'Nunito', sans-serif; 
  font-weight: 800; 
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(247,148,29,0.4);
  display: flex; 
  align-items: center; 
  gap: 10px;
}

.btn-hero-primary:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 15px 40px rgba(247,148,29,0.5); 
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2); 
  color: white; 
  cursor: pointer;
  padding: 14px 32px; 
  border-radius: 12px;
  font-family: 'Nunito', sans-serif; 
  font-weight: 700; 
  font-size: 16px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex; 
  align-items: center; 
  gap: 10px;
}

.btn-hero-secondary:hover { 
  border-color: var(--saffron); 
  color: var(--saffron); 
  transform: translateY(-3px); 
}

.hero-stats {
  display: flex; 
  flex-wrap: wrap; 
  gap: 32px;
  animation: fadeInUp 0.8s ease 1.1s both;
}

.hero-stat-num {
  font-family: 'Teko', sans-serif; 
  font-size: 36px; 
  font-weight: 600;
  color: var(--saffron); 
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px; 
  color: rgba(255,255,255,0.55); 
  font-weight: 500; 
  margin-top: 2px;
}

/* India Map SVG Section */
.hero-visual {
  position: absolute; 
  right: 0; 
  top: 0; 
  bottom: 0;
  width: 55%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  z-index: 1;
  animation: fadeIn 1.2s ease 0.4s both;
}

.india-map-container {
  position: relative; 
  width: 100%; 
  height: 100%;
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.india-map-svg {
  width: min(420px, 90%);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(30,93,190,0.3));
}

.map-pulse {
  animation: mapPulse 3s ease-in-out infinite;
}

@keyframes mapPulse {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ===== SECTION STYLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px; 
  font-weight: 700;
  color: var(--saffron); 
  letter-spacing: 3px; 
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600; 
  line-height: 1.05;
  color: var(--white);
}

[data-theme="light"] .section-title { 
  color: var(--dark-text); 
}

.section-title span { 
  color: var(--saffron); 
}

.section-desc {
  font-size: 16px; 
  color: rgba(255,255,255,0.55);
  max-width: 560px; 
  margin: 16px auto 0;
  line-height: 1.7;
}

[data-theme="light"] .section-desc { 
  color: var(--gray); 
}

/* ===== SERVICES ===== */
#services {
  padding: 100px 5%;
  background: linear-gradient(180deg, #050d1a 0%, #0a1628 100%);
}

[data-theme="light"] #services { 
  background: linear-gradient(180deg, #eef2fb 0%, #dce6f8 100%); 
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  cursor: pointer;
  transition: var(--transition);
  position: relative; 
  overflow: hidden;
}

[data-theme="light"] .service-card {
  background: rgba(255,255,255,0.9);
  border-color: rgba(26,58,122,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-card::before {
  content: '';
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-dark));
  transform: scaleX(0); 
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { 
  transform: scaleX(1); 
}

.service-card:hover {
  border-color: rgba(247,148,29,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(247,148,29,0.1);
}

.service-icon {
  width: 64px; 
  height: 64px;
  background: linear-gradient(135deg, rgba(247,148,29,0.15), rgba(247,148,29,0.05));
  border: 1px solid rgba(247,148,29,0.2);
  border-radius: 16px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(247,148,29,0.3), rgba(247,148,29,0.1));
  transform: scale(1.1) rotate(-5deg);
}

.service-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px; 
  font-weight: 700;
  color: var(--white); 
  margin-bottom: 10px;
}

[data-theme="light"] .service-name { 
  color: var(--dark-text); 
}

.service-desc {
  font-size: 14px; 
  color: rgba(255,255,255,0.55); 
  line-height: 1.7;
}

[data-theme="light"] .service-desc { 
  color: var(--gray); 
}

.service-link {
  display: inline-flex; 
  align-items: center; 
  gap: 6px;
  margin-top: 20px; 
  font-size: 13px; 
  font-weight: 700;
  color: var(--saffron);
  transition: var(--transition);
}

.service-link i { 
  font-size: 11px; 
  transition: transform 0.3s ease; 
}

.service-card:hover .service-link i { 
  transform: translateX(4px); 
}

.service-tag {
  position: absolute; 
  top: 16px; 
  right: 16px;
  background: rgba(247,148,29,0.15);
  color: var(--saffron); 
  font-size: 10px; 
  font-weight: 700;
  padding: 4px 10px; 
  border-radius: 100px; 
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== TRACKING ===== */
#tracking {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0a1628, #0d2147, #0a1628);
}

[data-theme="light"] #tracking { 
  background: linear-gradient(135deg, #f0f4fb, #dce6f8, #f0f4fb); 
}

.tracking-container {
  max-width: 700px; 
  margin: 0 auto;
}

.tracking-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
}

[data-theme="light"] .tracking-box {
  background: white;
  border-color: rgba(26,58,122,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.tracking-input-row {
  display: flex; 
  gap: 12px;
}

.tracking-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 20px;
  color: var(--white);
  font-family: 'Nunito', sans-serif; 
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}

[data-theme="light"] .tracking-input {
  background: rgba(26,58,122,0.06);
  border-color: rgba(26,58,122,0.15);
  color: var(--dark-text);
}

.tracking-input::placeholder { 
  color: rgba(255,255,255,0.35); 
}

[data-theme="light"] .tracking-input::placeholder { 
  color: rgba(13,31,60,0.35); 
}

.tracking-input:focus { 
  border-color: var(--saffron); 
  box-shadow: 0 0 0 3px rgba(247,148,29,0.15); 
}

.tracking-progress {
  margin-top: 36px; 
  display: none;
}

.tracking-progress.show { 
  display: block; 
}

.progress-steps {
  display: flex; 
  align-items: center;
}

.progress-step {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  flex: 1;
  position: relative;
}

.step-dot {
  width: 44px; 
  height: 44px; 
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 18px; 
  margin-bottom: 10px;
  transition: all 0.5s ease;
  position: relative; 
  z-index: 1;
}

.step-dot.active {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-color: var(--saffron);
  box-shadow: 0 0 20px rgba(247,148,29,0.5);
  animation: stepPulse 1.5s ease infinite;
}

.step-dot.done {
  background: #22c55e;
  border-color: #22c55e;
  box-shadow: 0 0 15px rgba(34,197,94,0.4);
}

@keyframes stepPulse {
  0%,100% { box-shadow: 0 0 20px rgba(247,148,29,0.5); }
  50% { box-shadow: 0 0 35px rgba(247,148,29,0.8); }
}

.step-label { 
  font-size: 12px; 
  font-weight: 600; 
  color: rgba(255,255,255,0.6); 
  text-align: center; 
}

[data-theme="light"] .step-label { 
  color: rgba(13,31,60,0.6); 
}

.step-label.active { 
  color: var(--saffron); 
}

.step-label.done { 
  color: #22c55e; 
}

.step-line {
  flex: 1; 
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin-top: -30px;
  transition: background 0.5s ease;
}

.step-line.done { 
  background: #22c55e; 
}

.step-line.active { 
  background: linear-gradient(90deg, #22c55e, var(--saffron)); 
}

.tracking-info {
  margin-top: 24px;
  background: rgba(247,148,29,0.08);
  border: 1px solid rgba(247,148,29,0.15);
  border-radius: 12px;
  padding: 20px;
}

.tracking-info-row {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tracking-info-row:last-child { 
  border-bottom: none; 
}

.tracking-info-label { 
  font-size: 13px; 
  color: rgba(255,255,255,0.5); 
}

[data-theme="light"] .tracking-info-label { 
  color: rgba(13,31,60,0.5); 
}

.tracking-info-val { 
  font-size: 14px; 
  font-weight: 700; 
  color: var(--white); 
}

[data-theme="light"] .tracking-info-val { 
  color: var(--dark-text); 
}

/* ===== WHY CHOOSE US ===== */
#why {
  padding: 100px 5%;
  background: linear-gradient(180deg, #050d1a, #0a1628);
}

[data-theme="light"] #why { 
  background: linear-gradient(180deg, #f8faff, #f0f4fb); 
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative; 
  overflow: hidden;
}

[data-theme="light"] .why-card {
  background: white;
  border-color: rgba(26,58,122,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.why-card::after {
  content: '';
  position: absolute; 
  inset: 0;
  background: radial-gradient(circle at center, rgba(247,148,29,0.05), transparent 70%);
  opacity: 0; 
  transition: opacity 0.4s ease;
}

.why-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(247,148,29,0.2); 
}

.why-card:hover::after { 
  opacity: 1; 
}

.why-icon {
  width: 72px; 
  height: 72px;
  background: linear-gradient(135deg, rgba(247,148,29,0.12), rgba(247,148,29,0.04));
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 30px; 
  margin: 0 auto 20px;
  border: 1px solid rgba(247,148,29,0.15);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(247,148,29,0.25), rgba(247,148,29,0.08));
}

.why-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px; 
  font-weight: 700;
  color: var(--white); 
  margin-bottom: 8px;
}

[data-theme="light"] .why-title { 
  color: var(--dark-text); 
}

.why-desc { 
  font-size: 13px; 
  color: rgba(255,255,255,0.5); 
  line-height: 1.6; 
}

[data-theme="light"] .why-desc { 
  color: var(--gray); 
}

/* ===== FLEET ===== */
#fleet {
  padding: 100px 5%;
  background: linear-gradient(135deg, #030810, #0a1628);
}

[data-theme="light"] #fleet {
  background: linear-gradient(135deg, #e8edf8, #dce6f8);
}

.fleet-carousel {
  position: relative;
  overflow: hidden;
}

.fleet-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.fleet-card {
  min-width: 300px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

[data-theme="light"] .fleet-card {
  background: white;
  border-color: rgba(26,58,122,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.fleet-card:hover { 
  transform: scale(1.02); 
  border-color: rgba(247,148,29,0.3); 
}

.fleet-img {
  height: 180px;
  background: linear-gradient(135deg, #0d2147, #1a3a7a);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 80px;
  position: relative; 
  overflow: hidden;
}

.fleet-img::before {
  content: '';
  position: absolute; 
  inset: 0;
  background: linear-gradient(135deg, rgba(247,148,29,0.1), transparent);
}

.fleet-body { 
  padding: 24px; 
}

.fleet-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px; 
  font-weight: 700; 
  color: var(--white); 
  margin-bottom: 6px;
}

[data-theme="light"] .fleet-name { 
  color: var(--dark-text); 
}

.fleet-spec {
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  margin-top: 16px;
}

.fleet-badge {
  background: rgba(247,148,29,0.1);
  border: 1px solid rgba(247,148,29,0.2);
  color: var(--saffron);
  font-size: 11px; 
  font-weight: 700;
  padding: 4px 10px; 
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.fleet-desc { 
  font-size: 13px; 
  color: rgba(255,255,255,0.5); 
}

[data-theme="light"] .fleet-desc { 
  color: var(--gray); 
}

.fleet-controls {
  display: flex; 
  gap: 12px; 
  margin-top: 32px; 
  justify-content: center;
}

.fleet-btn {
  width: 48px; 
  height: 48px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; 
  cursor: pointer;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--white); 
  font-size: 16px;
  transition: var(--transition);
}

.fleet-btn:hover {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-color: var(--saffron);
}

/* ===== INDIA MAP ===== */
#presence {
  padding: 100px 5%;
  background: linear-gradient(180deg, #0a1628, #0d2147);
}

[data-theme="light"] #presence { 
  background: linear-gradient(180deg, #eef2fb, #dce6f8); 
}

.presence-layout {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center;
}

.cities-list {
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  margin-top: 28px;
}

.city-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px; 
  border-radius: 100px;
  font-size: 13px; 
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition); 
  cursor: default;
}

[data-theme="light"] .city-chip {
  background: rgba(26,58,122,0.06);
  border-color: rgba(26,58,122,0.15);
  color: var(--dark-text);
}

.city-chip:hover { 
  background: rgba(247,148,29,0.15); 
  border-color: rgba(247,148,29,0.3); 
  color: var(--saffron); 
}

.india-big-map {
  width: 100%;
  display: flex; 
  align-items: center; 
  justify-content: center;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 100px 5%;
  background: linear-gradient(180deg, #030810, #0a1628);
}

[data-theme="light"] #testimonials { 
  background: linear-gradient(180deg, #f8faff, #f0f4fb); 
}

.testimonials-slider { 
  position: relative; 
  overflow: hidden; 
}

.testimonials-track {
  display: flex; 
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
  transition: var(--transition);
}

[data-theme="light"] .testimonial-card {
  background: white;
  border-color: rgba(26,58,122,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.testimonial-card:hover { 
  border-color: rgba(247,148,29,0.2); 
  transform: translateY(-4px); 
}

.testi-stars { 
  color: var(--saffron); 
  font-size: 14px; 
  margin-bottom: 16px; 
  letter-spacing: 2px; 
}

.testi-text { 
  font-size: 15px; 
  color: rgba(255,255,255,0.7); 
  line-height: 1.7; 
  margin-bottom: 24px; 
  font-style: italic; 
}

[data-theme="light"] .testi-text { 
  color: rgba(13,31,60,0.65); 
}

.testi-author { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
}

.testi-avatar {
  width: 48px; 
  height: 48px; 
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--blue-accent));
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 20px; 
  font-weight: 700; 
  color: white;
  flex-shrink: 0;
}

.testi-name { 
  font-weight: 700; 
  color: var(--white); 
  font-size: 15px; 
}

[data-theme="light"] .testi-name { 
  color: var(--dark-text); 
}

.testi-role { 
  font-size: 12px; 
  color: rgba(255,255,255,0.45); 
  margin-top: 2px; 
}

[data-theme="light"] .testi-role { 
  color: var(--gray); 
}

.slider-dots {
  display: flex; 
  gap: 8px; 
  justify-content: center; 
  margin-top: 32px;
}

.slider-dot {
  width: 8px; 
  height: 8px; 
  border-radius: 100px;
  background: rgba(255,255,255,0.2); 
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active { 
  width: 28px; 
  background: var(--saffron); 
}

/* ===== QUOTE ===== */
#quote {
  padding: 100px 5%;
  background: linear-gradient(135deg, #030810, #0a1628, #030810);
}

[data-theme="light"] #quote { 
  background: linear-gradient(135deg, #eef2fb, #dce6f8, #eef2fb); 
}

.quote-form-container {
  max-width: 800px; 
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
}

[data-theme="light"] .quote-form-container {
  background: white;
  border-color: rgba(26,58,122,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.quote-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
  margin-bottom: 20px;
}

.form-group { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}

.form-label {
  font-size: 13px; 
  font-weight: 700;
  color: rgba(255,255,255,0.6); 
  text-transform: uppercase; 
  letter-spacing: 1px;
}

[data-theme="light"] .form-label { 
  color: rgba(13,31,60,0.6); 
}

.form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 18px;
  color: var(--white);
  font-family: 'Nunito', sans-serif; 
  font-size: 15px;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

[data-theme="light"] .form-control {
  background: rgba(26,58,122,0.04);
  border-color: rgba(26,58,122,0.12);
  color: var(--dark-text);
}

.form-control option { 
  background: #0d2147; 
  color: white; 
}

.form-control::placeholder { 
  color: rgba(255,255,255,0.3); 
}

[data-theme="light"] .form-control::placeholder { 
  color: rgba(13,31,60,0.3); 
}

.form-control:focus { 
  border-color: var(--saffron); 
  box-shadow: 0 0 0 3px rgba(247,148,29,0.12); 
}

.quote-result {
  background: linear-gradient(135deg, rgba(247,148,29,0.1), rgba(247,148,29,0.05));
  border: 1px solid rgba(247,148,29,0.2);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
  display: none;
}

.quote-result.show { 
  display: block; 
  animation: fadeInUp 0.4s ease; 
}

.quote-result-title { 
  font-size: 13px; 
  color: var(--saffron); 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  margin-bottom: 16px; 
}

.quote-prices {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 16px;
}

.quote-price-item { 
  text-align: center; 
}

.quote-price-type { 
  font-size: 11px; 
  color: rgba(255,255,255,0.5); 
  margin-bottom: 4px; 
}

[data-theme="light"] .quote-price-type { 
  color: rgba(13,31,60,0.5); 
}

.quote-price-amount { 
  font-family: 'Teko', sans-serif; 
  font-size: 28px; 
  color: var(--white); 
  font-weight: 600; 
}

[data-theme="light"] .quote-price-amount { 
  color: var(--dark-text); 
}

.quote-price-amount span { 
  font-size: 14px; 
  color: rgba(255,255,255,0.4); 
  margin-left: 2px; 
}

/* ===== CTA BANNER ===== */
#cta {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 50%, #fbb040 100%);
  position: relative; 
  overflow: hidden;
}

#cta::before {
  content: '🚛';
  position: absolute; 
  font-size: 200px; 
  opacity: 0.08;
  right: 5%; 
  top: 50%; 
  transform: translateY(-50%);
}

.cta-content { 
  position: relative; 
  z-index: 1; 
  text-align: center; 
}

.cta-title {
  font-family: 'Teko', sans-serif; 
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600; 
  color: white; 
  line-height: 1.05; 
  margin-bottom: 16px;
}

.cta-sub { 
  font-size: 18px; 
  color: rgba(255,255,255,0.85); 
  margin-bottom: 32px; 
}

.btn-cta-white {
  background: white; 
  color: var(--saffron-dark);
  border: none; 
  cursor: pointer;
  padding: 18px 48px; 
  border-radius: 12px;
  font-family: 'Nunito', sans-serif; 
  font-weight: 800; 
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: inline-flex; 
  align-items: center; 
  gap: 12px;
}

.btn-cta-white:hover { 
  transform: translateY(-3px) scale(1.03); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.3); 
}

/* ===== FOOTER ===== */
footer {
  background: #030810;
  padding: 64px 5% 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

[data-theme="light"] footer { 
  background: #0d1f3c; 
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; 
  margin-bottom: 48px;
}

.footer-logo {
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 44px; 
  height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 10px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 22px;
}

.footer-brand-name {
  font-family: 'Rajdhani', sans-serif; 
  font-size: 18px; 
  font-weight: 700; 
  color: white;
}

.footer-desc { 
  font-size: 14px; 
  color: rgba(255,255,255,0.45); 
  line-height: 1.7; 
  max-width: 280px; 
}

.footer-contact { 
  margin-top: 20px; 
}

.footer-contact-item {
  display: flex; 
  align-items: center; 
  gap: 10px;
  font-size: 14px; 
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.footer-contact-item i { 
  color: var(--saffron); 
  width: 16px; 
}

.footer-col-title {
  font-family: 'Rajdhani', sans-serif; 
  font-size: 16px; 
  font-weight: 700;
  color: white; 
  margin-bottom: 20px;
}

.footer-links { 
  list-style: none; 
}

.footer-links li { 
  margin-bottom: 10px; 
}

.footer-links a {
  font-size: 14px; 
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-links a:hover { 
  color: var(--saffron); 
  padding-left: 4px; 
}

.social-row { 
  display: flex; 
  gap: 10px; 
  margin-top: 20px; 
}

.social-btn {
  width: 38px; 
  height: 38px;
  background: rgba(255,255,255,0.07); 
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: rgba(255,255,255,0.6); 
  font-size: 15px;
  transition: var(--transition); 
  cursor: pointer;
}

.social-btn:hover { 
  background: var(--saffron); 
  border-color: var(--saffron); 
  color: white; 
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap; 
  gap: 12px;
}

.footer-copy { 
  font-size: 13px; 
  color: rgba(255,255,255,0.3); 
}

.footer-copy span { 
  color: var(--saffron); 
}

/* ===== FLOATING BUTTONS ===== */
.float-btns {
  position: fixed; 
  bottom: 24px; 
  right: 24px;
  display: flex; 
  flex-direction: column; 
  gap: 12px;
  z-index: 500;
}

.float-btn {
  width: 56px; 
  height: 56px; 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 22px; 
  cursor: pointer; 
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.float-wa {
  background: #25d366; 
  color: white;
}

.float-wa:hover { 
  transform: scale(1.1); 
  box-shadow: 0 8px 30px rgba(37,211,102,0.5); 
}

.float-call {
  background: var(--saffron); 
  color: white;
}

.float-call:hover { 
  transform: scale(1.1); 
  box-shadow: var(--shadow-orange); 
}

.float-call { 
  display: none; 
}

/* ===== CHATBOT ===== */
.chatbot-bubble {
  width: 56px; 
  height: 56px; 
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-bright));
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 24px; 
  cursor: pointer; 
  border: none;
  box-shadow: 0 4px 20px rgba(30,93,190,0.5);
  transition: var(--transition);
}

.chatbot-bubble:hover { 
  transform: scale(1.1); 
}

.chatbot-window {
  position: fixed; 
  bottom: 90px; 
  right: 24px;
  width: 320px;
  background: #0d2147;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  z-index: 501;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  max-height: 420px;
}

.chatbot-window.open { 
  display: flex; 
  animation: chatOpen 0.3s ease; 
}

@keyframes chatOpen {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-header {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-bright));
  padding: 16px 20px;
  display: flex; 
  align-items: center; 
  gap: 12px;
}

.chat-avatar {
  width: 36px; 
  height: 36px; 
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 18px;
}

.chat-header-text { 
  flex: 1; 
}

.chat-header-name { 
  font-weight: 700; 
  font-size: 14px; 
  color: white; 
}

.chat-header-status { 
  font-size: 11px; 
  color: rgba(255,255,255,0.7); 
}

.chat-close { 
  cursor: pointer; 
  color: rgba(255,255,255,0.7); 
  font-size: 16px; 
}

.chat-messages {
  flex: 1; 
  padding: 16px;
  overflow-y: auto; 
  display: flex; 
  flex-direction: column; 
  gap: 10px;
  min-height: 200px;
}

.chat-msg {
  max-width: 85%; 
  border-radius: 12px;
  padding: 10px 14px; 
  font-size: 13px; 
  line-height: 1.5;
}

.chat-msg.bot {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-quick { 
  padding: 8px 16px; 
  display: flex; 
  flex-wrap: wrap; 
  gap: 6px; 
  border-top: 1px solid rgba(255,255,255,0.06); 
}

.chat-quick-btn {
  background: rgba(247,148,29,0.12);
  border: 1px solid rgba(247,148,29,0.2);
  color: var(--saffron); 
  font-size: 11px; 
  font-weight: 600;
  padding: 5px 10px; 
  border-radius: 100px; 
  cursor: pointer;
  transition: var(--transition);
}

.chat-quick-btn:hover { 
  background: rgba(247,148,29,0.25); 
}

.chat-input-row {
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; 
  gap: 8px;
}

.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.07); 
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; 
  padding: 8px 12px; 
  color: white;
  font-family: 'Nunito', sans-serif; 
  font-size: 13px; 
  outline: none;
}

.chat-input::placeholder { 
  color: rgba(255,255,255,0.3); 
}

.chat-send {
  width: 34px; 
  height: 34px; 
  border-radius: 8px;
  background: var(--saffron); 
  border: none; 
  cursor: pointer;
  color: white; 
  font-size: 14px;
  display: flex; 
  align-items: center; 
  justify-content: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { 
  from { opacity: 0; } 
  to { opacity: 1; } 
}

@keyframes fadeInUp { 
  from { opacity: 0; transform: translateY(30px); } 
  to { opacity: 1; transform: translateY(0); } 
}

@keyframes fadeInDown { 
  from { opacity: 0; transform: translateY(-20px); } 
  to { opacity: 1; transform: translateY(0); } 
}

.reveal {
  opacity: 0; 
  transform: translateY(30px); 
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .presence-layout { 
    grid-template-columns: 1fr; 
  }
  .testimonial-card { 
    min-width: calc(50% - 12px); 
  }
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 4%;
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #hero {
    padding: 100px 4% 60px;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 20px;
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-width: calc(100% - 0px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .float-call {
    display: flex;
  }
  .tracking-input-row {
    flex-direction: column;
  }
  .quote-prices {
    grid-template-columns: 1fr;
  }
  .chatbot-window {
    width: calc(100vw - 48px);
    right: 24px;
  }

  /* FLEET MOBILE FIXES */
  .fleet-track {
    flex-direction: column;
    gap: 20px;
  }
  .fleet-card {
    min-width: 100%;
    width: 100%;
  }
  .fleet-img {
    height: 160px;
    font-size: 64px;
  }
  .fleet-body {
    padding: 20px;
  }
  .fleet-name {
    font-size: 18px;
  }
  .fleet-desc {
    font-size: 14px;
  }
  .fleet-controls {
    margin-top: 24px;
  }

  /* QUOTE SECTION MOBILE FIXES */
  #quote {
    padding: 80px 4%;
  }
  .quote-form-container {
    padding: 24px 20px;
    max-width: 100%;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
  }
  #quote .btn-primary {
    padding: 16px 28px;
  }
  /* Fix contact info layout on mobile */
  #quote > .quote-form-container > div {
    padding: 30px 16px;
  }
  #quote .section-desc {
    font-size: 15px;
    padding: 0 10px;
  }
  /* Adjust contact cards on mobile */
  #quote > .quote-form-container > div > div:last-child {
    padding: 20px;
  }
  #quote > .quote-form-container > div > div:last-child > div {
    flex-direction: column;
    gap: 16px;
  }
  #quote > .quote-form-container > div > div:last-child > div > div {
    width: 100%;
  }
  #quote > .quote-form-container > div > div:last-child > div > div > div:last-child {
    font-size: 16px;
  }
}

/* ===== DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247,148,29,0.2), transparent);
}

/* ===== MOBILE SMALL (PHONES) ===== */
@media (max-width: 480px) {
  /* Quote Section - Better mobile layout */
  #quote {
    padding: 60px 4%;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 32px;
  }
  .quote-form-container {
    padding: 20px 16px;
    border-radius: 16px;
  }
  #quote h3 {
    font-size: 20px !important;
  }
  #quote p {
    font-size: 14px !important;
  }
  /* Contact buttons on mobile */
  #quote > .quote-form-container > div > div:first-child {
    flex-direction: column !important;
    gap: 12px !important;
  }
  #quote .btn-primary {
    width: 100%;
    padding: 14px 24px !important;
    font-size: 16px !important;
  }
  /* Contact info boxes */
  #quote > .quote-form-container > div > div:last-child {
    padding: 16px;
  }
  #quote > .quote-form-container > div > div:last-child i {
    font-size: 18px !important;
  }
  #quote > .quote-form-container > div > div:last-child > div > div {
    gap: 10px !important;
  }
  #quote > .quote-form-container > div > div:last-child > div > div > div:last-child > div:first-child {
    font-size: 12px !important;
  }
  #quote > .quote-form-container > div > div:last-child > div > div > div:last-child > div:last-child {
    font-size: 16px !important;
  }

  /* Fleet Section - Stack cards vertically */
  #fleet {
    padding: 60px 4%;
  }
  .fleet-carousel {
    overflow: visible;
  }
  .fleet-track {
    display: block;
  }
  .fleet-card {
    min-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
  .fleet-card:last-child {
    margin-bottom: 0;
  }
  .fleet-img {
    height: 140px;
    font-size: 56px;
  }
  .fleet-body {
    padding: 18px;
  }
  .fleet-name {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .fleet-desc {
    font-size: 13px;
    line-height: 1.6;
  }
  .fleet-spec {
    margin-top: 12px;
    gap: 6px;
  }
  .fleet-badge {
    font-size: 10px;
    padding: 4px 8px;
  }
  /* Hide carousel controls on mobile since cards are stacked */
  .fleet-controls {
    display: none;
  }

  /* General mobile improvements */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}
