/* ==========================================================================
   Thamizhan Ride - Floating Pill Header & Light Reference Theme CSS
   ========================================================================== */

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

:root {
  /* Color Tokens */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-rose: #fff1f2;
  
  --primary-red: #dc2626;
  --primary-red-hover: #b91c1c;
  --accent-red: #ef4444;
  --soft-rose: #ffe4e6;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-sub: #64748b;
  --text-light: #ffffff;
  
  --green-success: #16a34a;
  --green-light: #dcfce7;

  --border-light: #e2e8f0;
  --border-rose: #fecdd3;

  /* Gradients */
  --grad-rose-light: linear-gradient(135deg, #ffffff 0%, #fff1f2 60%, #ffe4e6 100%);
  --grad-red-action: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  --grad-card-header: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(220, 38, 38, 0.1);
  --shadow-floating: 0 12px 32px rgba(15, 23, 42, 0.08);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --font-family: 'Inter', 'Noto Sans Tamil', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Noto Sans Tamil', sans-serif;
}

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

/* Lucide Vector Line Icons Global Styling */
svg.lucide {
  width: 1.25em;
  height: 1.25em;
  stroke-width: 2.2;
  vertical-align: -0.2em;
  display: inline-block;
  stroke: currentColor;
  fill: none;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-secondary);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

section[id], footer[id] {
  scroll-margin-top: 80px;
}

body {
  background-color: var(--bg-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  padding-top: 80px; /* Offset for fixed header */
}

/* Reference Container Width (1300px) */
.app-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   FLOATING PILL HEADER (Inspired by Reference UI)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-brand:hover .brand-logo-img {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-text span {
  color: var(--primary-red);
}

.logo-subtext {
  font-size: 12px;
  color: var(--text-sub);
  font-weight: 500;
}

/* Navbar Menu Links (Centered Pill Style) */
.nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  transition: color 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--primary-red);
  background: transparent;
}

.nav-link.active {
  color: var(--primary-red);
  background: transparent;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 3px 3px 0 0;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-success);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(22, 163, 74, 0.2);
  flex-shrink: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green-success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  background: var(--bg-tertiary);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--bg-primary);
  color: var(--primary-red);
  box-shadow: var(--shadow-sm);
}

.btn-book-ride {
  background: var(--primary-red);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-book-ride:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

/* ==========================================================================
   HERO SECTION & BOOKING CARD WIDGET
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0f172a;
}

/* Cinematic Video-like Motion Background Layer - Top aligned so full map is 100% visible */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero_tn_cab.jpg?v=20260916_v5');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 18%;
  transform-origin: center 18%;
  z-index: 0;
  animation: cinematicHeroZoom 14s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes cinematicHeroZoom {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.025) translate3d(-4px, 0, 0);
  }
}

/* High clarity subtle gradient overlay - Image 100% visible & bright */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.12) 32%, rgba(255, 255, 255, 0) 55%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: block;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 500px;
}

.serving-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--primary-red);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  border: 1px solid rgba(220, 38, 38, 0.25);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.08);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.95), 0 0 20px rgba(255, 255, 255, 0.85);
}

.hero-content h1 .highlight-red {
  color: var(--primary-red);
}

.hero-content p {
  font-size: 14.5px;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 460px;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95);
}

.hero-badges-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-namma-ooru {
  font-family: 'Brush Script MT', cursive;
  font-size: 26px;
  color: var(--primary-red);
  line-height: 1;
  transform: rotate(-10deg);
  margin-top: 2px;
  display: inline-block;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-red);
  color: #fff;
  padding: 13px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s ease;
}

.btn-hero-cta:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.25);
}

/* ==========================================
   COVERAGE MARQUEE
   ========================================== */
.tn-coverage-marquee {
  background: linear-gradient(90deg, #0284c7, #0ea5e9);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  animation: scrollMarquee 12s linear infinite;
  /* GPU acceleration */
  will-change: transform;
}

.marquee-content .dot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
}

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

@media (max-width: 768px) {
  .tn-coverage-marquee {
    padding: 10px 0;
  }
  .marquee-content {
    font-size: 14px;
    animation: scrollMarquee 10s linear infinite;
  }
}

/* ==========================================================================
   BOOKING SECTION & ULTRA-MODERN WIDGET
   ========================================================================== */
.booking-section-wrap {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #fef2f2 100%);
  position: relative;
}

.booking-split-container {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 36px;
  align-items: stretch;
}

/* Left Side: Visual Interactive Banner */
.booking-banner-side {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 20px 40px -15px rgba(220, 38, 38, 0.15), 0 0 1px 1px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #0f172a;
}

.booking-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Floating Glass Cards on Banner (Positioned in open sky area) */
.floating-glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  z-index: 3;
  animation: floatCardBounce 4s ease-in-out infinite alternate;
}

.top-left-card {
  top: 18px;
  left: 18px;
  animation-delay: 0.2s;
}

.top-right-card {
  top: 18px;
  right: 18px;
  animation-delay: 1.5s;
}

@keyframes floatCardBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.glass-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.12);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.glass-card-icon svg {
  width: 20px;
  height: 20px;
}

.glass-card-info {
  display: flex;
  flex-direction: column;
}

.glass-card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.glass-card-desc {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  margin-top: 2px;
}

.booking-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 36px 28px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
  z-index: 2;
}

.banner-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.95);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

.banner-bottom-badge svg {
  width: 14px;
  height: 14px;
}

.booking-banner-overlay h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
  color: #ffffff;
}

.booking-banner-overlay p {
  font-size: 13.5px;
  color: #cbd5e1;
  font-weight: 500;
}

/* Right Side: Ultra Modern Booking Widget */
.booking-widget-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.85);
  position: relative;
  display: flex;
  flex-direction: column;
}

.booking-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.booking-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.booking-card-subtitle {
  font-size: 13.5px;
  color: var(--text-sub);
  font-weight: 500;
}

.surge-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.surge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulseSurgeDot 2s infinite;
}

@keyframes pulseSurgeDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Modern Segmented Service Tabs */
.segmented-service-tabs {
  display: flex;
  background: #f1f5f9;
  padding: 5px;
  border-radius: 14px;
  gap: 4px;
  margin-bottom: 22px;
  border: 1px solid #e2e8f0;
}

.seg-tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.seg-tab-btn svg {
  width: 16px;
  height: 16px;
}

.seg-tab-btn:hover {
  color: var(--text-main);
}

.seg-tab-btn.active {
  background: #ffffff;
  color: var(--primary-red);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Route Input Container with Visual Track Line */
.route-input-container {
  display: flex;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 10px 16px;
  gap: 14px;
  margin-bottom: 12px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.route-input-container:focus-within {
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.route-visual-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  width: 14px;
}

.route-pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.route-pin-dot.pickup-dot {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.route-pin-dot.drop-dot {
  background: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
}

.route-line-connector {
  flex: 1;
  width: 2px;
  background: repeating-linear-gradient(to bottom, #cbd5e1 0, #cbd5e1 4px, transparent 4px, transparent 8px);
  margin: 6px 0;
}

.route-inputs-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.route-field-row {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.field-label-text {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #10b981;
  margin-bottom: 4px;
}

.route-text-input {
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  outline: none;
  width: 100%;
  padding: 2px 0;
  font-family: inherit;
}

.route-text-input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.route-divider-row {
  height: 1px;
  background: #f1f5f9;
  position: relative;
  margin: 4px 0;
}

.btn-swap-locations {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

.btn-swap-locations svg {
  width: 16px;
  height: 16px;
}

.btn-swap-locations:hover {
  background: var(--bg-rose);
  color: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-50%) rotate(180deg);
}

/* Quick Location Shortcut Chips */
.quick-location-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 18px;
  padding-bottom: 2px;
}

.quick-location-chips::-webkit-scrollbar {
  display: none;
}

.chips-title {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  flex-shrink: 0;
}

.loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.loc-chip svg {
  width: 12px;
  height: 12px;
  color: #64748b;
  transition: color 0.2s ease;
}

.loc-chip:hover {
  background: var(--bg-rose);
  color: var(--primary-red);
  border-color: var(--border-rose);
  transform: translateY(-1px);
}

.loc-chip:hover svg {
  color: var(--primary-red);
}

/* Modern Date & Time Cards Row */
.datetime-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.datetime-input-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 14px;
  transition: border-color 0.2s, background-color 0.2s;
}

.datetime-input-card:focus-within {
  border-color: rgba(220, 38, 38, 0.4);
  background: #ffffff;
}

.datetime-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.datetime-icon svg {
  width: 16px;
  height: 16px;
}

.datetime-data {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.datetime-data label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 2px;
}

.datetime-data input {
  border: none;
  background: transparent;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  outline: none;
  font-family: inherit;
}

/* Cab Class Selection Cards */
.cab-selector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
}

.ac-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.ac-guarantee svg {
  width: 13px;
  height: 13px;
}

.cab-class-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.cab-class-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.card-pop-tag {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-red);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.35);
}

.cab-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cab-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
}

.cab-icon-badge svg {
  width: 17px;
  height: 17px;
}

.cab-seat-badge {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  background: #f8fafc;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.cab-details-group {
  display: flex;
  flex-direction: column;
}

.cab-model-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.cab-cars-sub {
  font-size: 11px;
  color: #64748b;
  margin: 3px 0 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cab-rate-tag {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-top: auto;
}

.cab-rate-tag small {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.cab-class-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.cab-class-card.active {
  border-color: var(--primary-red);
  background: #fffafa;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.12);
}

.cab-class-card.active .cab-icon-badge {
  background: rgba(220, 38, 38, 0.12);
  color: var(--primary-red);
}

.cab-class-card.active .cab-model-name,
.cab-class-card.active .cab-rate-tag {
  color: var(--primary-red);
}

/* Glassmorphic Live Fare Breakdown Bar */
.fare-glass-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 18px;
}

.fare-main-column {
  display: flex;
  flex-direction: column;
}

.fare-type-caption {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fare-price-display {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1.1;
  margin: 2px 0;
}

.fare-note-sub {
  font-size: 11px;
  color: #059669;
  font-weight: 700;
}

.fare-stats-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.stat-bubble {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
}

.stat-bubble svg {
  width: 13px;
  height: 13px;
  color: var(--primary-red);
}

.eta-bubble {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.eta-bubble svg {
  color: #16a34a;
}

/* Radiant Booking CTA Button */
.btn-primary-book {
  width: 100%;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(220, 38, 38, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 14px;
}

.btn-primary-book svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-primary-book:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.45);
  transform: translateY(-2px);
}

.btn-primary-book:hover svg {
  transform: translateX(4px);
}

.btn-primary-book:active {
  transform: translateY(0);
}

/* Security Trust Footer below CTA */
.booking-security-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  flex-wrap: wrap;
}

.booking-security-footer span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.booking-security-footer svg {
  width: 13px;
  height: 13px;
  color: #10b981;
}

.booking-security-footer .dot-sep {
  color: #cbd5e1;
}

@media (max-width: 992px) {
  .booking-split-container {
    grid-template-columns: 1fr;
  }
  .booking-banner-side {
    min-height: 300px;
    max-height: 380px;
  }
}

@media (max-width: 640px) {
  .booking-widget-card {
    padding: 20px 14px;
    border-radius: 20px;
  }
  .cab-class-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cab-class-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    gap: 10px;
  }
  .cab-card-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .cab-icon-badge {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  .cab-icon-badge svg {
    width: 15px;
    height: 15px;
  }
  .cab-seat-badge {
    font-size: 10px;
    padding: 2px 5px;
    white-space: nowrap;
  }
  .cab-details-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }
  .cab-model-name {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cab-cars-sub {
    font-size: 10.5px;
    color: #64748b;
    margin: 1px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cab-rate-tag {
    font-size: 14.5px;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
    margin-top: 0;
  }
  .cab-rate-tag small {
    font-size: 10px;
  }
  .card-pop-tag {
    top: -7px;
    right: 12px;
    left: auto;
    transform: none;
    font-size: 8px;
    padding: 1.5px 6px;
  }
}
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInModal 0.25s ease;
}

.booking-modal-overlay.active {
  display: flex;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.booking-modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 32px 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid var(--border-light);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg-secondary);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-sub);
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: var(--bg-rose);
  color: var(--primary-red);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-success-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  color: var(--green-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 14px auto;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 14px;
  color: var(--text-sub);
}

.driver-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
}

.driver-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.driver-info {
  flex: 1;
}

.driver-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.driver-car {
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 500;
}

.driver-rating {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.driver-plate {
  text-align: right;
  flex-shrink: 0;
}

.plate-number {
  display: block;
  font-size: 12px;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid var(--text-main);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.plate-otp {
  font-size: 12px;
  color: var(--primary-red);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.trip-route-details {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.route-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.route-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-sub);
  text-transform: uppercase;
}

.route-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.modal-summary-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-bottom: 22px;
}

.summary-label {
  display: block;
  font-size: 11px;
  color: var(--text-sub);
  font-weight: 600;
  text-transform: uppercase;
}

.summary-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-modal-call {
  background: var(--green-success);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-md);
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-modal-done {
  background: var(--text-main);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-md);
  height: 46px;
  cursor: pointer;
}

.booking-footer-note {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   SERVICES SHOWCASE
   ========================================================================== */
.section-padding {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.section-tag {
  display: inline-block;
  background: var(--bg-rose);
  color: var(--primary-red);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  border: 1px solid var(--border-rose);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.service-icon-box {
  width: 58px;
  height: 58px;
  background: var(--bg-rose);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid var(--border-rose);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.service-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.service-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-red);
}

.btn-link-action {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   FLEET & VEHICLE CLASS GRID
   ========================================================================== */
.bg-light-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.fleet-card:hover {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-lg);
}

.fleet-img-wrapper {
  height: 220px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.fleet-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-img-wrapper img {
  transform: scale(1.05);
}

.fleet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-red);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.fleet-body {
  padding: 24px;
}

.fleet-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fleet-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
}

.fleet-rate {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-red);
}

.fleet-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  background: var(--bg-secondary);
  padding: 12px 14px;
  border-radius: var(--radius-md);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
}

.spec-icon {
  color: var(--primary-red);
  width: 16px;
  height: 16px;
  stroke-width: 2.2px;
  flex-shrink: 0;
}

/* ==========================================================================
   SAFETY & QUALITY GUARANTEES
   ========================================================================== */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.safety-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.safety-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 28px;
  margin: 0 auto 16px auto;
  border: 1px solid var(--border-rose);
}

.safety-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.safety-box p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.5;
}

/* ==========================================================================
   STATS COUNTER & REVIEWS
   ========================================================================== */
.stats-banner {
  background: var(--grad-red-action);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 64px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

/* ==========================================================================
   REVIEWS & CAROUSEL SECTION
   ========================================================================== */
.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.reviews-carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 10px 4px;
}

.reviews-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.review-card:hover {
  border-color: var(--border-rose);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.08);
  transform: translateY(-4px);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
  margin-bottom: 16px;
  width: 100%;
}

.stars-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f59e0b;
  flex-shrink: 0;
}

.stars-rating svg,
.stars-rating i {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
  stroke: #f59e0b;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.verified-badge svg,
.verified-badge i {
  width: 12px;
  height: 12px;
}

.review-text {
  font-size: 14.5px;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: normal;
  font-weight: 450;
  flex-grow: 1;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), #b91c1c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.25);
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
}

.reviewer-route {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-sub);
}

.reviewer-route i {
  width: 13px;
  height: 13px;
  color: var(--primary-red);
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
  flex-shrink: 0;
}

.carousel-nav-btn i {
  width: 20px;
  height: 20px;
}

.carousel-nav-btn:hover {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
}

.reviews-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 12px;
  background: var(--primary-red);
}

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* ==========================================================================
   DIRECT WEB APP LAUNCH & FOOTER
   ========================================================================== */
.cta-banner {
  background: var(--grad-rose-light);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  border: 1.5px solid var(--border-rose);
  box-shadow: var(--shadow-md);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.site-footer {
  background: #0b1120;
  color: #ffffff;
  padding: 60px 0 30px 0;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon-wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  background: transparent;
  flex-shrink: 0;
}

.footer-logo-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.3px;
}

.footer-logo-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer-logo-title .highlight-red {
  color: var(--primary-red);
}

.footer-text {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 360px;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-col ul a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  line-height: 1.4;
  display: inline-block;
}

.footer-col ul a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
  padding-top: 10px;
}

.footer-made-with .heart-icon {
  color: #ef4444;
  margin: 0 2px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .footer-col.brand-col {
    grid-column: span 3;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 44px 0 24px 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .footer-col.brand-col {
    grid-column: span 2;
    margin-bottom: 4px;
  }
  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .footer-col ul {
    gap: 8px;
  }
  .footer-col ul a {
    font-size: 12.5px;
  }
  .footer-text {
    font-size: 12.5px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 11.5px;
    padding-top: 16px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }
  .footer-col.brand-col {
    grid-column: span 2;
  }
  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .footer-col ul {
    gap: 7px;
  }
  .footer-col ul a {
    font-size: 12px;
  }
  .footer-text {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 11px;
  }
}

/* ==========================================================================
   CONTACT SECTION STYLING
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-rose);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-rose);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-icon svg.lucide {
  width: 26px;
  height: 26px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.contact-link {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-red);
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   🌐 RESPONSIVE MOBILE WEBSITE STYLING (Phones & Tablets)
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--text-main);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.mobile-menu-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle.active {
  background: var(--bg-rose);
  color: var(--primary-red);
  border-color: var(--border-rose);
}

.mobile-nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--border-rose);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.15);
  padding: 16px 20px 24px 20px;
  z-index: 1000;
  animation: slideDownNav 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-dropdown.active {
  display: block;
}

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

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.mobile-nav-link svg {
  width: 18px;
  height: 18px;
  color: var(--primary-red);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--bg-rose);
  color: var(--primary-red);
}

.mobile-nav-cta {
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.btn-mobile-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad-red-action);
  color: #ffffff;
  text-decoration: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.btn-mobile-book svg {
  width: 18px;
  height: 18px;
}

/* Tablet & Mobile Nav breakpoint (<= 1024px) */
@media (max-width: 1024px) {
  .nav-menu-desktop {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile & Tablet Screens (<= 768px) */
@media (max-width: 768px) {
  section[id], footer[id] {
    scroll-margin-top: 64px;
  }

  body {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .site-header {
    height: 64px;
    top: 0;
    padding: 0;
  }

  .header-container {
    height: 64px;
    padding: 0 16px;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-subtext {
    display: none;
  }

  .header-actions .btn-book-ride {
    display: none;
  }

  .lang-btn {
    padding: 4px 10px;
    font-size: 12px;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .section-padding {
    padding: 44px 0;
  }

  .section-title {
    font-size: 26px;
  }

  /* Hero Section (Dedicated 9:16 vertical full car image with high-contrast cinematic overlay & video motion) */
  .hero-section {
    padding: 60px 0 32px 0;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
  }

  .hero-section::before {
    background-image: url('images/hero_mobile_tn_cab.jpg?v=20260916');
    background-position: center center;
    background-size: cover;
    animation: cinematicHeroZoomMobile 12s ease-in-out infinite alternate;
  }

  @keyframes cinematicHeroZoomMobile {
    0% {
      transform: scale(1) translate3d(0, 0, 0);
    }
    100% {
      transform: scale(1.06) translate3d(0, -6px, 0);
    }
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.45) 45%, rgba(15, 23, 42, 0.92) 100%);
  }

  .hero-content {
    max-width: 100%;
  }

  .serving-pill {
    background: rgba(220, 38, 38, 0.9);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  }

  .hero-content h1 .highlight-red {
    color: #fca5a5;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.55;
    color: #f1f5f9;
    font-weight: 500;
    margin-bottom: 16px;
    max-width: 100%;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  }

  .hero-badges-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-badge-pill {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: var(--radius-full);
  }

  .hero-badge-pill svg {
    color: #4ade80 !important;
  }

  .hero-namma-ooru {
    display: none;
  }

  .btn-hero-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.5);
  }

  /* Compact Grids & Card Layouts on Mobile (<= 768px) */
  .section-padding {
    padding: 38px 0;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .section-tag {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .section-desc {
    font-size: 13px;
    line-height: 1.45;
  }

  /* 1. Services Cards Compact (2 Columns) */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .service-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .service-icon-box svg {
    width: 18px;
    height: 18px;
  }

  .service-card h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .service-card p {
    font-size: 11.5px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .service-footer {
    padding-top: 8px;
  }

  .service-price {
    font-size: 12px;
  }

  .btn-link-action {
    font-size: 12px;
  }

  /* 2. Fleet Cards Compact */
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fleet-card {
    border-radius: 14px;
  }

  .fleet-img-wrapper {
    height: 150px;
  }

  .fleet-badge {
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    font-size: 10px;
  }

  .fleet-body {
    padding: 14px;
  }

  .fleet-title-row {
    margin-bottom: 6px;
  }

  .fleet-name {
    font-size: 16px;
  }

  .fleet-rate {
    font-size: 15px;
  }

  .fleet-specs-grid {
    gap: 6px;
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .spec-item {
    font-size: 11.5px;
    gap: 5px;
  }

  .spec-icon {
    width: 14px;
    height: 14px;
  }

  .btn-book-now {
    height: 38px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
  }

  /* 3. Safety Cards Compact (2 Columns) */
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .safety-box {
    padding: 14px 10px;
    border-radius: 12px;
  }

  .safety-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 8px auto;
    border-radius: 50%;
  }

  .safety-icon svg {
    width: 18px;
    height: 18px;
  }

  .safety-box h4 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .safety-box p {
    font-size: 11px;
    line-height: 1.35;
  }

  /* 4. Stats Banner Compact */
  .stats-banner {
    padding: 22px 16px;
    border-radius: 14px;
    margin-bottom: 36px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-item h2 {
    font-size: 24px;
    margin-bottom: 2px;
  }

  .stat-item p {
    font-size: 11.5px;
  }

  /* 5. Reviews Cards Compact */
  .review-card {
    flex: 0 0 calc(100% - 0px);
    min-width: calc(100% - 0px);
    padding: 16px 14px;
    border-radius: 14px;
  }

  .review-card-header {
    margin-bottom: 8px;
  }

  .stars-rating svg {
    width: 13px;
    height: 13px;
  }

  .verified-badge {
    font-size: 9.5px;
    padding: 2px 6px;
  }

  .review-text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .reviewer-profile {
    padding-top: 10px;
    gap: 10px;
  }

  .reviewer-avatar {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .reviewer-name {
    font-size: 12.5px;
  }

  .reviewer-route {
    font-size: 10.5px;
  }

  /* 6. Contact Cards Compact (2 Columns) */
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .contact-card {
    padding: 14px 10px;
    border-radius: 12px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    border-radius: 8px;
  }

  .contact-icon svg.lucide {
    width: 18px;
    height: 18px;
  }

  .contact-card h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .contact-card p {
    font-size: 10.5px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .contact-link {
    font-size: 11.5px;
  }

  /* 7. Booking Split & Widget Compact */
  .booking-split-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .booking-banner-side {
    min-height: 280px;
    max-height: 340px;
    border-radius: 16px;
  }

  /* Compact Floating Glass Cards */
  .floating-glass-card {
    padding: 5px 8px;
    gap: 6px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .top-left-card {
    top: 10px;
    left: 10px;
  }

  .top-right-card {
    top: 10px;
    right: 10px;
  }

  .glass-card-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .glass-card-icon svg {
    width: 13px;
    height: 13px;
  }

  .glass-card-title {
    font-size: 10px;
    font-weight: 800;
  }

  .glass-card-desc {
    font-size: 8.5px;
    margin-top: 1px;
  }

  .booking-banner-overlay {
    padding: 16px 14px;
  }

  .booking-banner-overlay h3 {
    font-size: 17px;
  }

  .booking-banner-overlay p {
    font-size: 11px;
  }

  .booking-widget-card {
    padding: 16px 12px;
    border-radius: 16px;
  }

  .booking-widget-header {
    margin-bottom: 12px;
  }

  .booking-card-title {
    font-size: 18px;
  }

  .booking-card-subtitle {
    font-size: 11.5px;
  }

  .surge-free-badge {
    font-size: 10.5px;
    padding: 3px 8px;
  }

  .segmented-service-tabs {
    padding: 3px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .seg-tab-btn {
    padding: 6px 6px;
    font-size: 11.5px;
    gap: 4px;
    border-radius: 8px;
  }

  .route-input-container {
    padding: 8px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .route-text-input {
    font-size: 13px;
  }

  .field-label-text {
    font-size: 9px;
  }

  .datetime-grid-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .datetime-input-card {
    padding: 8px 10px;
    border-radius: 10px;
    gap: 8px;
  }

  .datetime-data label {
    font-size: 10px;
  }

  .datetime-data input {
    font-size: 12.5px;
  }

  .quick-location-chips {
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 12px;
  }

  .chips-title {
    font-size: 11px;
    margin-right: 2px;
  }

  .loc-chip {
    font-size: 10.5px;
    padding: 3.5px 7px;
    gap: 3.5px;
    flex-shrink: 0;
  }

  .loc-chip svg {
    width: 11px;
    height: 11px;
  }

  .cab-class-cards-grid {
    gap: 6px;
    margin-bottom: 12px;
  }

  .cab-class-card {
    padding: 8px 6px;
    border-radius: 10px;
  }

  .cab-card-top {
    margin-bottom: 4px;
  }

  .cab-icon-badge {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .cab-icon-badge svg {
    width: 12px;
    height: 12px;
  }

  .cab-seat-badge {
    font-size: 8.5px;
    padding: 1px 4px;
  }

  .cab-model-name {
    font-size: 11px;
    font-weight: 700;
  }

  .cab-cars-sub {
    font-size: 9px;
  }

  .cab-rate-tag {
    font-size: 12px;
  }

  .card-pop-tag {
    font-size: 7px;
    padding: 1px 4px;
  }

  .fare-glass-bar {
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .fare-type-caption {
    font-size: 9.5px;
  }

  .fare-price-display {
    font-size: 20px;
  }

  .stat-bubble {
    font-size: 10.5px;
    padding: 3px 6px;
  }

  .btn-primary-book {
    height: 44px;
    font-size: 14px;
    border-radius: 10px;
  }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
  .app-wrapper {
    padding: 0 12px;
  }

  .hero-content h1 {
    font-size: 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  .footer-col.brand-col {
    grid-column: span 2;
  }
  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .footer-col ul {
    gap: 6px;
  }
  .footer-col ul a {
    font-size: 11.5px;
  }
  .footer-text {
    font-size: 11.5px;
  }
}

