/* ==========================================================================
   TAXI SERVICE IN AHMEDABAD - PURE LUXURY TAXI DESIGN SYSTEM (2026)
   Theme: Vibrant Taxi Gold (#FFB800), Pure Midnight Black (#0A0C10), Crisp Neutral Slate
   ZERO BLUE TINTS - 100% Focused on Brand Taxi Gold & Executive Charcoal
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* Core Brand Colors */
  --primary: #FFB800;
  --primary-hover: #F59E0B;
  --primary-dark: #D97706;
  --primary-light: #FFFBEB;
  --primary-glow: rgba(255, 184, 0, 0.35);

  /* Pure Charcoal & Midnight Dark (No Blue Tones) */
  --dark: #090B0E;
  --dark-bg: #090B0E;
  --dark-card: #13171F;
  --dark-card-hover: #1A1F2A;
  --dark-surface: #1E232E;
  --dark-border: rgba(255, 255, 255, 0.1);
  --dark-border-gold: rgba(255, 184, 0, 0.4);

  /* Clean Light Surfaces */
  --light-bg: #F8F9FA;
  --light-card: #FFFFFF;
  --light-border: #E5E7EB;

  --text-main: #111827;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;
  --text-dim: #9CA3AF;

  --success: #10B981;
  --wa-green: #25D366;
  --wa-hover: #20BA56;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 10px 30px rgba(255, 184, 0, 0.35);
  --shadow-dark-card: 0 20px 60px rgba(0, 0, 0, 0.6);

  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page Header Banner for Inner Pages */
.page-header-banner {
  background: radial-gradient(circle at 80% 20%, #1A1F2B 0%, #090B0E 75%) !important;
  color: #FFFFFF !important;
  padding: 65px 0 45px 0;
  text-align: center;
  border-bottom: 3px solid rgba(255, 184, 0, 0.3);
  position: relative;
}

.page-header-banner h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF !important;
  margin: 12px 0;
  letter-spacing: -0.5px;
}

.page-header-banner p {
  color: #CBD5E1 !important;
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

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

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

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

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

/* Universal Anti-Overflow & Mobile Text Wrapping */
a, p, span, li, td, th, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Emails and long links never overflow containers or cards */
a[href^="mailto:"],
.email-text,
.contact-email-link {
  word-break: break-all !important;
  overflow-wrap: anywhere !important;
  display: inline-block;
  max-width: 100%;
}

.btn[href^="mailto:"],
.email-btn {
  white-space: normal !important;
  word-break: break-all !important;
  overflow-wrap: anywhere !important;
  max-width: 100% !important;
  text-align: center !important;
  line-height: 1.35 !important;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background: #090B0E;
  color: #9CA3AF;
  font-size: 0.84rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 184, 0, 0.15);
  color: var(--primary);
  border: 1px solid rgba(255, 184, 0, 0.35);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
}

.top-badge-pulse::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.top-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link-item {
  color: #E5E7EB;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-link-item:hover {
  color: var(--primary);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #E5E7EB;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #1F2937;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.nav-item:hover {
  color: #000000;
  background: rgba(255, 184, 0, 0.15);
}

.nav-item.active {
  color: #000000;
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.28);
}

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

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (CLEAN, MODERN, PULSE EFFECT)
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-wa-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.2);
}

.floating-wa-btn .wa-icon {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
  flex-shrink: 0;
}

.floating-wa-btn .floating-wa-label {
  letter-spacing: 0.2px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  /* Hide floating button on mobile phones since bottom mobile action bars and headers already provide direct WhatsApp actions */
  .floating-wa-btn {
    display: none !important;
  }
}




/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #000000;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 184, 0, 0.5);
}

.btn-dark {
  background: #11141A;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: #1C222D;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-outline-gold {
  background: rgba(255, 184, 0, 0.08);
  border: 2px solid var(--primary);
  color: #FFFFFF;
}

.btn-outline-gold:hover {
  background: var(--primary);
  color: #000000;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #111827;
  padding: 4px 8px;
}

/* ==========================================================================
   HERO SECTION (CHARCOAL & MIDNIGHT - NO BLUE)
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(9, 11, 14, 0.90) 0%, rgba(26, 31, 43, 0.86) 60%, rgba(9, 11, 14, 0.94) 100%),
              url('../images/hero-taxi.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 70px 0 90px 0;
  overflow: hidden;
  border-bottom: 3px solid rgba(255, 184, 0, 0.3);
}

.hero-taxi-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(19, 23, 31, 0.9);
  border: 1px solid rgba(255, 184, 0, 0.45);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  max-width: 520px;
}

.hero-taxi-badge img {
  width: 76px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

.hero-taxi-badge-info {
  display: flex;
  flex-direction: column;
}

.hero-taxi-badge-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  color: #FFFFFF;
}

.hero-taxi-badge-sub {
  font-size: 0.8rem;
  color: #9CA3AF;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title span {
  color: var(--primary);
  text-shadow: 0 0 35px rgba(255, 184, 0, 0.45);
}

.hero-desc {
  font-size: 1.08rem;
  color: #D1D5DB;
  margin-bottom: 28px;
  max-width: 580px;
  line-height: 1.65;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  gap: 14px;
  margin-bottom: 30px;
  padding: 16px 18px;
  background: rgba(19, 23, 31, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 100%;
  box-sizing: border-box;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-lbl {
  font-size: 0.72rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
}

/* ==========================================================================
   INTERACTIVE BOOKING CARD (CHARCOAL SURFACE - NO BLUE)
   ========================================================================== */
.booking-card {
  background: rgba(19, 23, 31, 0.96);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 184, 0, 0.4);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-dark-card), 0 0 40px rgba(255, 184, 0, 0.15);
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.booking-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
}

.booking-heading {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
}

.booking-live-pill {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Trip Type Segmented Tabs */
.trip-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: #090B0E;
  padding: 6px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trip-tab {
  background: transparent;
  border: none;
  color: #9CA3AF;
  padding: 10px 4px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.trip-tab.active {
  background: var(--primary);
  color: #000000;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.35);
}

/* Form Controls */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #D1D5DB;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  background: #090B0E;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-size: 0.92rem;
  transition: var(--transition);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFB800' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 32px;
  cursor: pointer;
}

input[type="datetime-local"].form-control::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(100%) saturate(600%) hue-rotate(5deg);
  cursor: pointer;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.25);
  background: #11151E;
}

.form-control option {
  background: #13171F;
  color: #FFFFFF;
  padding: 8px 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Live Dynamic Fare Preview Box */
.fare-preview {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 184, 0, 0.05) 100%);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.fare-info-title {
  font-size: 0.78rem;
  color: #9CA3AF;
  text-transform: uppercase;
  font-weight: 600;
}

.fare-breakdown-text {
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-top: 2px;
}

.fare-amount {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.35);
}

/* ==========================================================================
   SECTIONS & LAYOUT
   ========================================================================== */
.section {
  padding: 90px 0;
}

.section-alt {
  background-color: #FFFFFF;
}

.section-dark {
  background-color: #090B0E;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.section-tag {
  display: inline-block;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.section-dark .section-tag {
  color: var(--primary);
  background: rgba(255, 184, 0, 0.12);
  border-color: rgba(255, 184, 0, 0.3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.section-dark .section-title {
  color: #FFFFFF;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: var(--text-dim);
}

/* ==========================================================================
   ROUTES GRID CARDS
   ========================================================================== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.route-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
  padding: 26px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.route-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(255, 184, 0, 0.15);
}

.route-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 10px;
}

.route-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #F3F4F6;
  color: #374151;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.4px;
}

.route-badge.hot {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.route-highway-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.route-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.3;
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.route-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #F3F4F6;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: #374151;
  border: 1px solid #E5E7EB;
}

.route-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #F9FAFB;
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  border: 1px solid #E5E7EB;
}

.price-item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-item-val {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: #111827;
}

.route-actions {
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   PACKAGES CARDS
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 28px;
  width: 100%;
  box-sizing: border-box;
}

.package-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--light-border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

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

.package-image-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #090B0E;
  width: 100%;
}

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

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

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.package-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(9, 11, 14, 0.88);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.package-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.package-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111827;
}

.package-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #F3F4F6;
}

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

.package-price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
}

/* ==========================================================================
   CUSTOM TRIP & ITINERARY BUILDER BANNER
   ========================================================================== */
.custom-trip-banner {
  background: linear-gradient(135deg, #090B0E 0%, #161B26 100%);
  border: 2px solid rgba(255, 184, 0, 0.4);
  border-radius: var(--radius-xl);
  padding: 38px 40px;
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  color: #FFFFFF;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 184, 0, 0.12);
  width: 100%;
  box-sizing: border-box;
}

.custom-trip-content {
  flex: 1;
}

.custom-trip-badge {
  display: inline-block;
  background: rgba(255, 184, 0, 0.15);
  color: var(--primary);
  border: 1px solid rgba(255, 184, 0, 0.35);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.custom-trip-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.25;
}

.custom-trip-desc {
  font-size: 0.94rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 680px;
}

.custom-trip-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.custom-trip-highlights span {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.custom-trip-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  min-width: 260px;
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  justify-content: center;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

@media (max-width: 860px) {
  .custom-trip-banner {
    flex-direction: column;
    padding: 28px 20px;
    gap: 24px;
    align-items: stretch;
  }

  .custom-trip-action {
    width: 100%;
    min-width: unset;
  }

  .custom-trip-title {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   FLEET CARDS (CLEAN CHARCOAL / PROMINENT CAR DISPLAY)
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 28px;
  width: 100%;
  box-sizing: border-box;
}

.fleet-card {
  background: #13171F;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 184, 0, 0.15);
}

.fleet-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.fleet-badge-gold {
  background: rgba(255, 184, 0, 0.15);
  color: var(--primary);
  border: 1px solid rgba(255, 184, 0, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.fleet-img-wrap {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: radial-gradient(ellipse at bottom, rgba(255, 184, 0, 0.12) 0%, rgba(255, 255, 255, 0.03) 55%, transparent 75%);
  border-radius: var(--radius-lg);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.fleet-img-wrap img {
  max-height: 190px;
  max-width: 92%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.85));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.06) translateY(-4px);
}

.fleet-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  background: #090B0E;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-item {
  font-size: 0.82rem;
  color: #E2E8F0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.fleet-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.fleet-feat-chip {
  background: rgba(255, 255, 255, 0.05);
  color: #94A3B8;
  font-size: 0.74rem;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fleet-rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 10px;
}

.fleet-rate {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.feature-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 35px 26px;
  border: 1px solid var(--light-border);
  transition: var(--transition);
  text-align: center;
}

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

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px auto;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-dark);
  border: 2px solid rgba(255, 184, 0, 0.3);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A !important;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.92rem;
  color: #475569 !important;
  line-height: 1.6;
}

/* ==========================================================================
   PROCESS / HOW IT WORKS (GENUINE TRUST SECTION)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px;
  margin-bottom: 45px;
  width: 100%;
  box-sizing: border-box;
}

.process-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 35px 28px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

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

.process-step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #E5E7EB;
  line-height: 1;
}

.process-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.commitment-box {
  background: #090B0E;
  border: 2px solid rgba(255, 184, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 24px;
  color: #FFFFFF;
  box-shadow: var(--shadow-dark-card);
  width: 100%;
  box-sizing: border-box;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.commitment-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.commitment-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.commitment-item p {
  font-size: 0.82rem;
  color: #9CA3AF;
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   FAQS
   ========================================================================== */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-border);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

/* ==========================================================================
   CALL TO ACTION BANNER STRIP
   ========================================================================== */
.cta-strip {
  background: linear-gradient(135deg, #090B0E 0%, #151A22 100%);
  color: #FFFFFF;
  padding: 65px 40px;
  border-radius: var(--radius-xl);
  margin: 50px 0 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 184, 0, 0.35);
  box-shadow: var(--shadow-dark-card);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-desc {
  color: #D1D5DB;
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   MODALS (BOOKING & ITINERARY POPUPS)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 11, 14, 0.82);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
  overflow-y: auto;
}

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

.modal-box {
  background: #FFFFFF;
  color: #111827;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #F3F4F6;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: #4B5563;
  transition: var(--transition);
  z-index: 10;
  font-weight: 700;
}

.modal-close:hover {
  background: #E5E7EB;
  color: #111827;
  transform: scale(1.08);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: #040507;
  color: #9CA3AF;
  padding: 80px 0 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 45px;
  margin-bottom: 55px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 18px;
  display: block;
}

.footer-about {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

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

/* ==========================================================================
   MOBILE STICKY CTA BAR & MODAL
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #090B0E;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.4);
  padding: 12px 18px;
  z-index: 9999;
  border-top: 2px solid var(--primary);
}

.mobile-bottom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F3F4F6;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: #E5E7EB;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (MOBILE & TABLET EXCELLENCE)
   ========================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
  border-radius: var(--radius-xl);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .routes-grid,
  .packages-grid,
  .fleet-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 75px;
  }

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

  .top-bar {
    display: none;
  }

  .brand-logo img {
    height: 58px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
    border-top: 2px solid #F3F4F6;
    gap: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .header-inner {
    display: grid !important;
    grid-template-columns: 44px 1fr 44px !important;
    align-items: center !important;
    padding: 8px 12px !important;
    position: relative;
  }

  .header-inner::before {
    content: "";
    display: block;
    width: 44px;
  }

  .brand-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .brand-logo img {
    height: 52px !important;
    max-width: 180px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .header-actions {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #F3F4F6;
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-section {
    padding: 40px 0 50px 0;
    width: 100%;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 32px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 14px 16px;
    width: 100%;
  }

  .booking-card {
    padding: 22px 16px;
    border-radius: var(--radius-lg);
  }

  .booking-heading {
    font-size: 1.25rem;
  }

  .trip-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .trip-tab {
    padding: 10px 4px;
    font-size: 0.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .routes-grid,
  .packages-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .route-card {
    padding: 20px;
    min-height: auto;
  }

  .route-title {
    font-size: 1.2rem;
  }

  .fleet-card {
    padding: 20px;
  }

  .fleet-img-wrap {
    height: 200px;
  }

  .package-card {
    border-radius: var(--radius-lg);
  }

  .package-image-wrap {
    height: 210px;
  }

  .page-header-banner {
    padding: 45px 0 35px 0;
  }

  .page-header-banner h1 {
    font-size: 2rem;
  }

  .section {
    padding: 55px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .cta-strip {
    padding: 40px 20px;
    margin: 30px 0 60px 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }

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

  .mobile-bottom-bar {
    display: block;
  }

  .modal-overlay {
    padding: 12px;
  }

  .modal-box {
    padding: 24px 18px;
    max-height: 86vh;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .modal-box {
    padding: 20px 14px;
    max-height: 88vh;
  }

  .fare-preview {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .fare-amount {
    font-size: 1.6rem;
  }

  .route-actions {
    flex-direction: column;
  }

  .route-actions .btn {
    width: 100%;
  }

  .fleet-specs {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   NEW PAGES: DATA TABLE, TOUR CARDS, PILGRIMAGE PAGES RESPONSIVE
   ========================================================================== */

/* Data table always scrollable on mobile */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table th {
  background: #090B0E;
  color: #FFFFFF;
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #E5E7EB;
  vertical-align: middle;
  color: #374151;
}

.data-table tbody tr:hover {
  background: #F9FAFB;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* Page header banner tighter on small screens */
@media (max-width: 640px) {
  .page-header-banner h1 {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .page-header-banner p {
    font-size: 0.92rem;
  }

  /* Fleet rate row stacks on small phones */
  .fleet-rate-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .fleet-rate-row .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero CTA group always full width */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* Booking Card inside hero */
  .booking-card {
    padding: 18px 14px;
  }

  /* Custom trip banner stacks */
  .custom-trip-banner {
    flex-direction: column;
    padding: 22px 16px;
    gap: 20px;
  }

  .custom-trip-action {
    width: 100%;
    min-width: unset;
  }

  .custom-trip-title {
    font-size: 1.25rem;
  }

  /* Tour itinerary card image */
  .package-image-wrap,
  div[style*="height:260px"] {
    height: 200px !important;
  }
}

/* Corporate/Wedding B2B Pillar Cards responsive */
@media (max-width: 768px) {

  /* Data table smaller text on mobile */
  .data-table {
    font-size: 0.8rem;
  }

  .data-table th {
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .data-table td {
    padding: 11px 12px;
  }

  /* WA widget card */
  .wa-quick-card {
    width: calc(100vw - 36px);
    right: -6px;
    bottom: 65px;
  }

  /* Section padding compressed on mobile */
  .section {
    padding: 45px 0;
  }

  /* Process grid mobile */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Commitment box grid mobile */
  .commitment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Custom trip banner on all new pages */
  .custom-trip-banner {
    flex-direction: column;
    padding: 24px 18px;
    gap: 22px;
  }

  .custom-trip-action {
    min-width: unset;
    width: 100%;
  }

  /* Corporate/Wedding 2-column grid */
  div[style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }

  /* NRI desk banner stacks */
  .fleet-badge-gold {
    display: inline-block;
    margin-bottom: 8px;
  }

  /* Stat boxes */
  .stat-box {
    padding: 20px 14px;
  }

  /* Features grid */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Routes, Packages, Fleet Grids stack 1-col on mobile */
  .routes-grid,
  .packages-grid,
  .fleet-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Contact page grid & cards mobile */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 16px !important;
    border-radius: var(--radius-lg) !important;
  }

  /* Buttons with email links wrap and fit container */
  .btn[href^="mailto:"],
  .email-btn {
    width: 100% !important;
    font-size: 0.84rem !important;
    padding: 10px 12px !important;
  }

  /* Tables never bleed out of card */
  .table-responsive,
  div[style*="overflow-x:auto"],
  div[style*="overflow-x: auto"] {
    width: 100% !important;
    max-width: 100% !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Pricing Highlights strip on fleet and inner pages */
  div[style*="minmax(250px"] {
    grid-template-columns: 1fr !important;
    padding: 16px !important;
  }
}

/* Ensure no horizontal overflow on any page globally */
* {
  max-width: 100%;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

/* Prevent pre-formatted text from breaking layout */
pre,
code {
  white-space: pre-wrap;
  word-break: break-word;
}

/* ==========================================================================
   MODERN LUXURY DESIGN SYSTEM COMPONENTS (2026)
   ========================================================================== */

/* Hero Trust Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 24px;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #F1F5F9;
  backdrop-filter: blur(8px);
}

.trust-badge-gold {
  background: rgba(255, 184, 0, 0.12);
  border-color: rgba(255, 184, 0, 0.35);
  color: #FFB800;
  font-weight: 700;
}

/* Filter Tab Pills */
.filter-tab {
  background: rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover {
  background: rgba(255, 184, 0, 0.15);
  color: #FFB800;
  border-color: rgba(255, 184, 0, 0.35);
}

.filter-tab.active {
  background: #FFB800;
  color: #090B0E;
  border-color: #FFB800;
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.3);
}

/* Modern Process Step Cards */
.modern-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.modern-step-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid #E5E7EB;
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.modern-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08), 0 0 20px rgba(255, 184, 0, 0.15);
}

.step-num-bubble {
  position: absolute;
  top: -14px;
  right: 24px;
  background: #090B0E;
  color: #FFB800;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 184, 0, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(255, 184, 0, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.modern-step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.modern-step-desc {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
}

/* Sightseeing Circuit Cards */
.sightseeing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.sightseeing-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid #E5E7EB;
  padding: 26px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sightseeing-card:hover {
  transform: translateY(-5px);
  border-color: #FFB800;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08), 0 0 20px rgba(255, 184, 0, 0.15);
}

.sightseeing-badge {
  display: inline-block;
  background: #FFFBEB;
  color: #B45309;
  font-weight: 800;
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #FDE68A;
  margin-bottom: 10px;
}

/* Vertical Itinerary Timeline */
.itinerary-timeline {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid rgba(255, 184, 0, 0.4);
  margin: 24px 0;
}

.timeline-step {
  position: relative;
  margin-bottom: 24px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFB800;
  border: 3px solid #090B0E;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.3);
}

.timeline-day-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #FFB800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.timeline-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.timeline-step-desc {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* Terminal Airport Cards */
.terminal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.terminal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid #E5E7EB;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.terminal-card:hover {
  transform: translateY(-4px);
  border-color: #FFB800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

/* Mobile Media Queries for New Modern Components */
@media (max-width: 991px) {
  .modern-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .terminal-grid {
    grid-template-columns: 1fr;
  }
}