/* ==========================================================================
   GET CABS - Coimbatore Cab Booking (Pure CSS)
   Inspired by Red Taxi & Coimbatore Local Taxi Services
   Company Name: Get Cabs
   Phone: 9894020156
   ========================================================================== */

/* 1. Theme Color Palette & Variables */
:root {
  --brand-red: #d90429;          /* Signature Red */
  --brand-red-dark: #ef233c;     /* Accent Red */
  --brand-yellow: #ffb703;       /* Taxi Yellow */
  --brand-dark: #111827;         /* Deep Midnight Charcoal */
  --brand-gray-dark: #1f2937;    /* Slate Dark */
  --text-main: #1f2937;          /* Body Text */
  --text-muted: #6b7280;         /* Secondary Text */
  --bg-light: #f8fafc;           /* Light Section Background */
  --bg-card: #ffffff;            /* Card Background */
  --border-color: #e5e7eb;       /* Border Color */
  
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
  --transition: all 0.25s ease-in-out;
}

/* 2. Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: #f3f4f6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

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

/* 3. Utility Classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-red {
  background-color: var(--brand-red);
  color: #ffffff;
}

.btn-red:hover {
  background-color: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 4, 41, 0.35);
}

.btn-yellow {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
}

.btn-yellow:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 183, 3, 0.4);
}

.btn-outline {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: transparent;
}

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

.badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(217, 4, 41, 0.1);
  color: var(--brand-red);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-top: 8px;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--brand-red);
}

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

/* 4. Top Announcement Bar */
.top-bar {
  background-color: var(--brand-dark);
  color: #d1d5db;
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contacts {
  display: flex;
  gap: 24px;
}

.top-contacts a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f3f4f6;
  font-weight: 600;
}

.top-contacts a:hover {
  color: var(--brand-yellow);
}

.top-promo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}

.phone-highlight {
  color: var(--brand-yellow);
  font-weight: 800;
  font-size: 1rem;
}

/* 5. Main Header Navigation */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

.header-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(217, 4, 41, 0.35));
}

.brand-logo:hover .logo-svg-wrap {
  transform: scale(1.06) rotate(-2deg);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand-dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.brand-name .highlight {
  color: var(--brand-red);
}

.brand-tagline {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 2px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-dark);
  padding: 6px 0;
  position: relative;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.main-menu a:hover,
.main-menu a.active {
  color: var(--brand-red);
}

.main-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--brand-red);
  border-radius: 2px;
}

/* Hide drawer-only elements on desktop view */
@media (min-width: 1101px) {
  .menu-divider,
  .drawer-section-title,
  .secondary-links-grid,
  .mobile-only-drawer {
    display: none !important;
  }
}

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

.call-btn-head {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #f59e0b 100%);
  color: var(--brand-dark);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(255, 183, 3, 0.4);
  transition: var(--transition);
  white-space: nowrap;
}

.call-btn-head:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 183, 3, 0.55);
  background-color: #f59e0b;
}

.mobile-toggle {
  display: none;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brand-dark);
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

/* 6. Hero Section & Main Booking Form Container */
.hero-booking-section {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  color: #ffffff;
  padding: 44px 0 64px 0;
}

.hero-bg-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  background: #0b1329;
}

.hero-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 2;
  filter: brightness(0.85) contrast(1.1);
  transition: opacity 0.6s ease;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.62) 0%, rgba(30, 41, 59, 0.52) 50%, rgba(15, 23, 42, 0.70) 100%);
  z-index: 3;
}

.hero-booking-section .container {
  position: relative;
  z-index: 10;
}

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

.hero-header-text h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.hero-header-text h1 span {
  color: var(--brand-yellow);
}

.hero-header-text p {
  font-size: 1.1rem;
  color: #e5e7eb;
}

/* Main Booking Box - DIRECTLY BELOW HEADER */
.main-booking-box {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 24px 30px 30px 30px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--brand-yellow);
  max-width: 1100px;
  margin: 0 auto;
}

/* Booking Tabs: Local Rides, Oneway, Outstation, Hourly Package */
.ride-tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background-color: #f3f4f6;
  padding: 6px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.tab-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  background: transparent;
  color: var(--brand-gray-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.tab-link:hover {
  background-color: rgba(217, 4, 41, 0.08);
  color: var(--brand-red);
}

.tab-link.active {
  background-color: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(217, 4, 41, 0.25);
}

/* Form Layout Grids */
.tab-content-panel {
  display: none;
}

.tab-content-panel.active {
  display: block;
}

.form-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
}

.form-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: end;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.field-group label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-ctrl {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  background-color: #f9fafb;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
  color: var(--brand-dark);
}

.input-ctrl:focus {
  border-color: var(--brand-red);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.15);
}

.booking-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fffbeb;
  border: 1px dashed #f59e0b;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}

.summary-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: #92400e;
}

.price-tag {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand-red);
}

/* 7. Quick Contact Bar below Booking Form */
.quick-trust-strip {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
  padding: 16px 0;
  font-weight: 800;
}

.trust-strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

/* 8. Tariff & Fleet Section */
.tariff-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.tariff-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-top: 24px;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tariff-table th {
  background-color: var(--brand-dark);
  color: #ffffff;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tariff-table tr {
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.tariff-table tr:hover {
  background-color: #fef2f2;
}

.tariff-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  vertical-align: middle;
}

.cab-type-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.cab-thumb-icon {
  width: 50px;
  height: 50px;
  background-color: #f3f4f6;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid #e5e7eb;
}

/* Fleet Cards Layout */
.fleet-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.fleet-item-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.fleet-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-red);
}

.fleet-img-box {
  position: relative;
  height: 180px;
  background-color: #1f2937;
}

.fleet-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rate-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: var(--brand-red);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
}

.fleet-info-box {
  padding: 20px;
}

.fleet-info-box h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.fleet-info-box .cab-models {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.fleet-amenities {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

/* 9. Popular Outstation & Oneway Routes */
.routes-section {
  padding: 70px 0;
  background-color: var(--bg-light);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.route-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.route-card:hover {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.route-details h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.route-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.route-fare {
  text-align: right;
}

.route-fare .price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--brand-red);
}

/* 10. Why Choose Get Cabs Features */
.features-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.features-4-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-box {
  background-color: #f9fafb;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-box:hover {
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: var(--brand-yellow);
  transform: translateY(-4px);
}

.feature-icon-circle {
  width: 54px;
  height: 54px;
  background-color: #fef2f2;
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-box h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

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

/* 11. Services Provided Section */
.services-section {
  padding: 70px 0;
  background-color: var(--bg-light);
}

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

.service-item-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-item-card:hover {
  background-color: var(--brand-dark);
  color: #ffffff;
  transform: translateY(-4px);
}

.service-item-card:hover p {
  color: #9ca3af;
}

.service-item-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 8px;
}

.service-item-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* 12. Coimbatore Airport & Station Special Section */
.coimbatore-info-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #111827 100%);
  color: #ffffff;
}

.info-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.info-content h2 span {
  color: var(--brand-yellow);
}

.info-content p {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 20px;
  line-height: 1.7;
}

.info-checklist {
  margin-bottom: 24px;
}

.info-checklist li {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-checklist li::before {
  content: '✓';
  color: var(--brand-yellow);
  font-weight: bold;
  font-size: 1.1rem;
}

.info-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 183, 3, 0.3);
}

/* 13. Customer Reviews Section */
.reviews-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.925rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.reviewer-details h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.reviewer-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 14. FAQ Accordion Section */
.faq-section {
  padding: 70px 0;
  background-color: var(--bg-light);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-head {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-head:hover {
  background-color: #f9fafb;
}

.faq-body {
  padding: 0 20px 16px 20px;
  font-size: 0.925rem;
  color: var(--text-muted);
  display: none;
  line-height: 1.6;
}

.faq-card.active .faq-body {
  display: block;
}

.faq-card.active .faq-head {
  color: var(--brand-red);
}

.faq-card.active .faq-arrow {
  transform: rotate(180deg);
}

/* 15. Call Booking Banner */
.call-banner {
  background: linear-gradient(135deg, var(--brand-red) 0%, #a10018 100%);
  color: #ffffff;
  padding: 50px 0;
  text-align: center;
}

.call-banner h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.call-banner p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #fecdd3;
}

.phone-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
  font-size: 1.5rem;
  font-weight: 900;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.phone-pill-btn:hover {
  transform: scale(1.04);
  background-color: #ffffff;
}

/* 16. Footer */
.site-footer {
  background-color: var(--brand-dark);
  color: #9ca3af;
  padding: 60px 0 24px 0;
  font-size: 0.9rem;
}

.footer-4-col {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

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

.footer-col ul li a:hover {
  color: var(--brand-yellow);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 3px solid var(--brand-yellow);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* Responsive Rules */
@media (max-width: 1100px) {
  .top-bar {
    display: none;
  }
  .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px 24px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    border-bottom: 4px solid var(--brand-red);
    max-height: calc(100vh - 75px);
    overflow-y: auto;
    z-index: 1000;
  }
  .main-menu.active {
    display: flex;
  }
  .main-menu a {
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-menu a.active::after {
    display: none;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .form-grid-4, .form-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-4-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ride-tabs-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid-3, .form-grid-4, .form-grid-5 {
    grid-template-columns: 1fr;
  }
  .booking-summary-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-4-col {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
  .hero-header-text h1 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hover compatibility for revealed cards */
.fleet-item-card.reveal.revealed:hover {
  transform: translateY(-5px);
}
.route-card.reveal.revealed:hover {
  transform: translateY(-4px);
}
.feature-box.reveal.revealed:hover {
  transform: translateY(-4px);
}
.service-item-card.reveal.revealed:hover {
  transform: translateY(-4px);
}
.review-card.reveal.revealed:hover {
  transform: translateY(-4px);
}

/* Stagger Delays for Grid Items */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* Accessibility: Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   BLOGS SECTION & BLOG CARDS
   ========================================================================== */
.blogs-section {
  padding: 80px 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

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

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.blog-img-box {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #1e293b;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.08);
}

.blog-tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.blog-content-box {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--brand-red);
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.blog-read-btn {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.blog-card:hover .blog-read-btn {
  gap: 10px;
}

/* ==========================================================================
   HAMBURGER DRAWER ENHANCEMENTS
   ========================================================================== */
.menu-divider {
  width: 100%;
  height: 1px;
  background-color: #e2e8f0;
  margin: 12px 0;
}

.drawer-section-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  padding-left: 4px;
}

.secondary-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
}

.secondary-links-grid a {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #475569 !important;
  padding: 6px 10px !important;
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.secondary-links-grid a:hover {
  background: #e2e8f0;
  color: var(--brand-red) !important;
}

/* ==========================================================================
   DEDICATED FULL PAGE VIEW OVERLAY MODAL
   ========================================================================== */
.dedicated-page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.dedicated-page-overlay.active {
  display: block;
  opacity: 1;
}

.dedicated-page-container {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .dedicated-page-container {
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
  }
}

.dedicated-page-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.page-back-btn:hover {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

.dedicated-page-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.dedicated-page-content {
  padding: 36px 32px;
  flex-grow: 1;
}

@media (max-width: 600px) {
  .dedicated-page-content {
    padding: 24px 18px;
  }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & SPINNING CALL CTA
   ========================================================================== */
.floating-action-stack {
  position: fixed;
  bottom: 74px;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  z-index: 995;
  pointer-events: none;
}

.floating-action-stack * {
  pointer-events: auto;
}

/* Floating WhatsApp Button (Compact) */
.floating-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #16a34a;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  opacity: 0.92;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.45);
  color: #ffffff;
  opacity: 1;
}

.whatsapp-pulse-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

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

/* Spinning Text Call CTA Button (Prominent & Larger) */
.spinning-call-wrapper {
  position: relative;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 24px rgba(217, 4, 41, 0.45));
}

.spinning-text-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotateSpinText 9s linear infinite;
  transform-origin: center center;
  pointer-events: none;
}

.spinning-text-svg text {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 900;
  fill: var(--brand-red);
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

@keyframes rotateSpinText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.inner-call-btn {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #ef4444 0%, var(--brand-red) 50%, #991b1b 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  z-index: 2;
  border: 3px solid #ffffff;
  animation: callPulseGlow 2s infinite ease-in-out;
}

@keyframes callPulseGlow {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(220, 38, 38, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.inner-call-btn:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.8) !important;
  color: #ffffff;
}

/* ==========================================================================
   APP-STYLE BOTTOM NAVIGATION DOCK
   ========================================================================== */
.bottom-app-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  padding: 0 8px;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s ease, transform 0.15s ease;
}

.dock-item-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.dock-item:hover, .dock-item.active {
  color: var(--brand-red);
}

.dock-item.highlight-dock {
  background: var(--brand-red);
  color: #ffffff !important;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: -12px;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.dock-item.highlight-dock .dock-item-icon {
  font-size: 1.1rem;
}

/* Add padding to body so bottom dock doesn't cover content */
body {
  padding-bottom: 64px;
}

/* ==========================================================================
   AI CHATBOT WIDGET
   ========================================================================== */
.ai-chat-window {
  position: fixed;
  bottom: 74px;
  right: 18px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.22);
  border: 1px solid #cbd5e1;
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.ai-chat-window.active {
  display: flex;
  animation: slideUpChat 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpChat {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1e293b 100%);
  color: #ffffff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--brand-yellow);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background: var(--brand-red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--brand-yellow);
}

.chat-title-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}

.chat-status-badge {
  font-size: 0.7rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-body {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
}

.chat-msg {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  word-break: break-word;
}

.chat-msg.bot {
  background: #ffffff;
  color: var(--brand-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.chat-msg.user {
  background: var(--brand-red);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.chat-chip {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-chip:hover {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

.chat-footer {
  padding: 10px 14px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 8px;
}

.chat-input {
  flex-grow: 1;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  font-size: 0.88rem;
  outline: none;
  font-family: var(--font-body);
}

.chat-input:focus {
  border-color: var(--brand-red);
}

.chat-send-btn {
  background: var(--brand-red);
  color: #ffffff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.chat-send-btn:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   SPIN & WIN DISCOUNT WHEEL MODAL
   ========================================================================== */
.discount-wheel-card {
  text-align: center;
  padding: 24px;
}

.wheel-circle-graphic {
  width: 200px;
  height: 200px;
  margin: 18px auto;
  border-radius: 50%;
  border: 8px solid var(--brand-yellow);
  background: conic-gradient(
    var(--brand-red) 0deg 90deg,
    var(--brand-dark) 90deg 180deg,
    var(--brand-yellow) 180deg 270deg,
    #25d366 270deg 360deg
  );
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 4s cubic-bezier(0.15, 0.9, 0.2, 1);
  position: relative;
}

.wheel-center-pointer {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--brand-red);
  z-index: 10;
}

.wheel-center-hub {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .floating-action-stack {
    bottom: 72px;
    right: 12px;
  }
  .ai-chat-window {
    right: 12px;
    bottom: 70px;
    width: calc(100vw - 24px);
  }
}
.policy-doc {
  line-height: 1.7;
  color: #334155;
  font-size: 0.98rem;
}

.policy-doc h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.policy-doc h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 24px 0 10px 0;
  border-bottom: 2px solid var(--brand-yellow);
  padding-bottom: 6px;
  display: inline-block;
}

.policy-doc p {
  margin-bottom: 14px;
}

.policy-doc ul {
  margin: 12px 0 18px 24px;
}

.policy-doc li {
  margin-bottom: 8px;
}

.policy-highlight-box {
  background: #fef2f2;
  border-left: 4px solid var(--brand-red);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-size: 0.95rem;
  color: #991b1b;
}

.blog-full-article {
  line-height: 1.8;
  color: #334155;
}

.blog-hero-header {
  margin-bottom: 28px;
}

.blog-hero-header h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.blog-featured-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.blog-cta-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1e293b 100%);
  color: #ffffff;
  padding: 28px;
  border-radius: var(--radius-md);
  margin: 32px 0;
  text-align: center;
  border: 2px solid var(--brand-yellow);
}

.blog-cta-banner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-yellow);
  margin-bottom: 8px;
}

.contact-card-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.contact-info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #fef2f2;
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   POPULAR TOUR PACKAGES GRID & CARD STYLES
   ========================================================================== */
.tour-packages-section {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tour-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.tour-package-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.tour-package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border-color: var(--brand-red);
}

.package-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #1e293b;
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-package-card:hover .package-img-wrap img {
  transform: scale(1.08);
}

.package-badge-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-duration-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--brand-yellow);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.2);
}

.package-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.package-tagline {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.package-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 0.85rem;
  color: #334155;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.package-highlights-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-highlights-list li::before {
  content: "✦";
  color: var(--brand-red);
  font-size: 0.9rem;
}

.package-footer-bar {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-price-wrap {
  display: flex;
  flex-direction: column;
}

.package-price-label {
  font-size: 0.72rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
}

.package-price-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--brand-red);
}

.package-view-btn {
  background: #fef2f2;
  color: var(--brand-red);
  border: 1px solid #fecaca;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tour-package-card:hover .package-view-btn {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

/* Detailed Tour Package Modal Content Styling */
.tour-detail-container {
  font-family: var(--font-body);
  color: #334155;
  line-height: 1.7;
}

.tour-hero-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tour-hero-header h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin: 10px 0;
  line-height: 1.25;
}

.tour-specs-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  background: #f1f5f9;
  padding: 16px;
  border-radius: 12px;
  margin: 20px 0 28px 0;
  border: 1px solid #cbd5e1;
}

.tour-spec-item {
  display: flex;
  flex-direction: column;
}

.tour-spec-item span:first-child {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
}

.tour-spec-item span:last-child {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand-dark);
}

.guide-section-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.guide-section-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--brand-yellow);
  padding-bottom: 6px;
  width: max-content;
}

.road-bends-warning {
  background: #fffbeb;
  border-left: 4px solid var(--brand-yellow);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 14px 0;
  font-size: 0.92rem;
}

.restroom-food-box {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 14px 0;
  font-size: 0.92rem;
}

.price-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
}

.price-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.price-table-wrap th {
  background: var(--brand-dark);
  color: #ffffff;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  text-align: left;
}

.price-table-wrap td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.9rem;
}

.price-table-wrap tr:nth-child(even) td {
  background: #f8fafc;
}

/* Red Taxi Comparison Section */
.comparison-section {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  margin: 32px auto 0 auto;
  max-width: 1080px;
  width: 100%;
  box-sizing: border-box;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.comparison-table th {
  padding: 16px 18px;
  font-weight: 800;
  font-family: var(--font-display);
  border-bottom: 2px solid #e2e8f0;
}

.comparison-table th.col-feature {
  width: 30%;
  background: #1e293b;
  color: #ffffff;
}

.comparison-table th.col-getcabs {
  width: 35%;
  background: #d90429;
  color: #ffffff;
  font-size: 1.05rem;
}

.comparison-table th.col-redtaxi {
  width: 35%;
  background: #64748b;
  color: #ffffff;
}

.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

.comparison-table tr:hover td {
  background: #f1f5f9;
}

.comp-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #16a34a;
  font-weight: 700;
}

.comp-cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  font-weight: 600;
}

.comp-highlight {
  background: #fef2f2;
}

.comparison-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 22px 28px;
  border-radius: 14px;
  margin-top: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.comparison-cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.comparison-cta-text p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 4px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 40px 0;
  }
  .comparison-card {
    padding: 16px 12px;
    margin-top: 20px;
    border-radius: 12px;
  }
  .comparison-table {
    min-width: 520px;
    font-size: 0.85rem;
  }
  .comparison-table th, 
  .comparison-table td {
    padding: 10px 12px;
  }
  .comparison-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 18px 14px;
    gap: 14px;
    align-items: center;
  }
  .comparison-cta-box .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}



