/* ==========================================================================
   SHYAM SARTHI TRAVELS - COMPLETE MASTER CSS (home.css)
   Design System: Apple / Uber / Tesla / Luxury Glassmorphism
   Theme: Vibrant Sunset Amber (#FF8C00, #FFD166) & Royal Deep Blue (#0B3D91)
   Performance: 100% GPU Accelerated (transform, opacity, backdrop-filter)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. SYSTEM VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* High-Contrast Palette */
  --primary: #0B3D91;
  --primary-light: #1D62D5;
  --primary-dark: #051A42;
  --secondary: #FF8C00;
  --secondary-bright: #FFA01C;
  --accent: #FFD166;
  --dark: #081120;
  --dark-deep: #03070E;
  
  /* Glass Surfaces */
  --surface-glass: rgba(13, 27, 42, 0.85);
  --surface-card: rgba(16, 32, 54, 0.9);
  
  /* Text Contrast System */
  --text-main: #FFFFFF;
  --text-sub: #E2E8F0;
  --text-muted: #94A3B8;

  /* Glow Effects */
  --glow-orange: 0 0 35px rgba(255, 140, 0, 0.55);
  --glow-gold: 0 0 25px rgba(255, 209, 102, 0.45);
  --glow-blue: 0 0 45px rgba(29, 98, 213, 0.5);

  /* Fluid Typography Scale */
  --font-hero: clamp(2.2rem, 2.6vw + 1rem, 3.7rem);
  --font-h1: clamp(2rem, 3.8vw + 1rem, 3.5rem);
  --font-h2: clamp(1.75rem, 2.8vw + 0.8rem, 2.6rem);
  --font-h3: clamp(1.2rem, 1.5vw + 0.5rem, 1.65rem);
  --font-body: clamp(0.95rem, 0.4vw + 0.8rem, 1.125rem);
  --font-sm: clamp(0.85rem, 0.3vw + 0.75rem, 0.95rem);

  /* Spacing */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.875rem, 1.5vw, 1.25rem);
  --space-md: clamp(1.5rem, 3vw, 2.25rem);
  --space-lg: clamp(2.5rem, 5vw, 4rem);
  --space-xl: clamp(4rem, 8vw, 6.5rem);

  /* Radius & Curves */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", sans-serif;
  background-color: var(--dark-deep);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--dark-deep);
  line-height: 1.65;
  color: var(--text-sub);
}

::selection {
  background: var(--secondary);
  color: #000;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--radius-full);
  border: 2px solid var(--dark-deep);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-sub);
  font-size: var(--font-body);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   3. LAYOUT & GRID ARCHITECTURE
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  position: relative;
  z-index: 5;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-eyebrow {
  display: inline-flex;
  align-self: center;
  font-size: var(--font-sm);
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.45rem 1.3rem;
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.4);
  border-radius: var(--radius-full);
  box-shadow: var(--glow-gold);
}

.section-heading h2 {
  font-size: var(--font-h2);
  background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   4. GLASS & VIBRANT EFFECT UTILITIES
   -------------------------------------------------------------------------- */
.glass-card, .glass-wrapper, .glass-reflection {
  background: var(--surface-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.glass-reflection::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
}

.glass-reflection:hover::before {
  left: 150%;
}

.glow-border {
  position: relative;
  border-radius: var(--radius-full);
}

.glow-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--secondary-bright), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hover-lift {
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo), border-color 0.4s ease;
  will-change: transform;
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), var(--glow-orange);
  border-color: var(--secondary);
}

/* --------------------------------------------------------------------------
   5. BUTTON SYSTEM
   -------------------------------------------------------------------------- */
.btn-primary, .btn-service-book, .btn-vehicle-book, .btn-route-book, .btn-tour-book, .btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.8rem;
  font-size: var(--font-body);
  font-weight: 800;
  color: #000000 !important;
  background: linear-gradient(135deg, var(--secondary-bright) 0%, var(--accent) 100%);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5), 0 0 20px rgba(255, 209, 102, 0.4);
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s var(--ease-expo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  z-index: 1;
}

.btn-primary:hover, .btn-service-book:hover, .btn-vehicle-book:hover, .btn-route-book:hover, .btn-tour-book:hover, .btn-read-more:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.8), 0 0 30px rgba(255, 209, 102, 0.7);
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  transform: rotate(30deg) translateY(-100%);
  animation: buttonShine 5s infinite var(--ease-expo);
}

.btn-book-center {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  z-index: 20;
}

/* --------------------------------------------------------------------------
   6. CINEMATIC HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(
    ellipse 130% 90% at 70% 45%,
    #102A54 0%,
    #0A2545 30%,
    #061122 60%,
    #03070E 100%
  );
  overflow: hidden;
  display: flex;
  align-items: center;
}


.hero-cinematic {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.layer-sky {
  background: radial-gradient(circle at 20% 20%, rgba(29, 98, 213, 0.25) 0%, transparent 50%);
}

.light-rays {
  position: absolute;
  top: -10%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  animation: rayPulse 8s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 14, 0.2) 0%, rgba(3, 7, 14, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 6vw, 6rem);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.6rem 1.4rem;
  font-size: var(--font-sm);
  font-weight: 700;
  color: #FFE5A3;
  background: rgba(255, 209, 102, 0.15);
  border: 1px solid rgba(255, 209, 102, 0.5);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 209, 102, 0.25);
}

.hero-content h1 {
  font-size: var(--font-hero);
  font-weight: 800;
  line-height: 1.12;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(11, 61, 145, 0.4);
}

.hero-content p {
  font-size: clamp(1.05rem, 0.8vw + 0.8rem, 1.25rem);
  color: #E2E8F0;
  max-width: 620px;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.trust-statement {
  font-size: var(--font-sm);
  color: #CBD5E1;
  border-left: 3px solid var(--secondary);
  padding-left: 1rem;
}

.hero-buttons { margin-top: 0.5rem; }

.hero-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-value {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 209, 102, 0.6);
  display: block;
}

.counter-label {
  font-size: var(--font-sm);
  color: #94A3B8;
  font-weight: 600;
  margin-top: 0.4rem;
  display: block;
}

/* --------------------------------------------------------------------------
   7. HERO VISUAL & CLEAN ORBIT SYSTEM
   -------------------------------------------------------------------------- */
.hero-visual {
  position: relative;
  z-index: 10;
  width: 100%;
  height: clamp(480px, 45vw, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-experience {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-center {
  position: absolute;
  z-index: 15;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 27, 42, 0.9);
  border: 1px solid rgba(255, 140, 0, 0.5);
  box-shadow: 0 0 50px rgba(255, 140, 0, 0.4), inset 0 0 20px rgba(255, 209, 102, 0.3);
}

.gps-rings .gps-ring {
  position: absolute;
  inset: -30px;
  border: 1.5px dashed var(--secondary);
  border-radius: var(--radius-full);
  opacity: 0.6;
  animation: ringPulse 4s linear infinite;
}

.pulse-circle {
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  border-radius: var(--radius-full);
  animation: pulseExpand 3s var(--ease-expo) infinite;
}

/* Clean Orbit Rings */
.vehicle-orbit {
  position: absolute;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-sedan { width: 340px; height: 340px; }
.orbit-suv { width: 480px; height: 480px; }
.orbit-tempo { width: 600px; height: 600px; }

.svg-road {
  position: absolute;
  width: 100%;
  height: 100%;
}

.travel-path {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 2px;
  stroke-dasharray: 8 8;
}

.road-glow {
  stroke: var(--secondary);
  stroke-width: 3px;
  filter: drop-shadow(0 0 8px var(--secondary));
  opacity: 0.8;
}

.orbit-path {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  animation: orbitRotate 20s linear infinite;
}

.route-suv { animation-duration: 28s; animation-direction: reverse; }
.route-tempo { animation-duration: 36s; }

/* ==========================================================================
   DIFFERENTIATED VEHICLE CARS (SEDAN, SUV & TEMPO TRAVELLER)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COMMON VEHICLE BASE & HIDDEN BROKEN IMAGES
   -------------------------------------------------------------------------- */
.moving-vehicle {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}

/* Hide broken HTML image tag */
.moving-vehicle img {
  display: none !important;
}

/* --------------------------------------------------------------------------
   2. SEDAN (INNER ORBIT) - Sleek Amber Gold Look
   -------------------------------------------------------------------------- */
.moving-sedan {
  width: 44px;
  height: 22px;
  background: linear-gradient(90deg, #FF8C00, #FFD166);
  border-radius: 5px 12px 12px 5px;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.9), inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.moving-sedan::before {
  content: '';
  position: absolute;
  top: 3px;
  right: 10px;
  width: 12px;
  height: 16px;
  background: rgba(13, 27, 42, 0.95);
  border-radius: 2px 5px 5px 2px;
  border: 1px solid #FFD166;
}

.moving-sedan::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 3px;
  width: 12px;
  height: 16px;
  background: radial-gradient(ellipse at left, #FFFFFF 0%, rgba(255, 209, 102, 0.8) 50%, transparent 85%);
  filter: blur(2px);
}

/* --------------------------------------------------------------------------
   3. SUV (MIDDLE ORBIT) - Robust Neon Cyan / Electric Blue Look
   -------------------------------------------------------------------------- */
.moving-suv {
  top: -15px; /* Adjust alignment for wider orbit */
  width: 54px;
  height: 26px;
  background: linear-gradient(90deg, #00D2FF, #3A7BD5);
  border-radius: 6px 14px 14px 6px;
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.9), inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.moving-suv::before {
  content: '';
  position: absolute;
  top: 4px;
  right: 12px;
  width: 16px;
  height: 18px;
  background: rgba(5, 11, 20, 0.95);
  border-radius: 2px 6px 6px 2px;
  border: 1px solid #00D2FF;
}

.moving-suv::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 3px;
  width: 14px;
  height: 20px;
  background: radial-gradient(ellipse at left, #FFFFFF 0%, rgba(0, 210, 255, 0.9) 50%, transparent 85%);
  filter: blur(2px);
}

/* --------------------------------------------------------------------------
   4. TEMPO TRAVELLER (OUTER ORBIT) - Longer Bold Crimson / Luxury Red
   -------------------------------------------------------------------------- */
.moving-tempo {
  top: -16px;
  width: 68px;
  height: 28px;
  background: linear-gradient(90deg, #FF416C, #FF4B2B);
  border-radius: 8px 16px 16px 8px;
  box-shadow: 0 0 22px rgba(255, 65, 108, 0.9), inset 0 2px 5px rgba(255, 255, 255, 0.8);
}

.moving-tempo::before {
  content: '';
  position: absolute;
  top: 4px;
  right: 14px;
  width: 22px;
  height: 20px;
  background: rgba(13, 27, 42, 0.95);
  border-radius: 3px 8px 8px 3px;
  border: 1px solid #FF4B2B;
}

.moving-tempo::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 3px;
  width: 16px;
  height: 22px;
  background: radial-gradient(ellipse at left, #FFFFFF 0%, rgba(255, 75, 43, 0.9) 50%, transparent 85%);
  filter: blur(2px);
}

.headlight-glow {
  position: absolute;
  top: -10px;
  width: 40px;
  height: 50px;
  background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 209, 102, 0.5) 50%, transparent 80%);
  filter: blur(4px);
}

.destination-stop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px var(--accent);
}

.svg-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gps-route {
  stroke: var(--secondary);
  stroke-width: 3px;
  stroke-dasharray: 10 6;
  animation: dashMove 20s linear infinite;
}

.location-pin { fill: var(--secondary); filter: drop-shadow(0 0 10px var(--secondary)); }
.pin-end { fill: var(--accent); filter: drop-shadow(0 0 12px var(--accent)); }

/* Floating Cards */
.floating-card {
  position: absolute;
  z-index: 20;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(13, 27, 42, 0.92);
  border: 1px solid rgba(255, 209, 102, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 140, 0, 0.25);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 220px;
  animation: floatCard 5s ease-in-out infinite alternate;
}

.card-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--secondary-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
}

.card-review { top: 2%; left: -8%; animation-delay: 0s; }
.card-availability { bottom: 5%; left: -10%; animation-delay: 1.5s; }
.card-destination { top: 5%; right: -8%; animation-delay: 2.5s; }
.card-booking { bottom: 8%; right: -5%; animation-delay: 3.5s; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 7px;
  z-index: 15;
}

.scroll-line {
  width: 4px;
  height: 10px;
  background: var(--secondary);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--secondary);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   8. HERO STATS SECTION
   -------------------------------------------------------------------------- */
.hero-stats-section {
  position: relative;
  z-index: 20;
  margin-top: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, #03070E 0%, #061122 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-box {
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-expo), border-color 0.4s ease, box-shadow 0.4s ease;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.stat-box:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 140, 0, 0.4);
}

.stat-box h3 {
  font-size: var(--font-h3);
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.stat-box p {
  font-size: var(--font-sm);
  color: #CBD5E1;
  line-height: 1.5;
}

.hero-bottom-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.divider-glow {
  fill: var(--dark-deep);
  filter: drop-shadow(0 -10px 15px rgba(11, 61, 145, 0.5));
}

/* --------------------------------------------------------------------------
   9. TRUST SECTION (WITH ANIMATED VECTOR ICONS)
   -------------------------------------------------------------------------- */
.trust-section {
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.trust-card {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-card .icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.25) 0%, rgba(11, 61, 145, 0.4) 100%);
  border: 1px solid rgba(255, 209, 102, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-gold);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s ease;
}

/* Hover par Icon Glow Animation Boost */
.trust-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(4deg);
  box-shadow: var(--glow-orange);
  border-color: var(--accent);
}

.trust-card h3 { font-size: var(--font-h3); color: var(--text-main); }
.trust-card p { font-size: var(--font-sm); color: var(--text-sub); }

/* --------------------------------------------------------------------------
   ANIMATED VECTOR ICONS FOR TRUST CARDS
   -------------------------------------------------------------------------- */
.trust-card .icon-wrapper .svg-placeholder {
  width: 28px;
  height: 28px;
  display: block;
  background-color: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  animation: iconFloatPulse 3s ease-in-out infinite alternate;
}

/* Dynamic Icons Masking */
.icon-driver .svg-placeholder {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A2 2 0 0 0 2 12v4c0 .6.4 1 1 1h2"/><circle cx="7" cy="17" r="2"/><circle cx="17" cy="17" r="2"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A2 2 0 0 0 2 12v4c0 .6.4 1 1 1h2"/><circle cx="7" cy="17" r="2"/><circle cx="17" cy="17" r="2"/></svg>');
}

.icon-gps .svg-placeholder {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 2a8 8 0 0 0-8 8c0 5.25 8 12 8 12s8-6.75 8-12a8 8 0 0 0-8-8z"/><circle cx="12" cy="10" r="3"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 2a8 8 0 0 0-8 8c0 5.25 8 12 8 12s8-6.75 8-12a8 8 0 0 0-8-8z"/><circle cx="12" cy="10" r="3"/></svg>');
}

.icon-sanitized .svg-placeholder {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><path d="m9 12 2 2 4-4"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><path d="m9 12 2 2 4-4"/></svg>');
}

.icon-pricing .svg-placeholder {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>');
}

.icon-support .svg-placeholder {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>');
}

.icon-seating .svg-placeholder {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"/><path d="M3 11v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"/><path d="M5 18v3"/><path d="M19 18v3"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"/><path d="M3 11v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"/><path d="M5 18v3"/><path d="M19 18v3"/></svg>');
}

.icon-family .svg-placeholder {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>');
}

.icon-verified .svg-placeholder {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><polyline points="9 11 12 14 22 4"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><polyline points="9 11 12 14 22 4"/></svg>');
}

.icon-punctual .svg-placeholder {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>');
}

.icon-assistance .svg-placeholder {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"/></svg>');
}

/* Floating & Glowing Icon Animation Keyframes */
@keyframes iconFloatPulse {
  0% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 4px var(--accent)); }
  50% { transform: translateY(-3px) scale(1.05); filter: drop-shadow(0 0 10px var(--secondary)); }
  100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 4px var(--accent)); }
}
/* ==========================================================================
   10. SERVICES SECTION (EXACT HTML MATCH - NO BLANK TEXT, PERFECT COMPACT CARD)
   ========================================================================== */
.services-section {
  padding: var(--space-xl, 4rem) 0;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(11, 61, 145, 0.25) 0%, transparent 70%);
}

/* Grid Layout Fix: Align Items Start prevents vertical card stretching */
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: clamp(1.25rem, 2.5vw, 2rem) !important;
  align-items: start !important; /* FIXED: Cards will NOT stretch to screen bottom */
  grid-auto-rows: max-content !important;
}

/* Service Card Container */
.service-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 1.25rem !important;
  background: rgba(13, 27, 42, 0.92) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--radius-lg, 16px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  transition: transform 0.4s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1)), border-color 0.4s ease, box-shadow 0.4s ease !important;
  overflow: visible !important; /* FIXED: Ensures text and buttons never go blank */
  height: auto !important;
}

.service-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--secondary, #FF8C00) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 140, 0, 0.4) !important;
}

/* Fixed Image Height Box */
.service-image-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 160px !important; /* Controlled compact image size */
  border-radius: var(--radius-md, 12px) !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, rgba(11, 61, 145, 0.6) 0%, rgba(255, 140, 0, 0.2) 100%) !important;
  flex-shrink: 0 !important;
}

.service-image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1)) !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.08) !important;
}

.image-overlay-glow {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 7, 14, 0.85) 100%) !important;
  pointer-events: none !important;
}

/* Icon Wrapper inside Card */
.service-icon-wrapper {
  margin-top: 0.5rem !important;
  margin-bottom: 0.25rem !important;
  display: flex !important;
  align-items: center !important;
}

/* Card Heading - 100% Visible */
.service-card h3 {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin: 0.5rem 0 0.4rem 0 !important;
  line-height: 1.3 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Card Description Paragraph - Safe Clamp & 100% Visible */
.service-card p {
  font-size: var(--font-sm, 0.9rem) !important;
  color: var(--text-sub, #B0C4DE) !important;
  line-height: 1.5 !important;
  margin-bottom: 1.25rem !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  /* Multi-line clamp to prevent tall text boxes */
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Book Now Button Fix - Always Visible & Properly Positioned */
.btn-service-book {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.75rem 1.8rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #0d1b2a !important;
  background: linear-gradient(135deg, #FFD166 0%, #FF8C00 100%) !important;
  border-radius: var(--radius-sm, 8px) !important;
  text-decoration: none !important;
  align-self: flex-start !important; /* Button size remains natural */
  margin-top: auto !important; /* Align to bottom cleanly */
  visibility: visible !important;
  opacity: 1 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-service-book:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.5) !important;
}

/* --------------------------------------------------------------------------
   11. FLEET SECTION
   -------------------------------------------------------------------------- */
.fleet-section { padding: var(--space-xl) 0; position: relative; }

.fleet-category-block {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.fleet-category-heading {
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--secondary);
  padding-left: 1.2rem;
}

.fleet-category-heading h3 { font-size: var(--font-h2); color: var(--text-main); }
.fleet-category-heading p { font-size: var(--font-body); color: var(--text-sub); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.vehicle-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.vehicle-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-image-wrapper img {
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.8));
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image-wrapper img {
  transform: scale(1.06) translateY(-4px);
}

.vehicle-card h4 { font-size: var(--font-h3); color: var(--text-main); }
.vehicle-spec { font-size: var(--font-sm); color: var(--accent); font-weight: 700; }

/* --------------------------------------------------------------------------
   12. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-choose-section { padding: var(--space-xl) 0; }

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.why-choose-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.why-choose-card h3 { font-size: var(--font-h3); color: var(--text-main); }
.why-choose-card p { font-size: var(--font-sm); color: var(--text-sub); }

.why-choose-card .icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.25) 0%, rgba(11, 61, 145, 0.4) 100%);
  border: 1px solid rgba(255, 209, 102, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s ease;
}

.why-choose-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(4deg);
  box-shadow: var(--glow-orange);
  border-color: var(--accent);
}

.why-choose-card .icon-wrapper .svg-placeholder {
  width: 28px;
  height: 28px;
  display: block;
  background-color: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  animation: iconFloatPulse 3s ease-in-out infinite alternate;
}
/* --------------------------------------------------------------------------
   13. POPULAR ROUTES
   -------------------------------------------------------------------------- */
.routes-section { padding: var(--space-xl) 0; }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.route-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.route-animation-wrapper {
  position: relative;
  width: 100%;
  height: 50px;
}

.animated-route-line {
  stroke: var(--secondary);
  stroke-width: 2.5px;
  stroke-dasharray: 6 6;
  animation: dashMove 15s linear infinite;
}

.route-card h3 { font-size: var(--font-h3); color: var(--text-main); }
.route-card p { font-size: var(--font-sm); color: var(--text-sub); flex-grow: 1; }
.distance-wrapper { font-size: var(--font-sm); font-weight: 800; color: var(--accent); }

/* --------------------------------------------------------------------------
   14. TOUR PACKAGES
   -------------------------------------------------------------------------- */
.tour-packages-section { padding: var(--space-xl) 0; position: relative; }

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.tour-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tour-image-wrapper {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.tour-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-image-wrapper img { transform: scale(1.08); }
.tour-card h3 { font-size: var(--font-h3); color: var(--text-main); }
.tour-card p { font-size: var(--font-sm); color: var(--text-sub); flex-grow: 1; }

/* --------------------------------------------------------------------------
   15. JOURNEY PROCESS TIMELINE
   -------------------------------------------------------------------------- */
.journey-process-section { padding: var(--space-xl) 0; }

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  position: relative;
  margin-bottom: var(--space-lg);
}

.journey-step {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.journey-step-number {
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-weight: 800;
  color: var(--secondary-bright);
  line-height: 1;
}

.journey-step h3 { font-size: var(--font-h3); color: var(--text-main); }
.journey-step p { font-size: var(--font-sm); color: var(--text-sub); }
.journey-cta-wrapper { text-align: center; margin-top: var(--space-md); }

/* --------------------------------------------------------------------------
   16. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section { padding: var(--space-xl) 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-header { display: flex; align-items: center; gap: 1rem; }
.testimonial-header img { width: 56px; height: 56px; border-radius: var(--radius-full); object-fit: cover; border: 2px solid var(--secondary); }
.testimonial-identity h3 { font-size: 1.1rem; color: var(--text-main); }
.testimonial-purpose { font-size: 0.85rem; color: var(--accent); font-weight: 700; }

.star-rating-wrapper { display: flex; gap: 0.25rem; color: var(--accent); }
.star-icon::before { content: '★'; font-size: 1.1rem; }
.star-empty::before { color: rgba(255, 255, 255, 0.2); }
.testimonial-quote-wrapper p { font-size: var(--font-sm); color: var(--text-sub); font-style: italic; }

/* --------------------------------------------------------------------------
   17. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section { padding: var(--space-xl) 0; }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem 1.75rem;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: var(--secondary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), var(--glow-orange);
}

.faq-question {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 { font-size: 1.1rem; color: var(--text-main); }
.faq-toggle-icon::after { content: '+'; font-size: 1.5rem; color: var(--secondary); transition: transform 0.3s; }
.faq-item[open] .faq-toggle-icon::after { content: '−'; transform: rotate(180deg); }
.faq-answer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.faq-answer p { font-size: var(--font-sm); color: var(--text-sub); }

/* --------------------------------------------------------------------------
   18. BLOG SECTION
   -------------------------------------------------------------------------- */
.blog-section { padding: var(--space-xl) 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-image-wrapper { width: 100%; height: 200px; overflow: hidden; }
.blog-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-image-wrapper img { transform: scale(1.06); }

.blog-card-content { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; flex-grow: 1; }
.blog-card-content h3 { font-size: 1.2rem; color: var(--text-main); }
.blog-card-content p { font-size: var(--font-sm); color: var(--text-sub); flex-grow: 1; }

/* --------------------------------------------------------------------------
   19. FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.final-cta-section {
  padding: var(--space-xl) 0;
  position: relative;
  text-align: center;
}

.cta-content {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  max-width: 950px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-content h2 { font-size: var(--font-h1); }
.cta-content p { max-width: 700px; font-size: var(--font-body); }

/* --------------------------------------------------------------------------
   20. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section { padding: var(--space-xl) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-info-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card h3 { font-size: var(--font-h2); color: var(--text-main); }
.contact-address { font-style: normal; font-size: var(--font-body); color: var(--text-sub); }

.service-areas-wrapper h4, .opening-hours-wrapper h4 {
  font-size: 1.1rem;
  color: var(--secondary-bright);
  margin-bottom: 0.5rem;
}

.service-areas-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.service-areas-list li { font-size: var(--font-sm); color: var(--text-sub); }
.service-areas-list li::before { content: '✓ '; color: var(--accent); font-weight: bold; }

.contact-map-card {
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.map-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%) contrast(1.05) brightness(0.9);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-card {
    min-height: 320px;
  }
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE CONTROLS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {

  .hero-grid{
      display:flex;
      flex-direction:column;
      text-align:center;
  }

 

  .hero-content{
      order:2;
      align-items:center;
  }

  .hero-badge{
      align-self:center;
  }

  .trust-statement{
      border-left:none;
      border-bottom:2px solid var(--secondary);
      padding-left:0;
      padding-bottom:.5rem;
  }

  .stats-grid{
      grid-template-columns:repeat(2,1fr);
  }

  .contact-grid{
      grid-template-columns:1fr;
  }

}

@media (max-width: 640px) {

  .booking-experience{
      transform: scale(0.35);
      transform-origin: center center;
  }

  .hero-visual{
      overflow: visible;
  }

  .stats-grid { grid-template-columns: 1fr; }

  .hero-counters { grid-template-columns: 1fr; gap: 1rem; }

  .floating-card { display: none; }

}

/* --------------------------------------------------------------------------
   22. ANIMATION KEYFRAMES
   -------------------------------------------------------------------------- */
@keyframes buttonShine {
  0% { transform: rotate(30deg) translateY(-100%); }
  25%, 100% { transform: rotate(30deg) translateY(100%); }
}

@keyframes rayPulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0.9; }
}

@keyframes ringPulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 0.3; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes pulseExpand {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes dashMove {
  to { stroke-dashoffset: -1000; }
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

@keyframes scrollDrop {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}










/* ==========================================================================
   23. INTERACTIVE STORY CAR & PATH STYLES (PURE CSS VECTOR - NO IMAGE REQUIRED)
   ========================================================================== */

/* Motion Path Overlay */
.custom-journey-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Story Car Container */
.story-car-container {
  position: absolute;
  width: 90px;
  height: 40px;
  top: 0;
  left: 0;
  z-index: 20;
  transform-origin: center center;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Base Body (Replaces External SVG / Img) */
.story-car-body {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FF8C00 0%, #FFD166 100%);
  border-radius: 8px 18px 18px 8px;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.9), inset 0 2px 5px rgba(255, 255, 255, 0.8);
}

/* Hide External Broken Image File completely */
.story-car-img {
  display: none !important;
}

/* Pure CSS Windows & Roof */
.story-car-body::before {
  content: '';
  position: absolute;
  top: 5px;
  right: 18px;
  width: 28px;
  height: 30px;
  background: rgba(8, 17, 32, 0.92);
  border-radius: 4px 10px 10px 4px;
  border: 1.5px solid #FFD166;
}

/* Headlight Glow Beam */
.story-car-body::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 4px;
  width: 25px;
  height: 32px;
  background: radial-gradient(ellipse at left, rgba(255, 255, 255, 0.95) 0%, rgba(255, 209, 102, 0.8) 45%, transparent 80%);
  filter: blur(2px);
  pointer-events: none;
}

/* Smoke Particles at Exhaust */
.smoke-emitter {
  position: absolute;
  left: -8px;
  bottom: 6px;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.smoke-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0;
}

/* Dynamic Side Mirror Popup Tag */
.side-tag-popup {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) scale(0.4);
  background: #FFB300;
  color: #000;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(255, 179, 0, 0.8);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  z-index: 25;
}

.side-tag-popup .status-booked {
  display: none;
  color: #00FF88;
}

.side-tag-popup.is-booked {
  background: #000000;
  border: 1.5px solid #00FF88;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.side-tag-popup.is-booked .status-booking { display: none; }
.side-tag-popup.is-booked .status-booked { display: inline-block; }

/* Car Door Opening Animation */
.car-door {
  position: absolute;
  top: 18px;
  left: 28px;
  width: 16px;
  height: 2px;
  background: #FFD166;
  transform-origin: left center;
  transition: transform 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 22;
}

.car-door.open {
  opacity: 1;
  transform: rotate(-50deg);
}

/* Passenger Avatars Inside Car */
.car-passengers {
  position: absolute;
  top: 15px;
  left: 30px;
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 21;
}

.passenger {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 4px #000;
}

.car-passengers.boarded {
  opacity: 1;
}





/* ==========================================================================
   FINAL FIX: HIDE 4 FLOATING TEXT CARDS & SCALE ORBIT CARS CLEANLY
   ========================================================================== */

/* 1. Force Hide the 4 Floating Text Cards (Guest Review, Popular Route, etc.) */
.floating-card,
.card-review,
.card-availability,
.card-destination,
.card-booking {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* 2. Scaled Down Compact Orbit Vehicles (Fits cleanly on route paths) */

/* Base container for orbit cars */
.moving-vehicle {
  position: absolute !important;
  top: -6px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
  background: transparent !important;
}

/* Hide any unwanted nested images inside vehicles */
.moving-vehicle img {
  display: none !important;
}

/* Mini Sedan Scaling */
.moving-sedan {
  width: 26px !important;
  height: 12px !important;
  background: linear-gradient(90deg, #FF8C00, #FFD166) !important;
  border-radius: 3px 8px 8px 3px !important;
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.8) !important;
}

.moving-sedan::before {
  top: 2px !important;
  right: 5px !important;
  width: 7px !important;
  height: 8px !important;
}

/* Mini SUV Scaling */
.moving-suv {
  top: -8px !important;
  width: 32px !important;
  height: 14px !important;
  background: linear-gradient(90deg, #00D2FF, #3A7BD5) !important;
  border-radius: 4px 9px 9px 4px !important;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.8) !important;
}

.moving-suv::before {
  top: 2px !important;
  right: 6px !important;
  width: 8px !important;
  height: 10px !important;
}

/* Mini Tempo Scaling */
.moving-tempo {
  top: -9px !important;
  width: 38px !important;
  height: 16px !important;
  background: linear-gradient(90deg, #FF416C, #FF4B2B) !important;
  border-radius: 4px 10px 10px 4px !important;
  box-shadow: 0 0 12px rgba(255, 65, 108, 0.8) !important;
}

.moving-tempo::before {
  top: 2px !important;
  right: 7px !important;
  width: 10px !important;
  height: 12px !important;
}











/* ==========================================================
   WALKING PASSENGERS ANIMATION
   ADD THIS AT THE VERY BOTTOM OF home.css
========================================================== */

.walking-passengers{
    position:absolute;
    right:85px;
    top:18px;
    width:90px;
    height:70px;
    pointer-events:none;
    z-index:30;
}

.walking-passenger{
    position:absolute;
    width:20px;
    height:42px;
    opacity:0;
    transform:translateX(45px);
}

.passenger-one{
    top:0;
}

.passenger-two{
    top:22px;
}

.walking-passenger .head{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#FFD166;
    display:block;
    margin:auto;
    box-shadow:0 0 6px rgba(255,209,102,.7);
}

.walking-passenger .body{
    width:8px;
    height:26px;
    margin:3px auto 0;
    background:#ffffff;
    border-radius:20px;
    position:relative;
}

.walking-passenger .body::before,
.walking-passenger .body::after{
    content:"";
    position:absolute;
    width:3px;
    height:15px;
    background:#ffffff;
    bottom:-12px;
}

.walking-passenger .body::before{
    left:0;
}

.walking-passenger .body::after{
    right:0;
}

















/* Testimonials: fixed 3-column grid (auto-fit ki jagah), consistent rows ke liye */
.testimonials-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

.thp-driver-card {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.thp-driver-avatar {
  font-size: 0.8rem;
  line-height: 1;
}

.thp-driver-info {
  display: flex;
  flex-direction: column;
  font-size: 0.4rem;
  color: var(--th-white);
  line-height: 1.35;
}

.thp-driver-info strong {
  font-size: 0.46rem;
}

.thp-check {
  width: 34px;
  height: 34px;
  margin: auto auto 6px;
}

.thp-check svg {
  width: 100%;
  height: 100%;
}

.thp-check circle {
  stroke: var(--th-gold);
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}

.thp-check path {
  stroke: var(--th-gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

.thp-status-booked {
  font-weight: 700;
  color: var(--th-gold);
  margin-top: 0;
}

/* --------------------------------------------------------------------------
   AMBIENT AUDIO CONTAINER — visually and structurally invisible
   -------------------------------------------------------------------------- */
.taxi-hero-audio {
  display: none;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media screen and (max-width: 991px) {
  .taxi-hero-phoneui {
    left: 18%;
    top: 6%;
  }
}

@media screen and (max-width: 767px) {
  .taxi-hero-stage {
    aspect-ratio: 1600 / 760;
    min-height: 260px;
  }

  .taxi-hero-phoneui {
    width: clamp(96px, 24vw, 128px);
    left: 15%;
    top: 5%;
  }

  .thp-title { font-size: 0.54rem; }
  .thp-field-value { font-size: 0.4rem; }
}

@media screen and (max-width: 479px) {
  .taxi-hero-stage {
    aspect-ratio: 1600 / 900;
    min-height: 220px;
  }

  .taxi-hero-phoneui {
    width: clamp(84px, 28vw, 108px);
  }
}

/* --------------------------------------------------------------------------
   REDUCED MOTION — freeze on a clean, complete-looking frame
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .taxi-hero * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}















/* Ensure standing passengers are visible outside the taxi first */
#thPassenger1, #thPassenger2 {
    opacity: 1 !important;
    visibility: visible !important;
    transform-box: fill-box;
    transform-origin: center bottom;
}

/* Inside window passengers should be hidden by default */
#thTaxiPassenger1InWindow, #thTaxiPassenger2InWindow {
    opacity: 0;
}




/* Passengers ko zameen par lane ke liye */
#thPassenger1, #thPassenger2 {
    transform-box: fill-box !important;
    transform-origin: center bottom !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}




/* --------------------------------------------------------------------------
   RIPPLE CLICK EFFECT
   -------------------------------------------------------------------------- */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  pointer-events: none;
  animation: rippleExpand 0.6s ease-out;
  z-index: 0;
}

@keyframes rippleExpand {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}




/* Fleet cards ke andar button ko compact rakhne ke liye override */
.vehicle-card .btn-vehicle-book,
.btn-vehicle-book {
  align-self: flex-start;
  padding: clamp(0.55rem, 1vw + 0.3rem, 0.75rem) clamp(1.1rem, 2.5vw, 1.6rem);
  font-size: clamp(0.78rem, 0.3vw + 0.7rem, 0.85rem);
  letter-spacing: 0.03em;
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.35), 0 0 10px rgba(255, 209, 102, 0.25);
}

.vehicle-card .btn-vehicle-book:hover,
.btn-vehicle-book:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5), 0 0 15px rgba(255, 209, 102, 0.4);
}



/* Tour Package cards ke andar button ko compact rakhne ke liye override */
.tour-card .btn-tour-book,
.btn-tour-book {
  align-self: flex-start;
  padding: clamp(0.55rem, 1vw + 0.3rem, 0.75rem) clamp(1.1rem, 2.5vw, 1.6rem);
  font-size: clamp(0.78rem, 0.3vw + 0.7rem, 0.85rem);
  letter-spacing: 0.03em;
  margin-top: auto;
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.35), 0 0 10px rgba(255, 209, 102, 0.25);
}

.tour-card .btn-tour-book:hover,
.btn-tour-book:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5), 0 0 15px rgba(255, 209, 102, 0.4);
}







/* Popular Route cards ke andar button ko compact rakhne ke liye override */
.route-card .btn-route-book,
.btn-route-book {
  align-self: flex-start;
  padding: clamp(0.55rem, 1vw + 0.3rem, 0.75rem) clamp(1.1rem, 2.5vw, 1.6rem);
  font-size: clamp(0.78rem, 0.3vw + 0.7rem, 0.85rem);
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.35), 0 0 10px rgba(255, 209, 102, 0.25);
}

.route-card .btn-route-book:hover,
.btn-route-book:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5), 0 0 15px rgba(255, 209, 102, 0.4);
}



/* Travel Journal (blog) cards ke andar button ko compact rakhne ke liye override */
.blog-card-content .btn-read-more,
.btn-read-more {
  align-self: flex-start;
  padding: clamp(0.55rem, 1vw + 0.3rem, 0.75rem) clamp(1.1rem, 2.5vw, 1.6rem);
  font-size: clamp(0.78rem, 0.3vw + 0.7rem, 0.85rem);
  letter-spacing: 0.03em;
  margin-top: auto;
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.35), 0 0 10px rgba(255, 209, 102, 0.25);
}

.blog-card-content .btn-read-more:hover,
.btn-read-more:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5), 0 0 15px rgba(255, 209, 102, 0.4);
}








/* Journey Timeline: fixed 3-column grid (auto-fit ki jagah), sab screens ke liye responsive */
.journey-timeline {
  position: relative;
  grid-template-columns: repeat(3, 1fr) !important;
}

.journey-road-svg {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.journey-step {
  position: relative;
  z-index: 1;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease-expo), border-color 0.4s ease, box-shadow 0.4s ease;
}

.journey-step:hover {
  transform: translateY(-6px);
  border-color: var(--secondary);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 140, 0, 0.3);
}

@media (max-width: 900px) {
  .journey-timeline { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 560px) {
  .journey-timeline { grid-template-columns: 1fr !important; }
}













/* Services Section: image hata kar 11 alag showcase-icons (mask-technique, 0 image requests) */
.service-icon-wrapper {
  width: 84px;
  height: 84px;
  margin: 0 auto 0.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.25) 0%, rgba(11, 61, 145, 0.4) 100%);
  border: 1px solid rgba(255, 209, 102, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-gold);
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.08) rotate(3deg);
  box-shadow: var(--glow-orange);
  border-color: var(--accent);
}

.service-icon-wrapper .svg-placeholder {
  width: 42px;
  height: 42px;
  display: block;
  background-color: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  animation: iconFloatPulse 3s ease-in-out infinite alternate;
}

.icon-local-taxi {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 16H9m10 0h3v-3.15a1 1 0 0 0-.84-.99L16 11l-2.7-3.6a1 1 0 0 0-.8-.4H5.24a2 2 0 0 0-1.8 1.1l-.8 1.63A6 6 0 0 0 2 12.42V16h2"/><circle cx="6.5" cy="16.5" r="2.5"/><circle cx="16.5" cy="16.5" r="2.5"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 16H9m10 0h3v-3.15a1 1 0 0 0-.84-.99L16 11l-2.7-3.6a1 1 0 0 0-.8-.4H5.24a2 2 0 0 0-1.8 1.1l-.8 1.63A6 6 0 0 0 2 12.42V16h2"/><circle cx="6.5" cy="16.5" r="2.5"/><circle cx="16.5" cy="16.5" r="2.5"/></svg>');
}

.icon-airport {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 2 11 13"/><path d="M22 2 15 22l-4-9-9-4 20-9z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 2 11 13"/><path d="M22 2 15 22l-4-9-9-4 20-9z"/></svg>');
}

.icon-railway {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="4" y="3" width="16" height="13" rx="2"/><path d="M4 11h16"/><path d="M12 3v8"/><path d="m8 19-2 3"/><path d="m18 22-2-3"/><circle cx="8" cy="14" r="1"/><circle cx="16" cy="14" r="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="4" y="3" width="16" height="13" rx="2"/><path d="M4 11h16"/><path d="M12 3v8"/><path d="m8 19-2 3"/><path d="m18 22-2-3"/><circle cx="8" cy="14" r="1"/><circle cx="16" cy="14" r="1"/></svg>');
}

.icon-outstation {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="6" cy="19" r="3"/><path d="M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"/><circle cx="18" cy="5" r="3"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="6" cy="19" r="3"/><path d="M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"/><circle cx="18" cy="5" r="3"/></svg>');
}

.icon-one-way {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>');
}

.icon-round-trip {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="m17 2 4 4-4 4"/><path d="M3 11v-1a4 4 0 0 1 4-4h14"/><path d="m7 22-4-4 4-4"/><path d="M21 13v1a4 4 0 0 1-4 4H3"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="m17 2 4 4-4 4"/><path d="M3 11v-1a4 4 0 0 1 4-4h14"/><path d="m7 22-4-4 4-4"/><path d="M21 13v1a4 4 0 0 1-4 4H3"/></svg>');
}

.icon-corporate {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="7" width="20" height="14" rx="2"/><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="7" width="20" height="14" rx="2"/><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/></svg>');
}

.icon-wedding {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.29 1.5 4.04 3 5.5l7 7Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.29 1.5 4.04 3 5.5l7 7Z"/></svg>');
}

.icon-tempo {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M5 18H3c-.6 0-1-.4-1-1V7c0-.6.4-1 1-1h10c.6 0 1 .4 1 1v11"/><path d="M14 9h4l4 4v4c0 .6-.4 1-1 1h-2"/><circle cx="7" cy="18" r="2"/><circle cx="17" cy="18" r="2"/><path d="M9 18h5"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M5 18H3c-.6 0-1-.4-1-1V7c0-.6.4-1 1-1h10c.6 0 1 .4 1 1v11"/><path d="M14 9h4l4 4v4c0 .6-.4 1-1 1h-2"/><circle cx="7" cy="18" r="2"/><circle cx="17" cy="18" r="2"/><path d="M9 18h5"/></svg>');
}

.icon-bus {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M8 6v6"/><path d="M15 6v6"/><path d="M2 12h19.6"/><path d="M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3"/><circle cx="7" cy="18" r="2"/><circle cx="17" cy="18" r="2"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M8 6v6"/><path d="M15 6v6"/><path d="M2 12h19.6"/><path d="M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3"/><circle cx="7" cy="18" r="2"/><circle cx="17" cy="18" r="2"/></svg>');
}

.icon-tour {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"/></svg>');
}














/* Fleet Grid: fixed 3-column layout (auto-fit ki jagah), sab categories me consistent */
.fleet-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 900px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .fleet-grid {
    grid-template-columns: 1fr !important;
  }
}



/* Fleet vehicle cards: grid-item ka default min-width:auto overflow bug fix karta hai */
.vehicle-card {
  min-width: 0;
}

.vehicle-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}












/* Mobile Hero Circle Size */
@media (max-width:768px){

    .hero-visual{
        height:320px;
    }

    .orbit-sedan{
        width:170px;
        height:170px;
    }

    .orbit-suv{
        width:240px;
        height:240px;
    }

    .orbit-tempo{
        width:300px;
        height:300px;
    }

}


/* Booking Taxi Size */
.story-car-img{
    width: 180px !important;
    height: auto;
}









html,
body {
    overflow-x: hidden !important;
    max-width: 100%;
}






/* =========================================================
   PREMIUM MOBILE + TABLET HERO
   Desktop 1025px+ unchanged
   ========================================================= */

@media (max-width: 1024px) {

    .hero-section {
        min-height: auto;
        align-items: flex-start;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-top: 0;
        padding-bottom: 3rem;
    }

    /* Animation */
    .hero-visual {
        order: 1;
        width: 100%;
        height: 420px;
        overflow: hidden;
        margin: 0 auto;
    }

    .booking-experience {
        transform: scale(0.68);
        transform-origin: center center;
    }

    /* Text */
    .hero-content {
        order: 2;
        position: relative;
        z-index: 20;
        margin-top: -15px;
        align-items: center;
        text-align: center;
    }

    .hero-badge {
        align-self: center;
    }

    .trust-statement {
        border-left: none;
        border-bottom: 2px solid var(--secondary);
        padding-left: 0;
        padding-bottom: .5rem;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .hero-grid {
        padding-top: 0;
        padding-bottom: 2rem;
    }

    /*
     * Animation ko screen width ke hisaab se
     * balanced premium size
     */
    .hero-visual {
        height: 315px;
        width: 100%;
        overflow: hidden;
        margin: 0 auto;
    }

    .booking-experience {
        transform: scale(0.50);
        transform-origin: center center;
    }

    /*
     * Original orbit proportions
     */
    .orbit-sedan {
        width: 340px;
        height: 340px;
    }

    .orbit-suv {
        width: 480px;
        height: 480px;
    }

    .orbit-tempo {
        width: 600px;
        height: 600px;
    }

    /* Text animation ke paas */
    .hero-content {
        margin-top: -8px;
        padding-left: 10px;
        padding-right: 10px;
        gap: 0.9rem;
    }

    /* Badge compact */
    .hero-badge {
        margin-top: 0;
        padding: 0.45rem 0.9rem;
        font-size: 0.72rem;
        line-height: 1.25;
    }

    /*
     * First viewport mein H1 ko strong presence
     */
    .hero-title {
        font-size: clamp(1.75rem, 7.2vw, 2.25rem);
        line-height: 1.12;
        margin: 0;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.55;
        margin: 0;
    }

    .floating-card {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-visual {
        height: 290px;
    }

    .booking-experience {
        transform: scale(0.46);
    }

    .hero-content {
        margin-top: -5px;
    }

    .hero-title {
        font-size: clamp(1.65rem, 7.5vw, 2rem);
        line-height: 1.12;
    }
}