:root {
  /* Modern Vibrant Palette */
  --primary-color: #3B82F6;
  /* Modern Electric Blue */
  --primary-light: #60A5FA;
  --primary-dark: #2563EB;
  --primary-gradient: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  --accent-color: #F59E0B;
  /* Vibrant Amber */
  --accent-gradient: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --secondary-color: #0F172A;
  /* Deep Slate */
  --secondary-light: #1E293B;
  --text-color: #334155;
  --text-light: #64748B;
  --bg-color: #F8FAFC;
  --surface-color: #FFFFFF;

  /* Modern Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  --glass-blur: blur(12px);

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

  /* Modern Spacing & Layout */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  --spacing-3xl: 8rem;
  --border-radius-sm: 12px;
  --border-radius: 20px;
  --border-radius-lg: 32px;

  /* Smooth Transitions */
  --transition-speed: 0.3s;
  --transition-slow: 0.6s;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Modern Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: white;
  color: var(--secondary-color);
  padding: 1.25rem 2rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  max-width: 400px;
  animation: slideIn 0.5s var(--ease-out);
  border-left: 5px solid var(--primary-color);
}

.toast.success {
  border-left-color: #10B981;
}

.toast.error {
  border-left-color: #EF4444;
}

.toast.warning {
  border-left-color: var(--accent-color);
}

@keyframes slideIn {
  from {
    transform: translateX(100%) scale(0.9);
    opacity: 0;
  }

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

.toast.fade-out {
  animation: fadeOut 0.5s forwards;
}

@keyframes fadeOut {
  to {
    transform: translateX(20%) scale(0.95);
    opacity: 0;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.7;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  line-height: 1.2;
}

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

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  background: transparent;
  transition: all 0.4s ease;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: var(--spacing-sm) 0;
}

header.scrolled .nav-links a {
  color: var(--secondary-color);
  /* Switch to dark on scroll */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  max-width: 1300px;
  margin: 0 auto;
}

.logo img {
  height: 55px;
  /* Slightly refined size */
  transition: transform var(--transition-speed);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--surface-color);
  /* Initial white text for dark hero */
  font-size: 1.05rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  color: var(--surface-color) !important;
  /* Force White Text always */
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(245, 158, 11, 0.3);
  transition: all var(--transition-speed) var(--ease-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.nav-links .cta-button {
  height: 48px;
  padding: 0 1.5rem;
}

/* Header Call Button White-on-Blue variant - Icon Only */
.call-now-header {
  background: white !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
  box-shadow: var(--shadow-md) !important;
  width: 48px;
  height: 48px;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.call-now-header:hover {
  background: var(--primary-color) !important;
  color: white !important;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-2xl), 0 0 30px rgba(245, 158, 11, 0.5);
  color: var(--surface-color) !important;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--secondary-color);
}

/* Hero Section - Ultra Modern */
.hero {
  background:
    linear-gradient(135deg,
      rgba(59, 130, 246, 0.95) 0%,
      rgba(37, 99, 235, 0.92) 50%,
      rgba(29, 78, 216, 0.9) 100%),
    url('../images/cover.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--surface-color);
  padding: 0 var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 1000px;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--spacing-lg);
  color: var(--surface-color);
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s var(--ease-out) forwards;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeInUp 1s var(--ease-out) 0.2s forwards;
  opacity: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .cta-button {
  font-size: 1.15rem;
  padding: 1.25rem 3rem;
  animation: fadeInUp 1s var(--ease-out) 0.4s forwards;
  opacity: 0;
}

/* Sections General */
.section {
  padding: var(--spacing-3xl) var(--spacing-md);
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
  color: var(--secondary-color);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--spacing-md);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}


/* Services Section */
.services {
  background-color: var(--bg-color);
}

/* Services Section - Clean Off-white */
.services {
  background-color: #F1F5F9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Schools Section - Subtle pattern without overlay */
#schools {
  background-color: #ffffff;
  background-image: radial-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Schools Grid */
/* Modern Infinite Marquee */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 2rem 0;
}

.marquee-track {
  display: flex;
  width: fit-content;
  gap: 4rem;
  animation: marquee 25s linear infinite;
}

/* Pause on hover for accessibility */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.school-slide {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* Space between logo and text */
  min-width: max-content;
  /* Allow width to fit text */
  background: white;
  padding: 1rem 2rem;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.school-slide:hover {
  transform: translateY(-5px);
  /* Lift up slightly */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-light);
}

.school-slide img {
  height: 50px;
  /* Slightly smaller to balance with text */
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.school-slide .school-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary-color);
  white-space: nowrap;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.school-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.school-slide:hover .school-name {
  color: var(--primary-color);
  /* Highlight text on hover too */
}

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

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

  /* Moves half the width (since we duplicated) */
}

/* Updated School Logo Styles */
.school-logo-container {
  width: 70px;
  height: 70px;
  margin-right: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: white;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.school-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.school-card:hover .school-logo {
  transform: scale(1.1);
}

.school-card h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin: 0;
  flex: 1;
}

/* Stats Section */
/* Stats Section - Clean & Professional */
.stats-section {
  background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
  /* Deep Professional Navy */
  padding: var(--spacing-3xl) var(--spacing-md);
  margin: 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  /* Subtle dark glass */
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.05);
}

.stat-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(245, 158, 11, 0.15);
  /* Subtle Orange Glass */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #F59E0B;
  /* Vibrant Orange Brand Color */
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.stat-card:hover .stat-icon-wrapper {
  background: #F59E0B;
  /* Solid Orange on Hover */
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFFFFF;
  /* Bright White */
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 1.1rem;
  color: #CBD5E1;
  /* Slate 300 - Readable light gray */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* CTA Banner Section - Hero Style */
.cta-banner {
  background:
    linear-gradient(135deg,
      rgba(37, 99, 235, 0.95) 0%,
      rgba(29, 78, 216, 0.92) 100%),
    url('../images/cover.jpg') no-repeat center center/cover;
  padding: 8rem var(--spacing-md);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-banner p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  opacity: 0.95;
  margin-bottom: 3.5rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.cta-banner-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner .primary-cta {
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  color: white !important;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
  border: none !important;
}

.cta-banner .primary-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

.cta-banner .secondary-cta {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
}

.cta-banner .secondary-cta:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: white !important;
  transform: translateY(-5px);
}

/* Safety Section - Soft Blue Gradient */
.safety-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
}

/* Safety & Technology Section - Tabbed Layout */
.safety-container {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
  background: var(--surface-color);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  min-height: 400px;
  text-align: left;
}

.safety-tabs {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding-right: 2rem;
}

.safety-tab {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: var(--text-light);
  position: relative;
}

.safety-tab:hover {
  background: rgba(59, 130, 246, 0.05);
  color: var(--primary-color);
}

.safety-tab.active {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.safety-content {
  flex: 1;
  padding: 1rem 0;
}

.safety-pane {
  display: none;
  animation: tabFadeIn 0.5s ease;
}

.safety-pane.active {
  display: block;
}

.safety-pane h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.safety-pane p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

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

/* Mobile Responsive Tabs */
@media (max-width: 900px) {
  .safety-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    min-height: auto;
  }

  .safety-tabs {
    flex: none;
    border-right: none;
    padding-right: 0;
    padding-bottom: 0;

    /* Change to wrapping pills layout */
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-start;
  }

  .safety-tab {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    background: #F1F5F9;
    border-radius: 50px;
    /* Pill shape */
    border: 1px solid transparent;
    text-align: center;
    flex: 0 0 auto;
    /* Don't stretch */
  }

  .safety-tab.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
  }

  .safety-content {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 12px;
  }

  .safety-pane h3 {
    font-size: 1.5rem;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.8);
  /* Semi-transparent */
  backdrop-filter: blur(12px);
  /* Glass effect */
  -webkit-backdrop-filter: blur(12px);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-clip: padding-box;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  /* Softer shadow */
  text-align: left;
  transition: all var(--transition-speed) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--primary-gradient);
  transition: height var(--transition-speed) var(--ease-out);
}

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

.service-card:hover::before {
  height: 100%;
}

.service-card img {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.service-card p {
  color: #666;
}

/* Process Section */
/* Process Section - Soft Amber tint to match steps */
.process-section {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(245, 158, 11, 0.03) 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-speed) var(--ease-out);
}

.step-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  border-color: #F59E0B;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
}

.step-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.step-card p {
  color: var(--text-light);
}

/* About Section */
.about-content {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.fleet-image-container {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 4px solid white;
  margin-top: 3rem;
}

.fleet-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.fleet-image:hover {
  transform: scale(1.05);
}

/* Testimonials Section - Distinct Background */
.testimonials-section {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3.5rem 2.5rem 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition-speed) var(--ease-out);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: #F59E0B;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 5rem;
  line-height: 1;
  color: #F59E0B;
  opacity: 0.2;
  font-family: serif;
}

.testimonial-stars {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: #F59E0B;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2.5rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: 700;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* FAQ Section */
/* FAQ Section - Clean white with focus on accordion */
.faq-section {
  background-color: #F8FAFC;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--surface-color);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  color: var(--secondary-color);
}

.faq-question:hover {
  background: rgba(59, 130, 246, 0.05);
  /* Very light blue tint */
}

.faq-icon {
  color: #F59E0B;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-out;
  color: var(--text-light);
  line-height: 1.7;
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 200px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: #F59E0B;
  color: white;
}

/* Contact Section - Solid Contrast */
.contact-section {
  background-color: #ffffff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-info {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.8)), url('../images/contactus.jpg') no-repeat center center/cover;
  border-radius: 15px;
  padding: 3rem;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Force all text in contact info to be white */
.contact-info h3,
.contact-info p,
.contact-info a,
.contact-info div,
.contact-info strong,
.contact-info span {
  color: #FFFFFF !important;
}

/* Exception for the icon itself which should have dark text on yellow bg */
/* Reusable Icon Style (Matches Stats) */
.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-right: 1rem;
}

.icon-box:hover {
  background: #F59E0B;
  color: white;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
  transform: scale(1.05);
}

.item-box-content {
  display: flex;
  flex-direction: column;
}

.contact-item {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.contact-details h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.contact-form {
  padding: 1rem;
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--surface-color);
}

.form-group {
  margin-bottom: 1.5rem;
}


/* Modern Rich Footer */
.main-footer {
  background-color: #0F172A;
  /* Deep Navy */
  color: #F8FAFC;
  padding: 5rem 2rem 2rem;
  font-family: var(--font-body);
  border-top: 4px solid var(--primary-color);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Brand Column */
.footer-logo h3 {
  color: #FFFFFF;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.brand-desc {
  color: #94A3B8;
  /* Slate 400 */
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  max-width: 90%;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--primary-color);
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-light);
}

/* Headers */
.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Links Lists */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #CBD5E1;
  /* Slate 300 */
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

/* Contact List */
.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  color: #CBD5E1;
  font-size: 0.95rem;
}

.footer-contact-list .icon-box {
  width: 36px;
  height: 36px;
  padding: 8px;
  margin-right: 0.5rem;
}

.footer-contact-list li span:first-child {
  /* Removed old span style */
  display: none;
}

.footer-cta {
  background: white;
  color: var(--secondary-color) !important;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  margin-top: 0.5rem;
}

.footer-cta:hover {
  background: var(--primary-color);
  color: white !important;
}

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

.footer-bottom p {
  color: #64748B;
  font-size: 0.9rem;
}

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

.legal-links a {
  color: #64748B;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }

  .contact-info {
    padding: 2rem 1.5rem;
    min-height: auto;
    text-align: center;
  }

  .contact-item {
    justify-content: flex-start;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form {
    padding: 0;
  }

  .contact-form h3 {
    text-align: center;
  }

  /* Responsive Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .brand-col {
    grid-column: 1 / -1;
    /* Span full width */
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .contact-container {
    padding: 1rem;
    border-radius: 12px;
  }

  .contact-info {
    padding: 2rem 1rem;
  }

  .contact-item {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background: var(--surface-color);
    flex-direction: column;
    padding: 6rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform var(--transition-speed);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  /* Improve general text readability on mobile */
  p,
  .contact-item,
  .footer-col p {
    font-size: 1.05rem !important;
    line-height: 1.6;
  }

  .section-subtitle {
    font-size: 0.95rem;
    /* Ensure subtitle isn't too huge but readable */
  }

  /* ... Existing Mobile Styles ... */

  .footer-grid {
    grid-template-columns: 1fr;
    /* Stack vertically */
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    text-align: center;
    /* Center align on mobile */
    align-items: center;
  }

  .social-links {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-contact-list li {
    justify-content: center;
    /* Center social and contact icons */
  }

  .brand-desc {
    margin-left: auto;
    margin-right: auto;
  }

  /* Fix Stats Grid on Mobile */
  .stats-grid {
    grid-template-columns: 1fr;
    /* Stack singly on very small screens */
    gap: 2rem;
  }
}

/* Very Small Mobile Fixes */
@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }
}