/* ==========================================================================
   Ride Bihar - Premium Cab & Taxi Booking Website
   Theme: Vibrant Bihar Gold (#f59e0b) & Midnight Navy (#0f172a)
   ========================================================================== */

:root {
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-light: #fef3c7;
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --accent: #10b981;
  --accent-hover: #059669;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-family: 'Poppins', 'Mukta', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Top Notification Bar
   ========================================================================== */
.topbar {
  background: var(--secondary);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item i {
  color: var(--primary);
}

.topbar-item a:hover {
  color: #ffffff;
}

.topbar-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-wa-btn {
  color: #25d366;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.topbar-wa-btn:hover {
  color: #4ade80;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-icon {
  background: linear-gradient(135deg, var(--primary), #d97706);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.35);
  flex-shrink: 0;
}

.brand-logo span.highlight {
  color: var(--primary);
}

.brand-tagline {
  font-family: 'Mukta', 'Noto Sans Devanagari', 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  letter-spacing: 0.2px;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  display: inline-block;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #d97706);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebc57;
  transform: translateY(-2px);
  color: #ffffff;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section with 2-3 Lines Intro + Immediate Booking Form
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b1120 0%, #1e293b 60%, #0f172a 100%);
  color: #ffffff;
  padding: 55px 0 65px;
  overflow: hidden;
  scroll-margin-top: 85px;
}

#hero,
#bookingWidget,
#fleet,
#routes,
#whyUs,
#howItWorks,
#reviews,
#faq {
  scroll-margin-top: 85px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

/* Line 1: Main Title */
.hero-header h1 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.hero-header h1 span {
  color: var(--primary);
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Line 2: Subtitle / Value Proposition */
.hero-subtitle {
  font-size: 1.12rem;
  color: #cbd5e1;
  margin-bottom: 10px;
  font-weight: 400;
}

/* Line 3: Trust Badges Line */
.hero-badges-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  padding: 5px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-badge-pill i {
  color: var(--primary);
}

/* ==========================================================================
   Booking Widget (Positioned Immediately After 3 Lines)
   ========================================================================== */
.booking-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Trip Tabs */
.booking-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  background: none;
  border: none;
  padding: 16px 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  background: #e2e8f0;
  color: var(--text-dark);
}

.tab-btn.active {
  background: #ffffff;
  color: var(--secondary);
  border-bottom-color: var(--primary);
}

.tab-btn i {
  font-size: 1.05rem;
  color: var(--primary);
}

.booking-form {
  padding: 28px 32px 32px;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 12px;
  color: #94a3b8;
  font-size: 1rem;
  pointer-events: none;
}

.form-control {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 15px;
  padding-right: 32px;
  cursor: pointer;
}

/* Second row of inputs */
.passenger-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.5fr 1.5fr;
  gap: 16px;
  margin-bottom: 20px;
}

/* Live Quote / Estimated Fare Banner */
.fare-banner {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px dashed #f59e0b;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.fare-banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fare-banner-left i {
  font-size: 1.4rem;
  color: var(--primary);
}

.fare-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #92400e;
}

.fare-note {
  font-size: 0.78rem;
  color: #b45309;
}

.fare-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #b45309;
}

/* Submit Actions */
.booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.guarantee-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.guarantee-text i {
  color: var(--accent);
}

.submit-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-book-submit {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  padding: 14px 34px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  transition: var(--transition);
}

.btn-book-submit:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-book-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Quick Highlights Bar
   ========================================================================== */
.quick-stats-bar {
  background: #ffffff;
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.stat-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section {
  padding: 70px 0;
}

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

.section-pill {
  display: inline-block;
  background: var(--primary-light);
  color: #b45309;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 12px;
}

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

/* ==========================================================================
   Fleet & Car Categories
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fleet-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.fleet-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--secondary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

.fleet-badge.popular {
  background: var(--primary);
  color: #ffffff;
}

.fleet-image-wrap {
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  padding: 30px 20px 20px;
  position: relative;
  text-align: center;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-car-svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  transition: var(--transition);
}

.fleet-card:hover .fleet-car-svg {
  transform: scale(1.05);
}

.fleet-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.fleet-models {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.fleet-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: #475569;
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.fleet-features {
  list-style: none;
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: #475569;
  flex-grow: 1;
}

.fleet-features li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fleet-features li i {
  color: var(--accent);
  font-size: 0.75rem;
}

.fleet-pricing {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.rate-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.rate-unit {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.btn-select-car {
  width: 100%;
  text-align: center;
  padding: 10px;
  background: #f1f5f9;
  color: var(--secondary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-select-car:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* ==========================================================================
   Popular Bihar Routes
   ========================================================================== */
.routes-section {
  background: #ffffff;
}

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

.route-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: #ffffff;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.route-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.route-path {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-path i {
  color: var(--primary);
  font-size: 0.85rem;
}

.route-distance {
  font-size: 0.8rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  padding: 3px 8px;
  border-radius: 6px;
}

.route-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.route-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.route-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #b45309;
}

.route-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: normal;
}

.btn-route-book {
  background: var(--primary-light);
  color: #b45309;
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-route-book:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-box {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.feature-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.how-it-works-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
}

.how-it-works-section .section-title {
  color: #ffffff;
}

.how-it-works-section .section-subtitle {
  color: #94a3b8;
}

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

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 34px 28px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.5);
}

.step-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* ==========================================================================
   Customer Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.test-stars {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.test-text {
  font-size: 0.92rem;
  color: #334155;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.test-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
}

.test-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--primary);
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 18px;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #d97706 100%);
  color: #ffffff;
  padding: 50px 0;
  border-radius: var(--radius-lg);
  margin-bottom: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.35);
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 1rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-white {
  background: #ffffff;
  color: var(--secondary);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #090e17;
  color: #94a3b8;
  padding: 100px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Quick Call)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.float-wa {
  background: #25d366;
}

.float-call {
  background: var(--secondary);
  border: 2px solid var(--primary);
}

.float-tooltip {
  position: absolute;
  right: 62px;
  background: var(--secondary);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* ==========================================================================
   Modal Dialog (Booking Confirmation & Status)
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 36px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  animation: modalScale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--secondary);
}

.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.modal-icon.success {
  background: #dcfce7;
  color: #16a34a;
}

.modal-icon.error {
  background: #fee2e2;
  color: #dc2626;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

.booking-ticket {
  background: #f8fafc;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 0.88rem;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ticket-row:last-child {
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-weight: 700;
}

.ticket-label {
  color: var(--text-muted);
}

.ticket-val {
  color: var(--secondary);
  font-weight: 600;
}

.modal-buttons {
  display: flex;
  gap: 12px;
}

.modal-buttons .btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1120px) {
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.84rem;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-btn {
    padding: 7px 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 960px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    gap: 15px;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-actions {
    display: none;
  }
}

@media (max-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .passenger-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .hero-section {
    padding: 35px 0 50px;
  }
  .hero-header h1 {
    font-size: 1.7rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-badges-line {
    gap: 8px;
    font-size: 0.78rem;
  }
  .booking-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .tab-btn {
    padding: 12px 8px;
    font-size: 0.85rem;
  }
  .booking-form {
    padding: 20px 16px;
  }
  .form-grid,
  .passenger-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-grid,
  .routes-grid,
  .features-grid,
  .steps-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons {
    justify-content: center;
  }
  .floating-actions {
    bottom: 16px;
    right: 16px;
  }
  .modal-buttons {
    flex-direction: column;
  }
}
