/* ===================================
   INDIA CAB SERVICE - MAIN STYLESHEET
   Colors: Orange, White, Black, Charcoal
   Fonts: Rajdhani (headings) + Nunito (body)
=================================== */

:root {
  --orange: #FF6B00;
  --orange-light: #FF8C35;
  --orange-dark: #E55A00;
  --orange-glow: rgba(255, 107, 0, 0.15);
  --white: #FFFFFF;
  --black: #0A0A0A;
  --charcoal: #2C2C2C;
  --charcoal-light: #3D3D3D;
  --charcoal-mid: #4A4A4A;
  --gray: #6B6B6B;
  --light-gray: #F5F5F5;
  --border: #E0E0E0;
  --shadow: rgba(0,0,0,0.12);
  --shadow-deep: rgba(0,0,0,0.25);
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font-body); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--light-gray); }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }

/* ---- SECTION HEADING ---- */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading .tag {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,107,0,0.3);
}
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}
.section-heading h2 span { color: var(--orange); }
.section-heading p {
  font-size: 15px;
  color: var(--gray);
  max-width: 560px;
  margin: 12px auto 0;
}
.heading-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar span i { margin-right: 5px; color: var(--orange); }
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--orange); }
.admin-link {
  background: var(--orange);
  color: white !important;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(255,107,0,0.35);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1px;
}
.logo-sub {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 3px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.5px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--orange); }
.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 25px !important;
  box-shadow: 0 4px 15px rgba(255,107,0,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,0.5); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border-top: 3px solid var(--orange);
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.dropdown-menu li a:hover { background: var(--light-gray); color: var(--orange); padding-left: 24px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 1.2s ease;
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}
/* Slide backgrounds using CSS gradients (replace with actual images) */
.slide-1 .hero-slide-bg {
  background-color: #1a1a2e;
  background-image: url('/assets/images/hero-1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slide-2 .hero-slide-bg {
  background-color: #0d0d0d;
  background-image: url('/assets/images/hero-2.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slide-3 .hero-slide-bg {
  background-color: #0a0a0a;
  background-image: url('/assets/images/hero-3.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* SVG road/city illustration overlay */
.hero-slide-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='rgba(255,107,0,0.08)' d='M0,160 Q360,80 720,160 Q1080,240 1440,160 L1440,200 L0,200 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-text { color: white; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.hero-badge i { font-size: 14px; }
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-text h1 .highlight {
  color: var(--orange);
  position: relative;
}
.hero-text p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 28px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.hero-stat .label { font-size: 12px; opacity: 0.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 20px rgba(255,107,0,0.45);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,107,0,0.6); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: white; }

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active { background: var(--orange); width: 28px; border-radius: 5px; }
.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
  pointer-events: none;
}
.hero-arrow {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }

/* ===== BOOKING FORM ===== */
.booking-form-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
}
.booking-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.booking-tab {
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.booking-tab i { display: block; font-size: 18px; margin-bottom: 4px; }
.booking-tab.active,
.booking-tab:hover { background: var(--orange); color: white; }

.booking-form-body {
  padding: 22px 20px;
  background: transparent;
}
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.form-group .inp {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--charcoal);
  transition: var(--transition);
  background: rgba(255,255,255,0.92);
}
.form-group .inp::placeholder { color: #999; }
.form-group .inp:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-book {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,0.5); }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light));
  display: flex; align-items: center; justify-content: center;
}
.about-img i { font-size: 80px; color: var(--orange); opacity: 0.3; }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(255,107,0,0.4);
  min-width: 120px;
}
.about-badge-float .big-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.about-badge-float span { font-size: 12px; opacity: 0.85; }
.about-features { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--light-gray);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}
.about-feature i { color: var(--orange); font-size: 18px; margin-top: 2px; }
.about-feature h5 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--charcoal); }
.about-feature p { font-size: 12px; color: var(--gray); }

/* ===== CARS SECTION ===== */
.cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.car-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 25px var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}
.car-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px var(--shadow-deep); border-color: var(--orange); }
.car-img {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.car-img::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(255,107,0,0.15), transparent);
}
.car-img img {
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  transition: var(--transition);
}
.car-img .car-icon { font-size: 70px; color: rgba(255,255,255,0.2); }
.car-card:hover .car-img img { transform: scale(1.05); }
.car-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--orange);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
}
.car-info { padding: 22px; }
.car-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.car-info .car-subtitle { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.car-specs { display: flex; gap: 16px; margin-bottom: 18px; }
.car-spec { text-align: center; flex: 1; }
.car-spec i { color: var(--orange); font-size: 16px; display: block; margin-bottom: 4px; }
.car-spec span { font-size: 12px; color: var(--gray); }
.car-spec strong { display: block; font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--charcoal); }
.car-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.car-rate .rate { font-family: var(--font-heading); font-size: 14px; color: var(--gray); }
.car-rate .rate strong { color: var(--orange); font-size: 20px; }
.btn-book-car {
  background: var(--charcoal);
  color: white;
  padding: 9px 20px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-book-car:hover { background: var(--orange); color: white; }

/* ===== WHY CHOOSE US ===== */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { display: grid; gap: 18px; }
.why-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 3px 15px var(--shadow);
  transition: var(--transition);
  align-items: flex-start;
}
.why-item:hover { transform: translateX(6px); box-shadow: 0 6px 25px var(--shadow-deep); }
.why-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: white;
  box-shadow: 0 4px 12px rgba(255,107,0,0.3);
}
.why-text h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--charcoal); }
.why-text p { font-size: 13px; color: var(--gray); margin-top: 3px; }
.why-visual {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  text-align: center;
}
.why-visual-icon { font-size: 80px; color: var(--orange); margin-bottom: 20px; opacity: 0.8; }
.why-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.why-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 10px;
}
.why-stat .n {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.why-stat span { font-size: 12px; opacity: 0.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 5px 25px var(--shadow);
  border-top: 4px solid var(--orange);
  flex-shrink: 0;
}
.testimonial-stars { color: var(--orange); font-size: 14px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}
.author-name { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--charcoal); }
.author-loc { font-size: 12px; color: var(--gray); }
.slider-nav { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--orange); width: 28px; border-radius: 5px; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 18px 20px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: var(--transition);
  gap: 14px;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--orange); background: var(--light-gray); }
.faq-q i { color: var(--orange); font-size: 12px; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo i { font-size: 28px; color: var(--orange); }
.footer-logo span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: white; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-col ul li a i { color: var(--orange); font-size: 11px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}
.footer-contact li i { color: var(--orange); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom i.fa-heart { color: var(--orange); }

/* ===== FLOATING BTNS ===== */
.float-call, .float-whatsapp {
  position: fixed;
  right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: white;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0,0,0,0.35);
  transition: var(--transition);
}
.float-call { bottom: 100px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.float-whatsapp { bottom: 40px; background: #25D366; }
.float-call:hover, .float-whatsapp:hover { transform: scale(1.15); }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B00' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.page-banner h1 span { color: var(--orange); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 10px; color: var(--orange); }
.breadcrumb span { color: var(--orange-light); }

/* ===== ROUTES PAGE ===== */
.routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.route-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 4px 20px var(--shadow);
  border-left: 4px solid var(--orange);
  transition: var(--transition);
}
.route-card:hover { transform: translateY(-5px); box-shadow: 0 10px 35px var(--shadow-deep); }
.route-cities {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.route-city { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--charcoal); }
.route-arrow { color: var(--orange); font-size: 14px; }
.route-details { display: flex; gap: 16px; margin-bottom: 14px; }
.route-detail { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gray); }
.route-detail i { color: var(--orange); }
.route-fares { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.route-fare {
  text-align: center;
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 8px 4px;
}
.route-fare .vehicle { font-size: 11px; color: var(--gray); font-weight: 600; }
.route-fare .price { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--orange); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
.contact-info-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px var(--shadow);
  border-left: 4px solid var(--orange);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--orange-glow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card h5 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--charcoal); }
.contact-card p { font-size: 13px; color: var(--gray); }
.contact-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 10px 40px var(--shadow);
}
.contact-form-box h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.contact-form-box h3 span { color: var(--orange); }

/* ===== ADMIN ===== */
.admin-body { background: #f0f2f5; min-height: 100vh; font-family: var(--font-body); }
.admin-sidebar {
  width: 240px;
  background: var(--charcoal);
  min-height: 100vh;
  position: fixed;
  left: 0; top: 0;
  z-index: 100;
}
.admin-main { margin-left: 240px; padding: 24px; }
.admin-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  color: white;
  font-size: 17px;
  font-weight: 700;
}
.admin-logo i { color: var(--orange); font-size: 22px; }
.admin-nav { padding: 16px 0; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--transition);
}
.admin-nav a i { width: 18px; color: var(--orange); opacity: 0.7; }
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,107,0,0.12);
  color: white;
  border-left: 3px solid var(--orange);
}
.admin-nav a.active i, .admin-nav a:hover i { opacity: 1; }
.admin-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 24px;
}
.admin-card h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.admin-card h2 i { color: var(--orange); margin-right: 8px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--orange);
}
.stat-icon {
  width: 48px; height: 48px;
  background: var(--orange-glow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--orange);
}
.stat-num { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--charcoal); line-height: 1; }
.stat-label { font-size: 12px; color: var(--gray); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th {
  background: var(--light-gray);
  padding: 12px 14px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--charcoal); }
.admin-table tr:hover td { background: var(--light-gray); }
.badge {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
}
.badge-pending { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #d1e7dd; color: #0a3622; }
.badge-cancelled { background: #f8d7da; color: #842029; }
.badge-completed { background: #cfe2ff; color: #084298; }
.badge-paid { background: #d1e7dd; color: #0a3622; }
.admin-form input, .admin-form select, .admin-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--charcoal);
  transition: var(--transition);
}
.admin-form input:focus, .admin-form select:focus { outline: none; border-color: var(--orange); }
.admin-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.admin-form .form-group { margin-bottom: 16px; }
.btn-admin {
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-dark { background: var(--charcoal); color: white; }
.btn-danger { background: #dc3545; color: white; }
.btn-sm { padding: 6px 14px; font-size: 13px; }

/* ===== BOOKING CONFIRMATION ===== */
.booking-confirm {
  max-width: 680px;
  margin: 60px auto;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-deep);
}
.booking-confirm-header {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 36px;
  text-align: center;
  color: white;
}
.booking-confirm-header i { font-size: 56px; margin-bottom: 12px; }
.booking-confirm-header h2 { font-family: var(--font-heading); font-size: 30px; font-weight: 700; }
.booking-confirm-body { padding: 36px; }
.confirm-detail { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
.confirm-detail:last-child { border-bottom: none; }
.confirm-label { font-size: 13px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.confirm-value { font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: var(--charcoal); }
.confirm-ref { text-align: center; background: var(--light-gray); border-radius: var(--radius); padding: 18px; margin: 20px 0; }
.confirm-ref .ref-num { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--orange); letter-spacing: 2px; }

/* ===== PAYMENT ===== */
.payment-box {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 40px var(--shadow);
}
.payment-methods { display: grid; gap: 12px; margin: 20px 0; }
.payment-method {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.payment-method:hover, .payment-method.selected { border-color: var(--orange); background: var(--orange-glow); }
.payment-method i { font-size: 24px; color: var(--orange); width: 28px; }
.payment-method span { font-family: var(--font-heading); font-size: 16px; font-weight: 600; }
.payment-method small { font-size: 12px; color: var(--gray); display: block; }

/* ===== ALERT / MESSAGES ===== */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #d1e7dd; color: #0a3622; border-left: 4px solid #0f5132; }
.alert-error { background: #f8d7da; color: #842029; border-left: 4px solid #842029; }
.alert-info { background: #cfe2ff; color: #084298; border-left: 4px solid #084298; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.animate-up { animation: fadeInUp 0.7s ease forwards; }
.animate-left { animation: fadeInLeft 0.7s ease forwards; }
.animate-right { animation: fadeInRight 0.7s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .booking-form-card { max-width: 480px; margin: 0 auto; }
  .about-grid, .why-wrap, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cars-grid, .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { justify-content: flex-start; }
  .testimonial-card { min-width: calc(50% - 12px); }
}
@media (max-width: 768px) {
  .topbar .container { flex-direction: column; gap: 4px; font-size: 12px; }
  .topbar-right .admin-link { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0 30px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: right 0.35s ease;
    z-index: 999;
    overflow-y: auto;
    gap: 0;
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { display: block; padding: 14px 24px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; border-left: 3px solid var(--orange); margin-left: 20px; }
  .section { padding: 55px 0; }
  .cars-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 100vh; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .admin-sidebar { width: 200px; }
  .admin-main { margin-left: 200px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ===================================
   REAL HERO IMAGES SUPPORT
   Upload karo: assets/images/hero-1.jpg, hero-2.jpg, hero-3.jpg
   Aur CSS gradient hatao niche se
=================================== */

/* STEP 1: Agar real images add karo toh in 3 lines ko replace karo */
/* .slide-1 .hero-slide-bg { background-image: url('../images/hero-1.jpg'); background-size: cover; background-position: center; } */
/* .slide-2 .hero-slide-bg { background-image: url('../images/hero-2.jpg'); background-size: cover; background-position: center; } */
/* .slide-3 .hero-slide-bg { background-image: url('../images/hero-3.jpg'); background-size: cover; background-position: center; } */

/* ===================================
   REAL CAR IMAGES SUPPORT
   Upload karo: assets/images/sedan.png, ertiga.png, innova.png
=================================== */
.car-img img {
  max-height: 160px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}
.car-card:hover .car-img img {
  transform: scale(1.05);
}

/* ===================================
   REAL ABOUT IMAGE SUPPORT
   Upload karo: assets/images/about-img.jpg
=================================== */
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================================
   MOBILE VIEW COMPLETE FIX
   All issues from screenshot corrected
============================================================ */

/* ---- Hero: mobile mein full screen image ---- */
@media (max-width: 1024px) {
  .hero { height: auto; min-height: 100dvh; }

  .hero-inner {
    grid-template-columns: 1fr !important;
    padding: 100px 0 30px;
    gap: 24px;
  }

  /* Text left side - mobile center */
  .hero-text { text-align: center; }
  .hero-badge { margin: 0 auto 14px; display: inline-flex; }
  .hero-text p { margin: 0 auto 20px; }
  .hero-stats { justify-content: center !important; gap: 24px; }
  .hero-btns { justify-content: center; }
  .animate-left, .animate-right { animation: none; opacity: 1; transform: none; }

  /* Booking form: full width below hero text on tablet */
  .booking-form-card {
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto !important;
  }
}

@media (max-width: 768px) {
  /* Hero mobile fixes */
  .hero { min-height: 100dvh; }
  .hero-inner { padding: 80px 0 24px; gap: 20px; }
  .hero-text h1 { font-size: 30px; line-height: 1.2; }
  .hero-text p { font-size: 14px; }
  .hero-stat .num { font-size: 22px; }
  .hero-stat .label { font-size: 11px; }

  /* Booking form on mobile - glassmorphism style */
  .booking-form-card {
    background: rgba(10,10,10,0.72) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }
  .booking-tab { font-size: 12px; padding: 12px 6px; }
  .booking-tab i { font-size: 16px; margin-bottom: 3px; }
  .booking-form-body { padding: 16px 14px; }
  .form-group { margin-bottom: 10px; }
  .form-group .inp { padding: 10px 12px; font-size: 13px; }
  .form-group label { font-size: 11px; }
  .btn-book { padding: 12px; font-size: 15px; }

  /* Form row - single column on mobile */
  .form-row { grid-template-columns: 1fr; gap: 10px; }

  /* Fare result */
  .fare-result { font-size: 13px; padding: 8px 12px; }

  /* Cars grid mobile */
  .cars-grid { grid-template-columns: 1fr !important; max-width: 400px; margin: 0 auto; }
  .car-img { height: 180px; }
  .car-img img { max-height: 140px; }

  /* Why section mobile */
  .why-wrap { grid-template-columns: 1fr !important; }
  .why-visual { padding: 28px 20px; }
  .why-stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* About section mobile */
  .about-grid { grid-template-columns: 1fr !important; }
  .about-badge-float { right: 10px; bottom: -14px; padding: 14px; min-width: 100px; }
  .about-badge-float .big-num { font-size: 32px; }
  .about-features { grid-template-columns: 1fr !important; }

  /* Testimonials */
  .testimonials-track { flex-direction: column; transform: none !important; }
  .testimonial-card { min-width: 100% !important; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-form-box { padding: 24px 18px; }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-top { padding: 44px 0 32px; }

  /* Floating buttons - smaller on mobile */
  .float-call { width: 46px; height: 46px; font-size: 19px; right: 16px; bottom: 90px; }
  .float-whatsapp { width: 46px; height: 46px; font-size: 19px; right: 16px; bottom: 34px; }

  /* Topbar mobile */
  .topbar .container { gap: 2px; }
  .topbar-left, .topbar-right { gap: 12px; font-size: 11px; }

  /* Section heading mobile */
  .section-heading h2 { font-size: 26px; }
  .section { padding: 44px 0; }

  /* Page banner mobile */
  .page-banner { padding: 55px 0 40px; }
  .page-banner h1 { font-size: 28px; }

  /* Route detail grid mobile */
  .route-detail-grid { grid-template-columns: 1fr !important; }

  /* Admin mobile */
  .stats-row { grid-template-columns: 1fr 1fr !important; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 26px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-stat { min-width: 70px; }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .container { padding: 0 14px; }
  .nav-menu { width: 100vw; }

  /* Cars - full width */
  .cars-grid { max-width: 100%; }

  /* Section headings */
  .section-heading h2 { font-size: 23px; }
  .section-heading p { font-size: 13px; }

  /* Footer bottom */
  .footer-bottom p { font-size: 12px; }

  /* Booking form tab text adjust */
  .booking-tab { font-size: 11px; padding: 11px 4px; letter-spacing: 0; }
  .booking-tab i { font-size: 15px; }
}

/* ---- Car images: show properly ---- */
.car-img {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}
.car-img img {
  max-height: 170px;
  width: 100%;
  object-fit: contain;
  padding: 10px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.6));
  transition: transform 0.35s ease;
  display: block;
}
.car-card:hover .car-img img { transform: scale(1.06); }
.car-icon {
  font-size: 70px;
  color: rgba(255,255,255,0.2);
}

/* ---- About image fix ---- */
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Hero overlay darkening for better text readability ---- */
.hero-slide-bg::after {
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.50) 50%,
    rgba(0,0,0,0.30) 100%
  ) !important;
}

/* On mobile, darken more so text is readable */
@media (max-width: 768px) {
  .hero-slide-bg::after {
    background: rgba(0,0,0,0.68) !important;
  }
}

/* ---- Mobile Nav Close Button ---- */
.nav-close-wrap { display: none; }
@media (max-width: 768px) {
  .nav-close-wrap {
    display: flex;
    justify-content: flex-end;
    padding: 14px 16px 4px;
    width: 100%;
    border-bottom: none;
  }
  .nav-close {
    background: none;
    border: 2px solid var(--border);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--charcoal);
    transition: var(--transition);
  }
  .nav-close:hover { background: var(--orange); color: white; border-color: var(--orange); }
}

/* ---- Hamburger animation ---- */
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Nav overlay (mobile) ---- */
@media (max-width: 768px) {
  .navbar:has(#navMenu.open)::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }
}

/* ---- Transparent form fare result ---- */
.fare-display .fare-result {
  background: rgba(209,250,229,0.15);
  color: #6ee7b7;
  border-left-color: #10b981;
  backdrop-filter: blur(4px);
}
.fare-display .fare-new {
  background: rgba(254,243,199,0.15);
  color: #fde68a;
  border-left-color: #f59e0b;
}

/* ---- Hero booking form - force transparent on hero section ---- */
.hero .booking-form-card {
  background: rgba(8,8,8,0.65) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
}
.hero .booking-form-body {
  background: transparent !important;
}
.hero .form-group label {
  color: rgba(255,255,255,0.82) !important;
}
.hero .form-group .inp {
  background: rgba(255,255,255,0.93) !important;
  border-color: rgba(255,255,255,0.3) !important;
  color: #222 !important;
}
.hero .form-group .inp:focus {
  border-color: var(--orange) !important;
  background: white !important;
}
