/* ESHAKA CABS - Clean White + Yellow Travel Theme */
:root {
  --bg-body: #FFFFFF;
  --bg-section: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-input: #FFFFFF;
  
  --primary-navy: #111B33;
  --secondary-navy: #1B2942;
  --brand-orange: #F59E0B;
  --brand-gold: #FBBF24;
  --orange-heading: #E98200;
  --light-gold: #FEF3C7;
  --warm-cream: #FFFDF7;
  --body-slate: #64748B;
  --light-border: #E5E7EB;
  --success-green: #22C55E;
  
  --primary-yellow: #F59E0B;
  --yellow-light: #FEF3C7;
  --yellow-hover: #D97706;
  --yellow-badge-bg: #FEF3C7;
  --yellow-badge-text: #111B33;
  
  --text-main: #101A33;
  --text-muted: #52627A;
  --text-light: #64748B;
  
  --border-light: #E6E9EE;
  --border-card: #CBD5E1;
  --border-focus: #F5A400;
  --border-error: #EF4444;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 2px 8px rgba(16, 26, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(16, 26, 51, 0.07);
  --font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 70px;
  background-color: var(--bg-body);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

/* Typography & Badges */
.text-yellow { color: #D97706; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--yellow-badge-bg);
  color: var(--yellow-badge-text);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  outline: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-yellow), var(--yellow-hover));
  transform: translateY(-2px);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-main);
  border-color: var(--border-card);
}

.btn-secondary:hover {
  border-color: var(--primary-yellow);
  color: #D97706;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

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

.btn-full {
  width: 100%;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: 76px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-img {
  height: 54px;
  max-height: 56px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

@media (max-width: 480px) {
  .brand-logo-img {
    height: 42px;
    max-height: 44px;
    max-width: 170px;
  }
}

/* Phone link styling */
.phone-link {
  color: #0284C7;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: #0369A1;
}

.footer-logo-img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
  color: #D97706;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Hamburger Menu */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media (min-width: 900px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 24px 20px;
  transform: translateY(-150%);
  transition: transform 0.3s ease;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.mobile-drawer.open {
  transform: translateY(0);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer-links a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

/* Hero Section Structure & Layering */
.hero-section {
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 60px;
  position: relative;
  background: #FFFCF3;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: calc(100vh - var(--header-height));
  box-sizing: border-box;
}

/* Layer 1, 2, 3, 4: Scene Background & Atmosphere */
.hero-scene-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Layer 3: Layered Sun Glow behind car */
.hero-sun-glow {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245, 164, 0, 0.35) 0%, rgba(255, 243, 204, 0.22) 50%, rgba(255, 252, 243, 0) 75%);
  border-radius: 50%;
  z-index: 2;
}

/* Layer 2 & 4: Tamil Nadu Scenery & Road (Lighthouse, Temple Gopuram, Palm Trees) */
.hero-landmarks-svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 780px;
  height: auto;
  z-index: 1;
  opacity: 0.75;
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 53% 44%;
  gap: 3%;
  align-items: flex-end;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  text-align: left;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-content .badge {
  display: inline-flex;
  margin-bottom: 14px;
  background: #FFF3CC;
  border: 1px solid #F5A400;
  color: #101A33;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  gap: 6px;
}

.hero-brand-name {
  font-size: 2.8rem;
  font-weight: 900;
  color: #101A33;
  letter-spacing: -0.5px;
  display: inline-block;
  margin-bottom: 2px;
}

.hero-location-headline {
  color: #E58A00;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.3px;
  display: inline-block;
}

.hero-title {
  margin: 10px 0 16px;
}

@media (min-width: 768px) {
  .hero-brand-name {
    font-size: 3.4rem;
  }
  .hero-location-headline {
    font-size: 2.6rem;
  }
}

.hero-subtitle {
  font-size: 1.02rem;
  color: #52627A;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 100%;
}

/* Service Usecases Cards Grid */
.hero-usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .hero-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .hero-usecases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.usecase-card {
  background: #FFFFFF;
  border: 1px solid #E6E9EE;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(16, 26, 51, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.usecase-card:hover {
  transform: translateY(-2px);
  border-color: #F5A400;
}

.usecase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usecase-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.usecase-text strong {
  font-size: 0.85rem;
  color: #101A33;
  line-height: 1.2;
}

.usecase-text small {
  font-size: 0.74rem;
  color: #52627A;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* CTAs & Trust Row */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 540px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.hero-booking-btn {
  background: #F5A400;
  color: #101A33;
  font-size: 1rem;
  font-weight: 800;
  padding: 15px 28px;
  border-radius: 12px;
  box-shadow: 0 10px 22px -4px rgba(245, 164, 0, 0.45);
  gap: 10px;
}

.hero-booking-btn:hover {
  background: #E58A00;
  color: #FFFFFF;
  box-shadow: 0 14px 26px -4px rgba(229, 138, 0, 0.45);
}

.hero-call-btn {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: #101A33;
  font-size: 0.96rem;
  font-weight: 800;
  padding: 15px 24px;
  border-radius: 12px;
}

.hero-call-btn:hover {
  border-color: #101A33;
  background: #F8FAFC;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #52627A;
  flex-wrap: wrap;
}

.hero-trust-row .trust-divider {
  color: #E6E9EE;
}

/* Layer 5 (Car) & Layer 6 (Feature Card) Layering Structure */
.hero-right-composition {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Layer 5: Standalone Large Vehicle Artwork Overlapping Feature Card */
.hero-xylo-container {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 440px;
  margin: 0 auto -70px;
  text-align: center;
  transition: transform 0.3s ease;
}

.hero-xylo-standalone {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(16, 26, 51, 0.16));
}

.hero-right-composition:hover .hero-xylo-standalone {
  transform: translateY(-4px) scale(1.02);
}

/* Layer 6: Floating White Benefits Panel Overlapped by Vehicle Lower Edge */
.hero-benefits-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #E6E9EE;
  border-radius: 24px;
  padding: 85px 24px 26px;
  box-shadow: 0 16px 45px rgba(16, 26, 51, 0.07);
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.panel-slogan {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111B33;
  margin-bottom: 8px;
}

.panel-gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 80px;
  margin: 0 auto 18px;
}

.panel-gold-divider::before,
.panel-gold-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: #F59E0B;
  border-radius: 2px;
}

.panel-gold-divider .diamond-accent {
  color: #FBBF24;
  font-size: 0.65rem;
  line-height: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}

.benefit-item {
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-text strong {
  font-size: 0.84rem;
  color: #10182D;
  line-height: 1.25;
}

.benefit-text small {
  font-size: 0.74rem;
  color: var(--text-light);
  white-space: nowrap;
}

@media (max-width: 991px) {
  .hero-bg-atmosphere {
    width: 100%;
    opacity: 0.5;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content .badge {
    margin: 0 auto 14px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-row {
    justify-content: center;
  }
  .hero-xylo-container {
    margin-bottom: -40px;
    max-width: 320px;
  }
  .hero-benefits-panel {
    padding-top: 52px;
  }
}

.hero-card-slogan {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  font-style: normal;
}

.hero-card-divider {
  height: 2px;
  width: 48px;
  background: #FBBF24;
  margin: 0 auto 16px;
  border-radius: 2px;
}

.hero-card-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}

.feature-box {
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-box-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-box-text {
  display: flex;
  flex-direction: column;
}

.feature-box-text strong {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.25;
}

.feature-box-text small {
  font-size: 0.74rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* Trust Stats Bar Below Hero */
.trust-stats-bar {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

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

@media (min-width: 768px) {
  .trust-stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

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

.trust-stat-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.trust-stat-num {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
}

.trust-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content .badge {
    margin: 0 auto 14px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-row {
    justify-content: center;
  }
}

/* Landing Page Hero Booking Card */
.hero-booking-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
  transition: box-shadow 0.25s ease;
}

.hero-booking-card:hover {
  box-shadow: 0 14px 35px -5px rgba(0, 0, 0, 0.1), 0 10px 14px -6px rgba(0, 0, 0, 0.04);
}

.booking-card-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.booking-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.booking-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .hero-booking-card {
    padding: 18px 14px;
    border-radius: var(--radius-md);
  }
}

.hero-visual {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 900;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

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

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

/* Vehicle Fleet Section */
.cars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.car-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

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

.car-img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.car-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.car-card:hover .car-img-wrapper img {
  transform: scale(1.03);
}

.car-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.car-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

.car-desc-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.car-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.car-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
}

.car-feature-item svg {
  color: var(--primary-yellow);
  flex-shrink: 0;
}

/* Booking Section & Form Wrapper */
.booking-section {
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px 16px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .booking-wrapper {
    padding: 40px;
  }
}

.form-group-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  border-bottom: 2px solid var(--yellow-badge-bg);
  padding-bottom: 8px;
}

.form-group-title svg {
  color: var(--primary-yellow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.input-control {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.input-label span.req {
  color: #D97706;
}

.input-field {
  width: 100%;
  padding: 13px 15px;
  background: var(--bg-input);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.98rem;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.input-field:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.input-field.error {
  border-color: var(--border-error);
}

.error-text {
  font-size: 0.8rem;
  color: var(--border-error);
  display: none;
  margin-top: 2px;
  font-weight: 600;
}

.error-text.show {
  display: block;
}

/* Radio Cards (Trip Type & Preferred Car) */
.radio-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 540px) {
  .radio-cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.radio-card {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.radio-card:hover {
  border-color: var(--primary-yellow);
  background: #FFFBEB;
}

.radio-card.selected {
  border-color: var(--primary-yellow);
  background: #FEF3C7;
}

.radio-card input[type="radio"] {
  accent-color: var(--primary-yellow);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.radio-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.radio-card-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
}

.radio-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Embedded Special Requirement Container */
.special-requirement-container {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-card);
  width: 100%;
}

.special-requirement-container.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

/* Dynamic Round Trip Container */
.round-trip-fields {
  display: none;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 10px;
}

@media (min-width: 640px) {
  .round-trip-fields {
    grid-template-columns: repeat(2, 1fr);
  }
}

.round-trip-fields.active {
  display: grid;
  animation: fadeIn 0.25s ease;
}

/* Non-intrusive Passenger Reset Info Notice */
.passenger-info-notice {
  font-size: 0.82rem;
  color: #D97706;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}

.passenger-info-notice.show {
  display: block;
}

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

.field-help-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Features & Services Grid */
.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .grid-cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Centered 5-card layout alignment for #features section */
@media (min-width: 640px) and (max-width: 991px) {
  #features .grid-cards-3 .feature-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (min-width: 992px) {
  #features .grid-cards-3 {
    grid-template-columns: repeat(6, 1fr);
  }
  #features .grid-cards-3 .feature-card {
    grid-column: span 2;
  }
  #features .grid-cards-3 .feature-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  #features .grid-cards-3 .feature-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--yellow-badge-bg);
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.faq-card:hover {
  border-color: var(--primary-yellow);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Modal Overlay & Cards */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

/* Modal Close X Button */
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: var(--text-main);
  font-size: 1.5rem;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: #D97706;
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .modal-card {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
    max-height: 92vh;
  }
  .modal-close-btn {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }
}

.summary-header {
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.summary-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-main);
}

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

.summary-section-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #B45309;
  margin: 16px 0 10px;
}

.summary-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 8px;
  border-bottom: 1px stroke var(--border-light);
}

.summary-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.summary-val {
  font-weight: 700;
  color: var(--text-main);
  text-align: right;
  max-width: 60%;
  font-size: 0.92rem;
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 500px) {
  .summary-actions {
    flex-direction: row;
  }
}

.success-card {
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 8px 14px;
  gap: 10px;
  z-index: 95;
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bottom-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
/* Bottom Trust / Statistics Strip (Section 12) */
.trust-stats-bar {
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 24px 0;
  box-shadow: 0 4px 16px rgba(17, 27, 51, 0.03);
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}

.trust-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-right: 1px solid #E5E7EB;
}

.trust-stat-item:last-child {
  border-right: none;
}

.trust-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-stat-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111B33;
  line-height: 1.2;
}

.trust-stat-label {
  font-size: 0.78rem;
  color: #64748B;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .trust-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .trust-stat-item:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .trust-stat-item {
    border-right: none;
  }
}

/* Footer (Dark Anchor Footer) */
.site-footer {
  background: #0F172A;
  color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 50px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  color: #94A3B8;
  margin-top: 12px;
  max-width: 320px;
  font-size: 0.92rem;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--yellow-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  font-size: 0.85rem;
}
