/* ==========================================================================
   HARMAIN WAY TRAVELS - LUXURY UMRAH TRANSPORT & HOSPITALITY
   Aesthetic: Refined Luxury Slate Teal, Muted Charcoal, Off-White Cream & Gold
   Based on High-End Saudi Pilgrimage Concierge Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  /* Signature Brand Palette (Direct from Harmain Way Travels) */
  --primary: #3E5C60;          /* Teal / Petrol from car/road */
  --primary-dark: #2C4245;
  --teal-primary: #3E5C60;
  --teal-dark: #2C4245;
  --teal-light: #4c7176;
  --teal-accent: #6BB2DC;      /* Sky blue from logo text */
  --accent: #6BB2DC;
  
  --charcoal-btn: #4c4b49;
  --charcoal-dark: #323130;
  
  --gold-accent: #c5a059;
  --gold-soft: #e8d5b5;
  
  /* Canvas & Surfaces */
  --canvas-bg: #f8fafb;
  --surface-card: #ffffff;
  --surface-panel: #f0f4f5;
  --surface-panel-light: #ffffff;
  
  --border-light: #e2e8f0;
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-card: #e5e7eb;

  /* Typography */
  --text-main: #1A1A1A;
  --text-muted: #666666;
  --text-light: #ffffff;
  --text-light-subtle: rgba(255, 255, 255, 0.9);

  --font-serif: 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;

  /* UI Tokens */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-float: 0 20px 45px rgba(0, 0, 0, 0.12);
  --shadow-teal: 0 8px 25px rgba(51, 80, 82, 0.28);

  --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--canvas-bg);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Headings */
h1, h2, h3, h4, .serif-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-main);
  text-transform: uppercase;
}

.section-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 8px;
}

.section-tag.light {
  color: var(--teal-accent);
}

.section-header {
  margin-bottom: 40px;
}

.section-header.flex-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 1.85rem;
  line-height: 1.3;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   BUTTONS (Exact Match to Screenshots)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

/* Primary Slate Teal Button (BOOK HOTELS / VIEW ALL FLEET / GET FARE) */
.btn-teal {
  background-color: var(--teal-primary);
  color: #ffffff;
  box-shadow: var(--shadow-teal);
}

.btn-teal:hover {
  background-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(36, 59, 60, 0.4);
  color: #ffffff;
}

/* Charcoal Pill Button (BOOK TRANSPORT) */
.btn-charcoal {
  background-color: var(--charcoal-btn);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-charcoal:hover {
  background-color: var(--charcoal-dark);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Outline Teal / Soft Pill Button (VIEW ALL HOTELS) */
.btn-outline-teal {
  background: transparent;
  color: var(--teal-primary);
  border: 1.5px solid var(--teal-primary);
}

.btn-outline-teal:hover {
  background: var(--teal-primary);
  color: #ffffff;
}

/* WhatsApp Green Button */
.btn-whatsapp-pill {
  background-color: #25d366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-pill:hover {
  background-color: #1eb855;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* Call Light Grey Button (CALL US NOW in Screenshot 4) */
.btn-call-light {
  background-color: #e5e7eb;
  color: #1f2937;
  border: 1px solid #d1d5db;
}

.btn-call-light:hover {
  background-color: #d1d5db;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 0.95rem;
}

/* ==========================================================================
   FLOATING CAPSULE NAVBAR (Exact Match to Screenshot 1 & 2)
   ========================================================================== */
.navbar-wrapper {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
}

.navbar {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand .brand-logo-img,
.navbar-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  padding: 6px 4px;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-pill);
}

/* Mobile Toggler */
.navbar-toggler {
  display: none;
  background: transparent;
  border: none;
  color: #1f2937;
  cursor: pointer;
  padding: 5px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85%;
  height: 100vh;
  background: #ffffff;
  padding: 30px 24px;
  z-index: 2000;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.drawer-close {
  background: var(--surface-panel);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.drawer-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
}

.drawer-link.active, .drawer-link:hover {
  background: var(--surface-panel);
  color: var(--teal-primary);
}

/* ==========================================================================
   HERO SECTION: HOME (Exact Match to Screenshot 1)
   ========================================================================== */
.hero-home {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 100px;
  background-size: cover;
  background-position: center 30%;
  color: #ffffff;
  overflow: hidden;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  
  animation: heroSlider 24s infinite;
}

.hero-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20, 24, 23, 0.65) 0%, rgba(18, 22, 21, 0.68) 50%, rgba(18, 22, 21, 0.85) 100%);
  z-index: 2;
}

.slide-1 {
  background-image: url('../images/gmc_yukon_makkah_view_1775884632990.png');
  animation-delay: 0s;
}

.slide-2 {
  background-image: url('../images/gmc_yukon_makkah_view_1775884632990.png');
  animation-delay: 8s;
}

.slide-3 {
  background-image: url('../images/gmc_yukon_makkah_view_1775884632990.png');
  animation-delay: 16s;
}

@keyframes heroSlider {
  0% {  transform: scale(1); }
  5% { opacity: 1; }
  33% { opacity: 1; transform: scale(1.05); }
  38% {  transform: scale(1.06); }
  100% {  transform: scale(1.06); }
}

.hero-home-content {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-home-title {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
  text-transform: uppercase;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
  background: linear-gradient(180deg, #ffffff 0%, #d4e2e2 60%, #87a7aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-home-tagline {
  font-family: var(--font-sans);
  font-size: 1.22rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-home-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FLOATING / END SERVICE CARDS
   ========================================================================== */
.hero-floating-services {
  position: relative;
  z-index: 10;
  margin-top: -65px;
  padding-bottom: 60px;
}

.services-overview-end {
  padding: 85px 0 75px;
  background: var(--canvas-bg);
  border-top: 1px solid var(--border-light);
}

.floating-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.floating-service-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.floating-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
  border-color: var(--teal-primary);
}

.floating-service-icon {
  width: 44px;
  height: 44px;
  color: var(--teal-primary);
  margin-bottom: 18px;
}

.floating-service-icon svg {
  width: 32px;
  height: 32px;
}

.floating-service-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--text-main);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.floating-service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.floating-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--teal-primary);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  width: fit-content;
  transition: var(--transition);
}

.floating-service-btn:hover {
  background-color: var(--teal-dark);
  color: #ffffff;
  transform: translateX(4px);
}

/* ==========================================================================
   HERO SECTION: TRANSPORT & TAXI (Exact Match to Screenshot 4)
   ========================================================================== */
.hero-taxi {
  position: relative;
  min-height: 85vh;
  padding: 140px 0 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../images/gmc_yukon_makkah_view_1775884632990.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.hero-taxi-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-taxi-left {
  max-width: 580px;
}

.hero-taxi-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-taxi-subtitle {
  font-family: 'Outfit', sans-serif;
  color: #6BB2DC;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  text-
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-taxi-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.taxi-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.taxi-feature-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

.taxi-feature-icon {
  width: 16px;
  height: 16px;
  color: #6BB2DC;
  flex-shrink: 0;
}

.hero-taxi-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-taxi-buttons .btn-whatsapp-pill {
  background: #25D366;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  padding: 10px 22px;
  font-size: 12px;
  border-radius: 50px;
}

.hero-taxi-buttons .btn-call-light {
  color: #1a1a1a !important;
  background: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  padding: 10px 22px;
  font-size: 12px;
  border-radius: 50px;
}

/* Quick Booking Card (Right Side of Screenshot 1 & 4) */
.booking-taxi-card,
.quick-booking-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  width: 100%;
  max-width: 325px;
  margin-left: auto;
  color: #1a1a1a;
}

.booking-taxi-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.4px;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 0;
  border-bottom: none;
}

.taxi-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.taxi-form-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
}

.taxi-form-label {
  font-size: 8.5px;
  font-weight: 700;
  color: #374151;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.taxi-input {
  width: 100%;
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 11px;
  color: #1a1a1a;
  outline: none;
  height: 28px;
  transition: var(--transition);
}

.taxi-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(62, 92, 96, 0.15);
}

.taxi-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.btn-taxi-submit {
  background: var(--primary);
  color: #ffffff;
  width: 100%;
  padding: 7px 14px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  letter-spacing: 0.6px;
  transition: var(--transition);
  margin-top: 3px;
  font-size: 11px;
  font-family: 'Outfit', sans-serif;
}

.btn-taxi-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(62, 92, 96, 0.25);
}

.taxi-disclaimer {
  font-size: 8px;
  color: #888888;
  text-align: center;
  margin-top: 3px;
  font-weight: 400;
}

/* ==========================================================================
   PREMIUM FLEET OVERVIEW SECTION (Exact Match to Screenshot 2)
   ========================================================================== */
.fleet-overview-section {
  padding: 80px 0;
}

.panel-container {
  background: var(--surface-panel-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 45px 40px;
  box-shadow: var(--shadow-sm);
}

.fleet-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.fleet-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--teal-primary);
}

.fleet-card-img-box {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f3f4f6;
}

.fleet-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card-img {
  transform: scale(1.06);
}

.fleet-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-card-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: var(--text-main);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  min-height: 54px;
}

.fleet-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.fleet-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.full-specs-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.full-specs-link:hover {
  color: var(--teal-dark);
  transform: translateX(3px);
}

/* ==========================================================================
   ELITE ACCOMMODATIONS SECTION (Exact Match to Screenshot 2 bottom)
   ========================================================================== */
.accommodations-section {
  padding: 80px 0;
  background: var(--canvas-bg);
}

.hotel-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.hotel-suite-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.hotel-suite-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--teal-primary);
}

.hotel-suite-img-box {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.hotel-suite-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hotel-suite-card:hover .hotel-suite-img {
  transform: scale(1.06);
}

.hotel-suite-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(36, 59, 60, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hotel-suite-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-suite-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  min-height: 54px;
}

.hotel-suite-loc {
  font-size: 0.82rem;
  color: var(--teal-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

.hotel-suite-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hotel-suite-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
}

/* ==========================================================================
   TRUSTED GOOGLE REVIEWS SECTION (Exact Match to Screenshot 3 middle)
   ========================================================================== */
.reviews-section {
  padding: 85px 0;
  background: var(--canvas-bg);
  text-align: center;
}

.reviews-marquee-container {
  overflow: hidden;
  width: 100%;
  margin-top: 35px;
  position: relative;
}

.reviews-marquee-container::before,
.reviews-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--canvas-bg), transparent);
}

.reviews-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--canvas-bg), transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
  text-align: left;
}

.reviews-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

.google-review-card {
  background: #ffffff;
  border: none;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
  white-space: normal;
}

.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.review-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.google-g-logo {
  width: 22px;
  height: 22px;
}

.review-user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.review-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-primary);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  overflow: hidden;
}

.review-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-user-info h5 {
  font-size: 0.95rem;
  color: #1f2937;
  font-weight: 800;
  margin-bottom: 2px;
}

.review-user-role {
  font-size: 0.75rem;
  color: #9ca3af;
  display: block;
}

.review-stars-gold {
  color: #FBBC05;
  font-size: 1.15rem;
  letter-spacing: 3px;
}

.review-quote-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}

/* ==========================================================================
   FAQS SECTION (Collapsible)
   ========================================================================== */
.faqs-section {
  padding: 90px 0 100px;
  background: #ffffff;
}

.faq-title,
.faqs-section .serif-title {
  font-family: 'Playfair Display', 'Cinzel', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #18181b;
  text-align: center;
  margin-bottom: 45px;
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.25s ease;
}

.faq-item.faq-open {
  border-bottom-color: #18181b;
  box-shadow: none;
}

.faq-question-btn {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
  font-family: 'Plus Jakarta Sans', var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #18181b;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.faq-question-btn:hover {
  color: var(--teal-primary);
}

.faq-item.faq-open .faq-question-btn {
  color: #18181b;
}

/* Minimalist Clean Plus Icon (Exact match to screenshot - no circle, clean hairline) */
.faq-icon,
.faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #18181b;
  background: transparent;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-icon svg,
.faq-chevron svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.faq-question-btn:hover .faq-icon,
.faq-question-btn:hover .faq-chevron {
  color: var(--teal-primary);
}

.faq-item.faq-open .faq-icon,
.faq-item.faq-open .faq-chevron {
  transform: rotate(45deg);
  color: var(--teal-primary);
  background: transparent;
}

.faq-answer-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.faq-open .faq-answer-collapse {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 0 24px 0;
  font-family: 'Plus Jakarta Sans', var(--font-sans);
  font-size: 0.96rem;
  color: #52525b;
  line-height: 1.7;
}

/* ==========================================================================
   MINIMALIST LUXURY FOOTER (Exact Match to Screenshot 3 bottom)
   ========================================================================== */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 70px 0 35px;
  color: var(--text-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 45px;
  margin-bottom: 50px;
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-desc-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-social-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1877f2;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.95rem;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 18px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-nav-link:hover {
  color: var(--teal-primary);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom-strip {
  padding-top: 25px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #9ca3af;
  flex-wrap: wrap;
  gap: 15px;
}

/* ==========================================================================
   CIRCULAR FLOATING BUTTONS (Exact Match to Screenshots 1, 2, 3)
   ========================================================================== */
/* Bottom-Left Phone Button */
/* Bottom-Left Phone Button */
.floating-call-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-gold 2.2s infinite;
  border: none;
}

.floating-call-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.floating-call-btn svg {
  width: 22px;
  height: 22px;
}

/* Bottom-Right WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  z-index: 1050;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-green 2.2s infinite;
  border: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(62, 92, 96, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(62, 92, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 92, 96, 0); }
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   ROUTE PRICING MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 26, 25, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  will-change: opacity;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal-dialog {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 860px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-float);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-main);
  flex-shrink: 0;
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1);
}

.modal-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-panel-light);
}

.modal-header h3 {
  font-size: 1.45rem;
  color: var(--teal-dark);
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-close-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: #374151;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: var(--teal-primary);
  color: #ffffff;
}

.modal-body {
  padding: 24px 28px;
}

/* Vehicle Showcase in Modal with Real Image */
.modal-vehicle-hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  background: linear-gradient(135deg, rgba(62, 92, 96, 0.05), rgba(107, 178, 220, 0.08));
  border: 1px solid rgba(62, 92, 96, 0.16);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.modal-vehicle-img-wrapper {
  height: 155px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.modal-vehicle-img:hover {
  transform: scale(1.04);
}

.modal-vehicle-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.modal-vehicle-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-primary);
  background: rgba(62, 92, 96, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.modal-vehicle-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.2;
}

.modal-vehicle-desc {
  font-size: 0.86rem;
  color: #4b5563;
  line-height: 1.45;
}

.modal-vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.modal-spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.modal-spec-chip.green-chip {
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  border-color: rgba(16, 185, 129, 0.25);
}

@media (max-width: 680px) {
  .modal-vehicle-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .modal-vehicle-img-wrapper {
    height: 160px;
  }
  .modal-vehicle-title {
    font-size: 1.2rem;
  }
}

/* Route Graphic in Modal */
.route-map-box {
  background: var(--surface-panel-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 22px;
}

.route-road-line {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.road-track-bg {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--teal-primary) 0px, var(--teal-primary) 12px, transparent 12px, transparent 20px);
  transform: translateY(-50%);
  z-index: 1;
}

.route-pin-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.node-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-primary);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.node-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.modal-car-icon {
  position: absolute;
  top: calc(50% - 13px);
  left: 45%;
  z-index: 3;
  color: #ffffff;
  background: var(--teal-primary);
  padding: 4px;
  border-radius: 50%;
  animation: driveCar 4s infinite linear;
}

@keyframes driveCar {
  0% { left: 15%; }
  50% { left: 80%; }
  100% { left: 15%; }
}

.modal-routes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-route-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: var(--transition);
}

.modal-route-item:hover {
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.modal-route-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal-primary);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .navbar-nav {
    display: none;
  }
  .navbar-toggler {
    display: inline-flex;
  }
  .nav-contact-btn {
    display: none !important;
  }
  .hero-home-title {
    font-size: 3rem;
  }
  .floating-services-grid {
    grid-template-columns: 1fr;
  }
  .hero-floating-services {
    margin-top: -30px;
  }
  .hero-taxi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fleet-cards-grid, .hotel-cards-grid, .reviews-grid-5 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-home-title {
    font-size: 2.3rem;
  }
  .panel-container {
    padding: 25px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-home-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-home-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   UNIVERSAL BOOKING MODAL (STRICT SCREEN VIEWPORT CENTERED)
   ========================================================================== */
.booking-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  background: rgba(18, 22, 21, 0.85) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px 15px !important;
  box-sizing: border-box !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease, visibility 0.25s ease !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

.booking-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.booking-modal-container {
  background: #ffffff !important;
  border-radius: 18px !important;
  width: 100% !important;
  max-width: 440px !important;
  max-height: calc(100vh - 40px) !important;
  overflow-y: auto !important;
  padding: 30px 24px !important;
  position: relative !important;
  margin: auto !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  transform: scale(0.96) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease !important;
  box-sizing: border-box !important;
}

.booking-modal-overlay.active .booking-modal-container {
  transform: scale(1) !important;
}

.booking-modal-close {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f3f4f6 !important;
  border: none !important;
  border-radius: 50% !important;
  font-size: 1.25rem !important;
  color: #4b5563 !important;
  cursor: pointer !important;
  line-height: 1 !important;
  transition: all 0.2s ease !important;
  z-index: 10 !important;
}

.booking-modal-close:hover {
  background: #e5e7eb !important;
  color: #111827 !important;
  transform: rotate(90deg) !important;
}

.booking-modal-title {
  font-family: var(--font-serif) !important;
  font-size: 1.35rem !important;
  color: var(--text-main) !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
}

.booking-modal-desc {
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 22px !important;
  line-height: 1.45 !important;
}

.modal-method-btn {
  transition: all 0.2s ease !important;
}

.modal-method-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1) !important;
}

/* ==========================================================================
   NEW HOME PAGE SECTIONS
   ========================================================================== */

.bg-white { background: #ffffff; }
.bg-light { background: #f8fafc; }

/* Sections */
.section-popular-routes,
.section-intl-travels,
.section-gallery,
.section-why-us {
  padding: 80px 24px;
}

.section-header {
  margin-bottom: 50px;
}
.section-subtitle {
  color: var(--teal-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Popular Routes */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.route-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.route-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.route-icon {
  width: 50px;
  height: 50px;
  background: rgba(51,80,82,0.1);
  color: var(--teal-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.route-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #111;
}
.route-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* International Travels */
.intl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.intl-card {
  height: 350px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.intl-card:hover {
  transform: scale(1.03);
}
.intl-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}
.intl-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.intl-desc {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 60px; height: 60px;
  background: var(--teal-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* ==========================================================================
   MOBILE FIXES: Hide Hero Form & Left-Side Drawer
   ========================================================================== */

/* 1. Hide the Hero Booking Form on mobile view only */
@media (max-width: 991px) {
  .booking-taxi-card {
    display: none !important;
  }
}

/* 2. Make Mobile Drawer appear from the left instead of right */
.mobile-drawer {
  left: -100% !important;
  right: auto !important;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.2) !important;
}
.mobile-drawer.open {
  left: 0 !important;
}

.filter-bar-scroll {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .filter-bar-scroll {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-bar-scroll::-webkit-scrollbar {
    display: none;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SMOOTH ANIMATIONS (Page Transitions & Scroll Reveal)
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  
  
}

@keyframes pageFadeIn {
  0% {   }
  100% { opacity: 1;  }
}

.reveal-element {
  
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.scrolled {
  opacity: 1;
  transform: translateY(0);
}

/* Add delays for grid items if needed */
.hotel-cards-grid > .reveal-element:nth-child(1), .fleet-cards-grid > .reveal-element:nth-child(1) { transition-delay: 0.1s; }
.hotel-cards-grid > .reveal-element:nth-child(2), .fleet-cards-grid > .reveal-element:nth-child(2) { transition-delay: 0.2s; }
.hotel-cards-grid > .reveal-element:nth-child(3), .fleet-cards-grid > .reveal-element:nth-child(3) { transition-delay: 0.3s; }
.hotel-cards-grid > .reveal-element:nth-child(4), .fleet-cards-grid > .reveal-element:nth-child(4) { transition-delay: 0.4s; }

/* ==========================================================================
   SCROLLBAR GUTTER - prevents navbar shift when modal opens
   ========================================================================== */
html {
  scrollbar-gutter: stable;
}

/* ==========================================================================
   OFFICIAL ROUTE PRICING DIRECTORY SECTION
   ========================================================================== */
.pricing-directory-section {
  padding: 85px 0;
  background: #f8fafb;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.vehicle-tabs-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 4px 20px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 25px;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .vehicle-tabs-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.vehicle-tab-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  min-width: 130px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.vehicle-tab-btn .v-tab-name {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color 0.3s;
}

.vehicle-tab-btn .v-tab-cap {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--teal-primary);
  margin-top: 2px;
}

.vehicle-tab-btn:hover {
  border-color: var(--teal-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.vehicle-tab-btn.active {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}

.vehicle-tab-btn.active .v-tab-name {
  color: #ffffff;
}

.vehicle-tab-btn.active .v-tab-cap {
  color: #a7f3d0;
}

/* Pricing Display Card */
.pricing-display-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 35px 30px;
  transition: var(--transition);
}

/* Vehicle Hero Banner */
.pricing-vehicle-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  background: linear-gradient(135deg, rgba(62, 92, 96, 0.06), rgba(107, 178, 220, 0.08));
  border: 1px solid rgba(62, 92, 96, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 35px;
  align-items: center;
}

.pricing-vehicle-img-box {
  height: 180px;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.pricing-vehicle-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.pricing-vehicle-img-box:hover img {
  transform: scale(1.05);
}

.pricing-vehicle-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-vehicle-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-primary);
  background: rgba(62, 92, 96, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.pricing-vehicle-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--teal-dark);
}

.pricing-vehicle-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-vehicle-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.pricing-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
}

.pricing-chip.highlight {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

/* Routes List & Table Grid */
.routes-grid-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 860px) {
  .routes-grid-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.route-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fafbfc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  gap: 16px;
}

.route-card-row:hover {
  background: #ffffff;
  border-color: var(--teal-primary);
  box-shadow: 0 4px 18px rgba(62, 92, 96, 0.1);
  transform: translateY(-2px);
}

.route-info-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.route-num-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(62, 92, 96, 0.08);
  color: var(--teal-primary);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.route-main-name {
  font-weight: 700;
  color: #1f2937;
  font-size: 0.96rem;
  line-height: 1.35;
}

.route-sub-meta {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 2px;
}

.route-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.route-price-tag {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--teal-primary);
  white-space: nowrap;
}

.btn-book-route {
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
}

@media (max-width: 768px) {
  .pricing-display-card {
    padding: 20px 16px;
  }
  .pricing-vehicle-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 18px;
  }
  .pricing-vehicle-img-box {
    height: 240px;
    width: 100%;
    margin: 0 auto;
  }
  .pricing-vehicle-badge {
    margin: 0 auto;
  }
  .pricing-vehicle-chips {
    justify-content: center;
  }
  .route-card-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .route-action-group {
    width: 100%;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px dashed var(--border-light);
  }
}

.flatpickr-calendar { z-index: 9999999 !important; }





