/* ==========================================================================
   DELHI TO AGRA CAB - MASTER STYLESHEET WITH SHUBH YATRA CAB BRAND COLOR SYSTEM
   Domain: delhitoagracab.in
   ========================================================================== */

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

/* --- 1. DESIGN SYSTEM TOKENS (SHUBH YATRA CAB BRAND PALETTE) --- */
:root {
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --font-hero: clamp(1.85rem, 5.5vw, 3.8rem);
  --font-h2: clamp(1.35rem, 3.8vw, 2.5rem);
  --font-h3: clamp(1.1rem, 2.2vw, 1.5rem);
  --font-body: clamp(0.925rem, 1.4vw, 1.1rem);

  /* BRAND PRIMARY: DEEP NAVY BLUE & ROYAL BLUE (From Logo) */
  --primary-50: #f0f4f9;
  --primary-100: #dbe5f2;
  --primary-200: #b8cbdc;
  --primary-500: #2563eb;
  --primary-600: #1b365d;
  --primary-700: #162c4c;
  --primary-800: #11223b;
  --primary-900: #0c182b;

  /* BRAND ACCENT: VIBRANT RED (Lord Ganesha & CAB Accent in Logo) */
  --emerald-500: #ef4444;
  --emerald-600: #d9232e;
  --emerald-700: #b91c1c;

  /* NEUTRALS: WHITE, LIGHT GRAY, CHARCOAL */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #64748b;
  --slate-600: #334155;
  --slate-700: #1e293b;
  --slate-800: #0f172a;
  --slate-900: #0b1324;

  --bg-body: #ffffff;
  --bg-section-alt: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-heading: #0b1324;
  --text-muted: #475569;
  --border-color: #e2e8f0;

  --glass-bg: rgba(255, 255, 255, 0.96);
  --glass-border: rgba(255, 255, 255, 0.9);
  --glass-shadow: 0 25px 50px -12px rgba(27, 54, 93, 0.18);

  --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  --shadow-card-hover: 0 18px 35px -8px rgba(217, 35, 46, 0.16);

  --radius-card: 20px;
  --radius-btn: 9999px;
  --radius-input: 12px;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg-body: #090d16;
  --bg-section-alt: #0f172a;
  --bg-surface: #162238;
  --bg-card: #162238;
  --text-main: #f8fafc;
  --text-heading: #ffffff;
  --text-muted: #94a3b8;
  --border-color: #243452;
  --slate-50: #0f172a;
  --slate-100: #1b2a47;
  --slate-200: #2d4268;
  --slate-900: #ffffff;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --emerald-500: #f87171;
  --emerald-600: #ef4444;
  --glass-bg: rgba(22, 34, 56, 0.96);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

/* CRITICAL VISIBILITY FALLBACK RULE */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* --- FORM VALIDATION & ERROR HIGHLIGHTS --- */
.widget-form-control.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.form-error-msg {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.25rem;
  display: block;
  animation: fadeInError 0.2s ease;
}

@keyframes fadeInError {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- 2. BASE RESET & OVERFLOW CONTROL --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 400;
}

body.drawer-open {
  overflow: hidden !important;
}

body.drawer-open .mobile-sticky-cta {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

:focus-visible {
  outline: 3px solid var(--primary-600) !important;
  outline-offset: 3px !important;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary-600);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-input);
  z-index: 10000;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* --- 3. TYPOGRAPHY SYSTEM --- */
h1 {
  font-family: var(--font-heading);
  font-size: var(--font-hero);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  word-break: break-word;
}

h2 {
  font-family: var(--font-heading);
  font-size: var(--font-h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-heading);
  font-size: var(--font-h3);
  font-weight: 600;
  color: var(--text-heading);
}

p {
  font-size: var(--font-body);
  color: var(--text-muted);
}

a {
  color: var(--primary-600);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover { color: var(--primary-700); }

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

ul { list-style: none; }

.nowrap {
  white-space: nowrap !important;
}

/* --- 4. LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: clamp(3rem, 5vw, 5.5rem) 0;
}

.bg-alt { background-color: var(--bg-section-alt); }
.text-center { text-align: center; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

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

.section-header {
  margin-bottom: clamp(1.75rem, 3.5vw, 3rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--primary-50);
  color: var(--primary-800);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-btn);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  white-space: nowrap;
}

[data-theme="dark"] .badge-pill {
  background: var(--slate-100);
  color: var(--primary-500);
  border-color: var(--slate-200);
}

.section-title {
  font-size: var(--font-h2);
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.section-title span {
  background: linear-gradient(135deg, var(--primary-600), var(--emerald-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: var(--font-body);
  color: var(--text-muted);
}

/* --- 5. MARQUEE STRIPS --- */
.marquee-strip {
  height: 30px;
  background: var(--primary-600);
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 0.825rem;
  font-weight: 600;
  white-space: nowrap;
  user-select: none;
  width: 100%;
}

.marquee-content {
  display: flex;
  animation: marquee 25s linear infinite;
}

.marquee-strip:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

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

/* INFINITE TESTIMONIAL MARQUEE */
.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  user-select: none;
  position: relative;
  padding: 1rem 0;
}

.testimonial-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeTestimonials 35s linear infinite;
  will-change: transform;
}

.testimonial-marquee:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

.testimonial-marquee-card {
  width: 340px;
  min-width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@keyframes marqueeTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* HEADER NAVIGATION & WRAPPER BASE */
.header-nav-wrapper {
  width: 100%;
}

.header-nav {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}

.brand-logo i {
  font-size: 1.3rem;
  color: var(--primary-600);
  background: var(--primary-50);
  padding: 0.35rem;
  border-radius: 10px;
}

.brand-logo span.accent { color: var(--emerald-600); }

/* DESKTOP DUAL PERMANENTLY STICKY MARQUEE & NAVBAR (1024px AND ABOVE) */
@media (min-width: 1024px) {
  .marquee-strip {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10001 !important;
  }

  .header-nav-wrapper {
    height: 115px;
  }

  .header-nav {
    position: fixed !important;
    top: 30px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
  }

  .header-nav.is-sticky {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.12) !important;
  }

  .header-nav.is-sticky .navbar {
    height: 68px;
  }

  .header-nav.is-sticky .brand-logo {
    transform: scale(0.92);
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0.25rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active { color: var(--emerald-600); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.drawer-header {
  display: none !important;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10004 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* BUTTON SYSTEM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap !important;
  will-change: transform;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: #ffffff !important;
  box-shadow: 0 10px 20px -5px rgba(27, 54, 93, 0.4);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
  color: #ffffff !important;
  box-shadow: 0 10px 20px -5px rgba(217, 35, 46, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-600);
  color: var(--primary-600);
}

.btn-phone {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.nav-actions .btn-phone span {
  display: inline-block;
}

.theme-toggle {
  background: var(--slate-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
}

.mobile-toggle {
  display: none;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 1.25rem;
  color: var(--primary-600);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* --- 6. HERO & COMPACT BOOKING WIDGET FLOW --- */
.hero-section {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3.5rem) 0;
  background: radial-gradient(circle at 10% 20%, rgba(240, 244, 249, 0.85) 0%, rgba(248, 250, 252, 1) 90%);
}

[data-theme="dark"] .hero-section {
  background: radial-gradient(circle at 10% 20%, rgba(27, 54, 93, 0.25) 0%, rgba(9, 13, 22, 1) 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-trust-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.trust-point-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
}

.trust-point-item i { color: var(--emerald-600); }

/* Floating Booking Card Widget */
.floating-booking-widget {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: var(--glass-shadow);
}

.widget-tabs {
  display: flex;
  background: var(--slate-100);
  padding: 0.25rem;
  border-radius: var(--radius-btn);
  margin-bottom: 1rem;
}

.widget-tab-btn {
  flex: 1;
  min-height: 40px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.widget-tab-btn.active {
  background: #ffffff;
  color: var(--primary-600);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] .widget-tab-btn.active {
  background: var(--bg-surface);
  color: var(--primary-500);
}

.tab-pane {
  display: none;
  animation: fadeInPane 0.3s ease;
}

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

@keyframes fadeInPane {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.widget-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.widget-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.widget-form-group.full-width { grid-column: span 2; }

.widget-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.widget-form-group label i { color: var(--primary-600); }

.widget-form-control {
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-input);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  background: var(--bg-surface);
  color: var(--text-main);
  outline: none;
  transition: var(--transition-smooth);
}

.widget-form-control:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 4px rgba(27, 54, 93, 0.15);
}

.widget-action-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.widget-action-group .btn {
  width: 100%;
  padding: 0.75rem 0.4rem;
  font-size: 0.85rem;
}

/* --- 7. CARDS ENGINE & FLEET REDESIGN --- */
.route-card, .vehicle-card, .feature-card, .testimonial-card, .service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-200);
}

.vehicle-card-img-wrapper {
  background: var(--slate-100);
  border-radius: var(--radius-input);
  padding: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-card-img-wrapper img {
  transform: scale(1.04);
}

.vehicle-price-tag {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--emerald-600);
  white-space: nowrap;
}

.vehicle-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0.75rem 0 1.25rem 0;
  padding: 0.6rem 0.85rem;
  background: var(--slate-50);
  border-radius: var(--radius-input);
  border: 1px solid var(--border-color);
}

.vehicle-spec-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.vehicle-spec-item i {
  color: var(--primary-600);
}

/* 6 FLEET GRID SYSTEM: 3 COLS DESKTOP, 2 COLS TABLET, 1 COL MOBILE */
.fleet-grid-system {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1024px) {
  .fleet-grid-system {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.faq-header {
  min-height: 52px;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-heading);
}

.faq-header i {
  color: var(--primary-600);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body-content {
  padding: 0 1.25rem 1.25rem 1.25rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 0.85rem;
  font-size: 0.925rem;
}

/* --- 8. SAAS LEVEL CONVERSION CTA BANNER --- */
.cta-banner-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-900));
  border-radius: var(--radius-card);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 2.5rem);
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(27, 54, 93, 0.45);
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(217, 35, 46, 0.2) 0%, rgba(217, 35, 46, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-title {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.cta-banner-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 1.5rem auto;
}

.cta-trust-ticks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  font-weight: 600;
}

.cta-trust-tick {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-trust-tick i { color: #34d399; }

/* --- 9. FLOATING & STICKY CTAs --- */
.floating-widget-group {
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.float-whatsapp { background: #25d366; }
.float-call { background: var(--primary-600); }

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  z-index: 9999;
  padding: 0.5rem 0.85rem;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.08);
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.mobile-cta-grid .btn {
  min-height: 44px;
  padding: 0.6rem 0.5rem;
  font-size: 0.85rem;
}

/* --- 10. FOOTER --- */
.site-footer {
  background: var(--slate-900);
  color: #94a3b8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid var(--slate-800);
}

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

.footer-brand h3 { color: #ffffff; font-size: 1.4rem; margin-bottom: 0.85rem; }
.footer-brand p { font-size: 0.9rem; color: #94a3b8; margin-bottom: 1.25rem; }
.footer-title { color: #ffffff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: #94a3b8; font-size: 0.9rem; }
.footer-links a:hover { color: #ffffff; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* --- 11. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { height: 60px; }
  .brand-logo { font-size: 1.15rem; }
  .brand-logo i { font-size: 1.1rem; padding: 0.3rem; }
  
  .mobile-toggle { display: flex !important; }
  .nav-actions .btn-phone span { display: none !important; }
  .nav-actions .btn-phone {
    min-width: 38px;
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 50%;
  }

  .drawer-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1rem;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 10005 !important;
    overflow-y: auto;
  }

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

  .drawer-close {
    background: var(--slate-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu .nav-link {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.65rem 0;
    border-bottom: 1px dashed var(--border-color);
  }

  /* SINGLE COLUMN LAYOUT FOR POPULAR ROUTES & FLEET ON MOBILE */
  .routes-grid-mobile {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .pillars-grid-mobile {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .pillars-grid-mobile .feature-card {
    padding: 1.25rem !important;
    width: 100% !important;
  }

  .fleet-grid-mobile {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .fleet-grid-mobile .vehicle-card { padding: 1.25rem !important; }
  .fleet-grid-mobile .vehicle-card img { max-height: 160px !important; }

  .floating-widget-group { display: none !important; }

  .widget-form-grid { grid-template-columns: 1fr; }
  .widget-form-group.full-width { grid-column: span 1; }

  .mobile-sticky-cta { display: block; }
  .site-footer { padding-bottom: 5.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .footer-col-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .footer-col-title i { transition: transform 0.3s ease; }
  .footer-col.active .footer-col-title i { transform: rotate(180deg); }
  .footer-col-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .footer-col.active .footer-col-content {
    max-height: 400px;
    margin-top: 0.65rem;
  }
}
