/* ==========================================================================
   DELHI TO AGRA CAB - MASTER STYLESHEET WITH BRAND COLORS & FLUID LAYOUT
   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 --- */
: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);

  /* ORIGINAL BRAND PRIMARY & ACCENT COLORS */
  --primary-50: #f0f4f9;
  --primary-100: #dbe5f2;
  --primary-200: #b8cbdc;
  --primary-500: #2563eb;
  --primary-600: #1b365d;
  --primary-700: #162c4c;
  --primary-800: #11223b;
  --primary-900: #0c182b;

  --emerald-50: #fef2f2;
  --emerald-500: #ef4444;
  --emerald-600: #d9232e;
  --emerald-700: #b91c1c;

  --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: #6b77c5;
  --primary-600: #1b365d;
  --emerald-500: #ef4444;
  --emerald-600: #d9232e;
  --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);
}

/* AOS ANIMATION FALLBACK */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* FORM VALIDATION HIGHLIGHTS */
.widget-form-control.is-invalid {
  border-color: var(--emerald-600) !important;
  box-shadow: 0 0 0 3px rgba(217, 35, 46, 0.15) !important;
  background-color: rgba(217, 35, 46, 0.03) !important;
}

.form-error-msg {
  color: var(--emerald-600);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.2rem;
  display: block;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

/* --- 2. BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.drawer-open {
  overflow: hidden !important;
  touch-action: none;
}

.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 --- */
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 & BADGES --- */
.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 0.9rem;
  background: var(--primary-50);
  color: var(--primary-600);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-btn);
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.badge-pill.accent-red {
  background: rgba(217, 35, 46, 0.08);
  color: var(--emerald-600);
  border-color: rgba(217, 35, 46, 0.2);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--primary-600);
  font-weight: 500;
}
.breadcrumb span {
  color: var(--slate-400);
}

/* --- 5. MARQUEE ANNOUNCEMENT STRIP --- */
.marquee-strip {
  background: linear-gradient(135deg, var(--primary-600), var(--emerald-600));
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  box-shadow: 0 2px 10px rgba(27, 54, 93, 0.2);
}

.marquee-content {
  display: inline-flex;
  gap: 3rem;
  animation: marqueeScroll 25s linear infinite;
  will-change: transform;
}

.marquee-content:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.marquee-item i { color: #ffffff; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* HEADER NAVIGATION (STICKY ON ALL DEVICES) */
:root {
  --marquee-h: 34px;
  --navbar-h: 60px;
}

.header-nav-wrapper {
  width: 100%;
  height: calc(var(--marquee-h) + var(--navbar-h));
}

.header-nav {
  position: fixed;
  top: var(--marquee-h);
  left: 0;
  width: 100%;
  z-index: 10000;
  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, top 0.2s ease;
}

.header-nav.is-sticky {
  box-shadow: 0 6px 20px -8px rgba(15, 23, 42, 0.15);
}

.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: inline-flex !important;
  align-items: center !important;
  max-height: 60px !important;
  overflow: hidden !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
  text-decoration: none;
}

.brand-logo-img {
  height: 55px !important;
  max-height: 55px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
  display: block !important;
  transition: height 0.3s ease, max-height 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}

.drawer-logo-img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  max-width: 160px !important;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.85rem;
  text-decoration: none;
}

.footer-logo-img {
  height: 55px !important;
  max-height: 55px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  display: block !important;
  image-rendering: -webkit-optimize-contrast;
}

/* Device Pixel Ratio & Responsive Mobile Scaling */
@media (max-width: 768px) {
  .brand-logo {
    max-height: 44px !important;
  }
  .brand-logo-img {
    height: 40px !important;
    max-height: 40px !important;
    max-width: 150px !important;
  }
  .footer-logo-img {
    height: 48px !important;
    max-height: 48px !important;
    max-width: 180px !important;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    max-height: 40px !important;
  }
  .brand-logo-img {
    height: 36px !important;
    max-height: 36px !important;
    max-width: 140px !important;
  }
}

/* High Device Pixel Ratio Crispness (Retina / OLED / High DPR mobile devices) */
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .brand-logo-img,
  .drawer-logo-img,
  .footer-logo-img {
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

.brand-logo i {
  font-size: 1.3rem;
  color: #7c3aed !important;
  background: linear-gradient(135deg, rgba(217, 35, 46, 0.08), rgba(124, 58, 237, 0.08)) !important;
  padding: 0.35rem;
  border-radius: 10px;
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
}

.brand-logo span {
  background: linear-gradient(135deg, #d9232e, #7c3aed);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block;
}
.brand-logo span.accent {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: none !important;
}

/* DESKTOP STICKY NAVBAR GLASS EFFECT (1024px AND ABOVE) */
@media (min-width: 1024px) {
  .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);
  }

  .header-nav.is-sticky .brand-logo-img {
    max-height: 52px;
  }
}

.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(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9990 !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, #e63946, #7b2d8b);
  color: #ffffff !important;
  box-shadow: 0 10px 20px -5px rgba(123, 45, 139, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #c1121f, #6a1f7a);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -6px rgba(123, 45, 139, 0.5);
}

.btn-emerald {
  background: #25D366;
  color: #ffffff !important;
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.35);
}
.btn-emerald:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -6px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-600);
  color: var(--primary-600);
}
.btn-outline:hover {
  background: var(--primary-50);
  border-color: var(--primary-600);
}

.btn-phone {
  background-color: var(--primary-600) !important;
  border: 1px solid var(--primary-600) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-phone::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d9232e, #7c3aed);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.btn-phone:hover {
  border-color: transparent !important;
  color: #ffffff !important;
}
.btn-phone:hover::after {
  opacity: 1;
}


.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 & BOOKING WIDGET --- */
.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 3x3 GRID SYSTEM --- */
.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;
}

/* FLEET SECTION GRID SYSTEM: PERFECT 3 COLUMNS ON DESKTOP (3x3 GRID) */
.fleet-grid-system {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.route-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-btn);
}

.vehicle-price-tag {
  background: rgba(217, 35, 46, 0.08);
  color: var(--emerald-600);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(217, 35, 46, 0.2);
  white-space: nowrap;
}

.vehicle-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.vehicle-spec-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--slate-100);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.vehicle-spec-item i {
  color: var(--primary-600);
}

.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 !important;
  margin-bottom: 1rem;
  overflow: hidden;
  height: 200px;
  width: 100%;
  position: relative;
  display: block;
}

.vehicle-card img {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: var(--radius-input);
  transition: transform 0.35s ease;
}

.vehicle-card:hover img {
  transform: scale(1.04);
}

/* --- 8. TESTIMONIALS INFINITE MARQUEE --- */
.testimonial-marquee {
  overflow: hidden;
  width: 100%;
  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-track:hover {
  animation-play-state: paused;
}

.testimonial-marquee-card {
  width: 320px;
  min-width: 320px;
  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;
  transition: var(--transition-smooth);
}

.testimonial-marquee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

@keyframes marqueeTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- 9. FAQ ACCORDION SYSTEM --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-header i {
  color: var(--primary-600);
  transition: transform 0.35s ease;
  font-size: 0.95rem;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
  color: var(--emerald-600);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--bg-surface);
}

.faq-body-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--slate-100);
  padding-top: 1rem;
}

/* --- 10. CTA BANNER SECTION --- */
.cta-banner-card {
  background: linear-gradient(135deg, var(--primary-600), var(--emerald-600));
  color: #ffffff;
  border-radius: var(--radius-card);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 20px 40px -10px rgba(27, 54, 93, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner-card h2, .cta-banner-card p {
  color: #ffffff !important;
}

/* --- 11. TABLES & RESPONSIVE SCROLL --- */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-input);
  border: 1px solid var(--border-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

th, td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

th {
  background: var(--slate-100);
  color: var(--text-heading);
  font-weight: 700;
}

/* --- 12. FLOATING BUTTONS & STICKY CTA --- */
.floating-widget-group {
  position: fixed;
  bottom: 85px;
  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%;
  z-index: 99999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.25rem;
  text-decoration: none;
  font-family: var(--font-primary), sans-serif;
  color: #ffffff !important;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  min-height: 56px;
  box-sizing: border-box;
}

.mobile-cta-btn:active {
  opacity: 0.9;
}

.mobile-cta-call {
  background-color: var(--emerald-600); /* Theme Red */
}

.mobile-cta-whatsapp {
  background-color: #25d366; /* WhatsApp Green */
}

.mobile-cta-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.mobile-cta-icon-wrapper i {
  color: #ffffff;
  font-size: 1.1rem;
}

.mobile-cta-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.mobile-cta-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  font-family: var(--font-heading), sans-serif;
}

.mobile-cta-value {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-heading), sans-serif;
}

/* --- 13. 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 {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, #d9232e, #7c3aed);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block;
}
.footer-brand h3 span {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: none !important;
}
.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-links li i {
  background: linear-gradient(135deg, #d9232e, #7c3aed) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block;
  width: 1.25rem;
  text-align: center;
  margin-right: 0.25rem;
}
.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;
}

/* --- WHY CHOOSE US CAROUSEL (SWIPER) --- */
.why-choose-carousel-section { padding-top: 0; }

.why-choose-carousel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.wc-swiper {
  position: relative;
  padding-bottom: 2.5rem;
}

.wc-slide-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.wc-text-col h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  margin-bottom: 1rem;
  max-width: 520px;
}

.wc-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wc-check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-main);
}

.wc-check-list li i {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(217, 35, 46, 0.1);
  color: var(--emerald-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.wc-booking-col {
  background: var(--bg-section-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-input);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wc-booking-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.wc-booking-col .btn { width: 100%; }

/* Swiper arrow styling using brand colors */
.wc-swiper .swiper-button-prev,
.wc-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  color: var(--primary-600);
  top: 40%;
}

.wc-swiper .swiper-button-prev:hover,
.wc-swiper .swiper-button-next:hover {
  color: var(--emerald-600);
  border-color: var(--emerald-600);
}

.wc-swiper .swiper-button-prev::after,
.wc-swiper .swiper-button-next::after {
  font-size: 0.9rem;
  font-weight: 800;
}

.wc-swiper .swiper-button-prev { left: -14px; }
.wc-swiper .swiper-button-next { right: -14px; }

/* Swiper pagination dots using brand red */
.wc-swiper .swiper-pagination {
  bottom: 0;
}

.wc-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--slate-200);
  opacity: 1;
  transition: var(--transition-smooth);
}

.wc-swiper .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: var(--radius-btn);
  background: var(--emerald-600);
}

@media (max-width: 768px) {
  .why-choose-carousel { padding: 1.5rem 1.25rem; }
  .wc-slide-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .wc-swiper .swiper-button-prev,
  .wc-swiper .swiper-button-next {
    display: none;
  }
}

/* --- 14. OTHER DESTINATIONS BOX SECTION (ROUTE DETAILS PAGE) --- */
.route-destinations-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.destinations-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}

.destinations-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.destinations-list li a {
  color: #0088cc;
  font-size: 0.925rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.destinations-list li a:hover {
  color: var(--primary-600);
  transform: translateX(3px);
}

.check-more-link {
  color: #0088cc;
  font-weight: 600;
  font-size: 0.925rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: var(--transition-smooth);
}

.check-more-link:hover {
  color: var(--primary-600);
  gap: 0.65rem;
}

/* --- 17. SERVICES DEDICATED PAGE SHOWCASE --- */
.service-showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  transition: var(--transition-smooth);
}

.service-showcase-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-200);
}

.service-showcase-card.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-showcase-card.reverse .showcase-text-col {
  order: 2;
}

.service-showcase-card.reverse .showcase-visual-col {
  order: 1;
}

.service-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 35, 46, 0.08);
  color: var(--emerald-600);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(217, 35, 46, 0.2);
  margin-bottom: 1rem;
}

.service-feature-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem 0;
}

.service-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.service-bullet-item i {
  color: var(--emerald-600);
}

.service-visual-box {
  background: var(--slate-100);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  text-align: center;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.process-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 6px 15px rgba(27, 54, 93, 0.3);
}

/* --- 15. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid-system { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative;
  }

  .container {
    padding: 0 1rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .header-nav-wrapper {
    z-index: 10000 !important;
  }

  .header-nav {
    width: 100%;
    z-index: 10000 !important;
  }

  .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 !important;
    top: 0 !important;
    right: -100% !important;
    width: 85% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: var(--bg-surface) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 2rem 1.5rem !important;
    gap: 1rem !important;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3) !important;
    z-index: 10005 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .nav-menu.active { right: 0 !important; }

  .drawer-close {
    background: var(--slate-100);
    border: none;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
  }

  .nav-menu .nav-link {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.65rem 0;
    border-bottom: 1px dashed var(--border-color);
    color: var(--text-heading) !important;
    pointer-events: auto !important;
  }

  /* HIDE HERO DESCRIPTION PARAGRAPH ON MOBILE */
  .hero-content > p {
    display: none !important;
  }

  /* 50/50 GRID FOR HERO BUTTONS ON MOBILE */
  .hero-content .flex {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    gap: 0.6rem !important;
  }

  .hero-content .btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.78rem !important;
    padding: 0.65rem 0.4rem !important;
  }

  /* CTA BANNER BUTTONS STAY STACKED (LOWER SECTION, MORE ROOM) */
  .cta-banner-card .flex {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.65rem !important;
  }

  .cta-banner-card .btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.875rem !important;
  }

  .grid-3, .routes-grid-mobile { grid-template-columns: 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: 1fr !important; }
  .fleet-grid-system { grid-template-columns: 1fr !important; gap: 1.25rem; }

  .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 BAR FIX */
  .mobile-sticky-cta {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    background: transparent !important;
    border-top: none !important;
    z-index: 99999 !important;
    padding: 0 !important;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.12) !important;
    box-sizing: border-box !important;
  }

  .mobile-cta-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    width: 100% !important;
  }

  .vehicle-card .btn {
    font-size: 0.8rem !important;
    padding: 0.5rem 0.2rem !important;
  }

  .site-footer { padding-bottom: 5.5rem; }
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }
  .footer-col, .footer-brand {
    width: 100% !important;
  }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .footer-title, .footer-col-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    font-size: 1.05rem !important;
    color: #ffffff !important;
    width: 100% !important;
    padding: 0.4rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  }
  .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;
  }

  /* --- RESPONSIVE TABLE-TO-CARD CONVERTER (FARE TABLES) --- */
  .table-scroll {
    overflow: visible !important;
    border: none !important;
    box-shadow: none !important;
  }

  .table-scroll table,
  .table-scroll thead,
  .table-scroll tbody,
  .table-scroll th,
  .table-scroll tr {
    display: block !important;
    width: 100% !important;
  }

  .table-scroll thead {
    display: none !important;
  }

  .table-scroll tr {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-card) !important;
    box-shadow: var(--shadow-card) !important;
    padding: 1rem 1.1rem !important;
    margin-bottom: 1rem !important;
  }

  .table-scroll tr:last-child {
    margin-bottom: 0 !important;
  }

  .table-scroll td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 1rem !important;
    text-align: right !important;
    padding: 0.65rem 0 !important;
    border-bottom: 1px dashed var(--border-color) !important;
    font-size: 0.9rem !important;
  }

  .table-scroll td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-heading);
    text-align: left;
    flex-shrink: 0;
  }

  .table-scroll td:last-child {
    border-bottom: none !important;
    padding-top: 0.9rem !important;
    justify-content: center !important;
  }

  .table-scroll td:last-child::before {
    display: none;
  }

  .table-scroll td:last-child .btn {
    width: 100% !important;
  }
}

/* --- 16. SMALL MOBILE DEVICES (320px - 480px) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-padding {
    padding: 2.25rem 0;
  }

  h1 {
    font-size: clamp(1.5rem, 6.5vw, 2.1rem);
  }

  h2 {
    font-size: clamp(1.25rem, 5.2vw, 1.75rem);
  }

  .floating-booking-widget {
    padding: 1rem 0.85rem;
  }

  .widget-tabs {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .widget-tab-btn {
    min-height: 36px;
    font-size: 0.75rem;
    padding: 0.35rem 0.25rem;
  }

  .vehicle-card {
    padding: 1rem;
  }

  .vehicle-card-img-wrapper {
    height: 180px !important;
    padding: 0 !important;
  }

  .vehicle-card img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
  }

  .cta-banner-card {
    padding: 2rem 1.25rem;
  }

  .marquee-strip {
    font-size: 0.78rem;
  }

  .marquee-content {
    gap: 1.75rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* --- 17. HASSLE-FREE BOOKING SECTION --- */
.hassle-free-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.hassle-free-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.hassle-free-service-desc {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}
.hassle-free-service-desc h3 {
  color: var(--text-heading);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 2px solid var(--primary-500);
  padding-bottom: 0.25rem;
  display: inline-block;
}
.hassle-free-service-desc h3:first-of-type {
  margin-top: 0;
}
.hassle-free-service-desc p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.hassle-free-tables-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.table-wrapper h3 {
  color: var(--text-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.table-wrapper p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 1.25rem;
}
.table-footnote {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-style: italic;
  display: block;
}
.info-lists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .info-lists-grid {
    grid-template-columns: 1fr;
  }
}
.info-list-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}
.info-list-card h3 {
  color: var(--text-heading);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-list li {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.75rem;
}
.info-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary-500);
  font-size: 1.1rem;
}
.how-it-works-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}
.how-it-works-card h3 {
  color: var(--text-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.how-it-works-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Table actions container (50-50 buttons layout) */
.table-actions {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 220px;
  align-items: center;
}
.table-actions .btn {
  flex: 1 1 50% !important;
  width: auto !important;
  min-height: 38px !important;
  font-size: 0.8rem !important;
  padding: 0.4rem 0.5rem !important;
}
@media (max-width: 768px) {
  .table-actions {
    max-width: 100%;
  }
}

/* Powered by Shubh Yatra Cabs Gradient Link */
.shubh-yatra-link {
  background: linear-gradient(135deg, #d9232e, #7c3aed);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
}


