/* ==========================================================================
   RITHISH TOURS & TRAVELS — MODERN INDIAN TRAVEL PORTAL STYLESHEET
   Brand: Rithish Tours & Travels | Madurai, Tamil Nadu
   Identity: Premium, Trustworthy, Modern, Indian, Easy Booking
   Palette:
     - 70% White / Soft Tint (#FFFFFF, #F7F9FC)
     - 20% Deep Navy & Royal Blue (#0B1F33, #1769AA)
     - 10% Warm Orange (#F97316) for CTAs & Highlights
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');
@import url('destinations.css');

/* ==========================================================================
   1. CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
  /* Brand Colors */
  --navy-deep: #0B1F3A;       /* Primary Dark: Headers, Dark Cards */
  --navy-dark: #071525;       /* Deepest Navy / Footer */
  --navy-light: #162E4A;
  --royal-blue: #1769AA;      /* Secondary: Links, Badges, Tabs, Framing */
  --royal-blue-light: #EBF4FC;
  --royal-blue-hover: #12558A;

  /* Accent Color (Used ONLY for CTAs, booking buttons, offers, highlights) */
  --orange-accent: #F97316;   /* Warm Orange */
  --orange-hover: #EA580C;
  --orange-light: #FFF7ED;
  --orange-border: rgba(249, 115, 22, 0.3);

  /* Preferred Brand Palette */
  --sky-blue: #3FA9F5;        /* Primary Sky Blue */
  --sky-blue-hover: #2993DF;
  --sky-blue-light: #EBF6FE;
  --gold: #C9A227;            /* Subtle Gold Accents & Badges */
  --gold-light: #FBF6E9;
  --gold-hover: #B8921F;
  --soft-beige: #F5F1E8;
  --light-grey: #F1F5F9;
  --footer-bg: #000000;       /* Footer – Pure Black */
  --text-dark: #111827;
  --border-color: #E2E8F0;

  /* Neutrals & Surfaces */
  --white: #FFFFFF;
  --bg-soft: #F7F9FC;         /* Soft Portal Background */
  --bg-card: #FFFFFF;
  --bg-input: #F8FAFC;
  --border-light: #E2E8F0;
  --border-subtle: #EDF2F7;

  /* Typography Colors */
  --text-main: #172033;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  /* Status Colors */
  --success: #16A34A;
  --success-light: #DCFCE7;
  --wa-green: #25D366;
  --wa-hover: #1EBE5D;

  /* Fonts */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 9999px;

  /* Elevation Shadows */
  --shadow-xs: 0 1px 2px rgba(11, 31, 51, 0.05);
  --shadow-sm: 0 2px 8px rgba(11, 31, 51, 0.08);
  --shadow-md: 0 6px 20px rgba(11, 31, 51, 0.09);
  --shadow-lg: 0 12px 32px rgba(11, 31, 51, 0.12);
  --shadow-orange: 0 6px 20px rgba(249, 115, 22, 0.28);
  --shadow-blue: 0 6px 20px rgba(23, 105, 170, 0.25);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-base: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. RESET & BASE ELEMENTS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-soft);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-deep);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(28px, 4vw, 46px); }
h2 { font-size: clamp(22px, 3vw, 34px); }
h3 { font-size: clamp(18px, 2.2vw, 24px); }
h4 { font-size: clamp(16px, 1.8vw, 19px); }

p {
  color: var(--text-muted);
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 8px;
}

.eyebrow-orange {
  color: var(--orange-accent);
}

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

.section-head h2 {
  margin-bottom: 10px;
}

.section-head p {
  font-size: 15.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   4. BUTTON SYSTEM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-align: center;
  max-width: 100%;
  white-space: nowrap;
}

/* Primary Action Button (Warm Orange / Gold) */
.btn-orange, .btn-primary, .btn-gold {
  background: var(--orange-accent);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  border: 1px solid transparent;
}

.btn-orange:hover, .btn-primary:hover, .btn-gold:hover {
  background: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.38);
}

/* Secondary Action Button (Royal Blue) */
.btn-blue, .btn-secondary {
  background: var(--royal-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
  border: 1px solid transparent;
}

.btn-blue:hover, .btn-secondary:hover {
  background: var(--royal-blue-hover);
  color: var(--white);
  transform: translateY(-2px);
}

/* Deep Navy Button */
.btn-navy {
  background: var(--navy-deep);
  color: var(--white);
  border: 1px solid var(--navy-deep);
}

.btn-navy:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* Navy Outline Button */
.btn-outline, .btn-navy-outline, .btn-outline-navy {
  background: transparent;
  color: var(--navy-deep);
  border: 1.5px solid var(--navy-deep);
}

.btn-outline:hover, .btn-navy-outline:hover, .btn-outline-navy:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* White Outline (For Hero/Dark areas) */
.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}

/* WhatsApp Button */
.btn-wa, .btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
}

.btn-wa:hover, .btn-whatsapp:hover {
  background: var(--wa-hover);
  color: var(--white);
  transform: translateY(-2px);
}

/* Small / Large Size Variants */
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15.5px;
}

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */
/* Top Information Bar */
.site-topbar {
  background: #000000 !important;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s ease);
}

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

.topbar-item i {
  color: var(--orange-accent);
  font-size: 12px;
}

.topbar-social {
  display: flex;
  gap: 10px;
}

.topbar-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transition: color var(--transition-fast);
}

.topbar-social a:hover {
  color: var(--orange-accent);
}

/* Main Sticky Navbar */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 10000;
  background: var(--white);
  transition: all var(--transition-base);
  box-shadow: 0 1px 3px rgba(11, 31, 51, 0.06);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(11, 31, 51, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height var(--transition-base);
}

.site-header.scrolled .nav-wrap {
  height: 62px;
}

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.15;
}

.nav-brand-tagline {
  font-size: 11px;
  color: var(--royal-blue);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Desktop Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--royal-blue);
  background: var(--royal-blue-light);
}

.nav-link i.fa-angle-down {
  font-size: 11px;
  transition: transform var(--transition-fast);
}

/* Dropdown / Mega Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .nav-link i.fa-angle-down {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 1010;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: var(--royal-blue-light);
  color: var(--royal-blue);
}

.nav-dropdown-item i {
  color: var(--royal-blue);
  width: 16px;
  text-align: center;
}

/* Right Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wa-green);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(37, 211, 102, 0.09);
  transition: all var(--transition-fast);
}

.nav-wa-link:hover {
  background: rgba(37, 211, 102, 0.18);
  color: var(--wa-hover);
}

/* ==========================================================================
   MOBILE HAMBURGER TOGGLE — PROPER BALANCED SQUIRCLE BADGE
   ========================================================================== */
.mobile-nav-right {
  display: none;
  align-items: center;
  gap: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 51, 0.12);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(11, 31, 51, 0.08);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  outline: none;
  touch-action: manipulation;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  z-index: 10001;
}

.hamburger:hover {
  background: #f8fafc;
  border-color: var(--royal-blue);
  box-shadow: 0 2px 8px rgba(24, 82, 172, 0.15);
}

.hamburger:hover span {
  background: var(--royal-blue);
}

.hamburger:active {
  transform: scale(0.92);
  background: var(--royal-blue-light);
  border-color: var(--royal-blue);
}

.hamburger:focus-visible {
  outline: 2px solid var(--royal-blue);
  outline-offset: 2px;
}

/* Three Clean, Uniform, Parallel Bars */
.hamburger span {
  display: block;
  width: 22px;
  height: 2.4px;
  background: var(--navy-deep);
  border-radius: 3px;
  transform-origin: center;
  margin: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease,
              background 0.2s ease;
}

.hamburger span:nth-child(1),
.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  width: 22px;
  margin: 0;
}

/* Animated Morphing Cross State (When Drawer Is Open / Active) */
.hamburger.is-active,
.hamburger.active {
  background: #ffffff;
  border-color: var(--royal-blue);
  box-shadow: 0 2px 8px rgba(24, 82, 172, 0.18);
}

.hamburger.is-active span,
.hamburger.active span {
  background: var(--royal-blue);
}

.hamburger.is-active span:nth-child(1),
.hamburger.active span:nth-child(1) {
  transform: translateY(7.4px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2),
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.is-active span:nth-child(3),
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.4px) rotate(-45deg);
}


/* ==========================================================================
   6. MOBILE NAVIGATION DRAWER & BOTTOM BAR
   ========================================================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 51, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99990;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 86vw;
  height: 100%;
  background: var(--white);
  z-index: 99995;
  padding: 20px 18px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 32px rgba(11, 31, 51, 0.22);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
  transform: translateX(0);
}

/* Hide floating elements & bottom bar when mobile menu drawer is open so WhatsApp never overlaps drawer */
body.drawer-open .floating-wa-btn,
body.drawer-open .back-to-top,
body.drawer-open .mobile-bottom-bar {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-header .nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid rgba(11, 31, 51, 0.1);
  color: var(--navy-deep);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(11, 31, 51, 0.05);
  transition: all 0.22s ease;
  flex-shrink: 0;
}

.mobile-close-btn:hover {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(24, 82, 172, 0.25);
}

.mobile-close-btn:active {
  transform: scale(0.92) rotate(90deg);
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  list-style: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  min-height: 46px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-deep);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
}

.mobile-nav-link i {
  font-size: 12px;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(24, 82, 172, 0.07);
  color: var(--royal-blue);
}

.mobile-nav-link:hover i,
.mobile-nav-link:active i {
  color: var(--royal-blue);
  transform: translateX(3px);
}

/* 10-12: Distinct & Prominent Mobile Action Buttons */
.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.mobile-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  box-sizing: border-box;
  touch-action: manipulation;
}

.mobile-action-btn i {
  font-size: 16px;
  flex-shrink: 0;
}

/* 10. Book Now — Primary Conversion Action */
.mobile-action-book {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.mobile-action-book:hover,
.mobile-action-book:active {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
  transform: translateY(-1px);
}

/* 11. WhatsApp Action */
.mobile-action-wa {
  background: #25D366;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.mobile-action-wa:hover,
.mobile-action-wa:active {
  background: #20bd5a;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  transform: translateY(-1px);
}

/* 12. Call Action */
.mobile-action-call {
  background: var(--navy-deep);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(11, 31, 51, 0.22);
}

.mobile-action-call:hover,
.mobile-action-call:active {
  background: var(--royal-blue);
  box-shadow: 0 6px 18px rgba(24, 82, 172, 0.35);
  transform: translateY(-1px);
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 990;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(11, 31, 51, 0.12);
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 2px;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.mobile-bottom-btn i {
  font-size: 17px;
  color: var(--royal-blue);
}

.mobile-bottom-btn:hover,
.mobile-bottom-btn.active {
  color: var(--navy-deep);
  background: var(--royal-blue-light);
}

.mobile-bottom-btn.btn-wa-bottom {
  color: #16A34A;
}

.mobile-bottom-btn.btn-wa-bottom i {
  color: #25D366;
}

.mobile-bottom-btn.btn-orange-bottom {
  background: var(--orange-light);
  color: var(--orange-hover);
  border: 1px solid var(--orange-border);
}

.mobile-bottom-btn.btn-orange-bottom i {
  color: var(--orange-accent);
}

/* ==========================================================================
   7. HERO SECTION & TRAVEL SEARCH / BOOKING CARD
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 680px;
  background: var(--navy-deep);
  color: var(--white);
  padding: 60px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Hero Background Image with Subtle Slow Zoom */
.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: brightness(0.92) contrast(1.05);
  animation: heroSlowZoom 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroSlowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.82) 0%, rgba(11, 31, 51, 0.62) 48%, rgba(11, 31, 51, 0.94) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

/* 1. Small Eyebrow Badge */
.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.hero-eyebrow-badge i {
  color: var(--orange-accent);
}

/* 2. Main Headline */
.hero-title {
  color: var(--white);
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 16px rgba(11, 31, 51, 0.65);
}

.hero-title span.highlight-orange {
  color: var(--orange-accent);
}

/* 3. Supporting Text */
.hero-desc {
  font-size: clamp(15.5px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.94);
  max-width: 760px;
  margin: 0 auto 26px;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* 4. Primary CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 15.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
}

.hero-cta-link-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.18);
  border: 1.5px solid #25D366;
  color: #25D366;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
}

.hero-cta-link-wa:hover {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* 5. Smart Travel Search Panel */
.hero-search-card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: 0 20px 50px rgba(11, 31, 51, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.25);
  margin: 10px auto 24px;
  max-width: 960px;
  text-align: left;
  color: var(--text-main);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-search-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-search-heading {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.hero-search-heading i {
  color: var(--orange-accent);
}

.hero-search-subtitle {
  font-size: 12.5px;
  color: var(--text-muted);
}

.hero-search-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.3fr 1.4fr auto;
  gap: 12px;
  align-items: flex-end;
}

.hero-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-input-wrap:focus-within {
  border-color: var(--royal-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.12);
}

.hero-input-wrap i {
  color: var(--royal-blue);
  margin-right: 10px;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-input-wrap input,
.hero-input-wrap select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  outline: none;
  font-family: var(--font-body);
}

.hero-dest-clear-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 13px;
}

.hero-dest-clear-btn:hover {
  color: var(--navy-deep);
}

.hero-search-btn {
  height: 46px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-orange);
  transition: all var(--transition-base);
}

.hero-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.38);
}

/* Dynamic Live Suggestions Popup */
.hero-suggestions-popup {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 100%;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 32px rgba(11, 31, 51, 0.16);
  z-index: 50;
  margin-top: 6px;
  max-height: 280px;
  overflow-y: auto;
}

.hero-suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
  text-decoration: none;
  color: var(--text-main);
}

.hero-suggestion-item:last-child {
  border-bottom: none;
}

.hero-suggestion-item:hover,
.hero-suggestion-item.active {
  background: var(--royal-blue-light);
  color: var(--royal-blue-hover);
}

.hero-sugg-title {
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-sugg-title i {
  color: var(--orange-accent);
  font-size: 12px;
}

.hero-sugg-badge {
  font-size: 11.5px;
  background: #F1F5F9;
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* 6. Quick Travel Categories Strip */
.hero-categories-wrap {
  margin-top: 18px;
  margin-bottom: 18px;
}

.hero-categories-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.hero-categories-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.hero-cat-pill i {
  color: var(--orange-accent);
  font-size: 13px;
}

.hero-cat-pill:hover,
.hero-cat-pill.active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-deep);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero-cat-pill:hover i,
.hero-cat-pill.active i {
  color: var(--orange-accent);
}

/* 7. Compact Trust Features Strip */
.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 31, 51, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  transition: all var(--transition-fast);
}

.hero-trust-item:hover {
  background: rgba(11, 31, 51, 0.85);
  border-color: var(--orange-accent);
  transform: translateY(-1px);
}

.hero-trust-check {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-pill);
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.hero-trust-text {
  color: rgba(255, 255, 255, 0.95);
}

/* --------------------------------------------------------------------------
   TRAVEL SEARCH / BOOKING WIDGET (MakeMyTrip-inspired Multi-Tab Engine)
   -------------------------------------------------------------------------- */
.booking-card-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(11, 31, 51, 0.14);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

/* Tabs Navigation Bar */
.booking-tabs {
  display: flex;
  background: #F1F5F9;
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
  scrollbar-width: none;
}

.booking-tabs::-webkit-scrollbar {
  display: none;
}

.booking-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.booking-tab-btn i {
  font-size: 16px;
  color: var(--royal-blue);
}

.booking-tab-btn:hover {
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.6);
}

.booking-tab-btn.active {
  color: var(--navy-deep);
  background: var(--white);
  border-bottom-color: var(--orange-accent);
}

.booking-tab-btn.active i {
  color: var(--orange-accent);
}

/* Tab Panels */
.booking-tab-panel {
  display: none;
  padding: 24px 28px;
}

.booking-tab-panel.active {
  display: block;
  animation: fadeIn 0.25s ease-in-out;
}

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

/* Search Grid Form */
.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
  gap: 14px;
  align-items: flex-end;
}

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

.booking-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.booking-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.booking-input-wrap:focus-within {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.12);
  background: var(--white);
}

.booking-input-wrap i {
  color: var(--royal-blue);
  margin-right: 10px;
  font-size: 14px;
  flex-shrink: 0;
}

.booking-input-wrap input,
.booking-input-wrap select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  outline: none;
}

.booking-submit-btn {
  height: 48px;
  padding: 0 28px;
  font-size: 14.5px;
}

/* ==========================================================================
   8. QUICK SERVICE ICON BAR
   ========================================================================== */
.services-icon-section {
  padding: 40px 0 20px;
}

.services-icon-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.service-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 8px 14px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.service-icon-card:hover {
  transform: translateY(-4px);
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-md);
}

.service-icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  background: var(--royal-blue-light);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  transition: all var(--transition-fast);
}

.service-icon-card:hover .service-icon-bubble {
  background: var(--orange-accent);
  color: var(--white);
}

.service-icon-title {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.25;
}

/* ==========================================================================
   9. TRUST STRIP
   ========================================================================== */
.trust-section {
  padding: 30px 0 50px;
}

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

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--royal-blue-light);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--royal-blue-light);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-info h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.trust-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   10. FEATURED DESTINATIONS
   ========================================================================== */
.destinations-section {
  padding: 60px 0;
  background: var(--white);
}

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

.dest-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dest-card:hover .dest-img {
  transform: scale(1.06);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.05) 30%, rgba(11, 31, 51, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}

.dest-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.dest-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  line-height: 1.35;
}

.dest-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange-accent);
}

/* ==========================================================================
   11. POPULAR DOMESTIC TOUR PACKAGES
   ========================================================================== */
.packages-section {
  padding: 70px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.package-card:hover .package-img {
  transform: scale(1.06);
}

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.package-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(11, 31, 51, 0.85);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

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

.package-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.package-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.package-pill {
  font-size: 11.5px;
  background: var(--bg-soft);
  color: var(--navy-deep);
  border: 1px solid var(--border-light);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.package-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ==========================================================================
   12. TAMIL NADU SPECIAL SECTION
   ========================================================================== */
.tn-special-section {
  padding: 80px 0;
  background: var(--white);
}

.tn-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.tn-text h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 16px;
}

.tn-text p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tn-destinations-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.tn-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
  transition: all var(--transition-fast);
}

.tn-chip:hover {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
}

.tn-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mosaic-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.mosaic-img-tall {
  grid-column: span 1;
  height: 414px;
}

/* ==========================================================================
   13. INTERNATIONAL TOURS SECTION (Dark Premium Theme)
   ========================================================================== */
.intl-section {
  padding: 80px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.intl-section .section-head h2 {
  color: var(--white);
}

.intl-section .section-head p {
  color: rgba(255, 255, 255, 0.8);
}

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

.intl-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-base);
}

.intl-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.intl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.intl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.1) 20%, rgba(11, 31, 51, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.intl-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.intl-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

/* ==========================================================================
   14. CUSTOM TOUR PLANNER
   ========================================================================== */
.custom-planner-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.planner-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  max-width: 920px;
  margin: 0 auto;
}

.planner-head {
  text-align: center;
  margin-bottom: 32px;
}

.planner-head h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

/* Travel Type Selector Chips */
.travel-type-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 10px;
  display: block;
}

.travel-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.chip-btn:hover {
  border-color: var(--royal-blue);
  color: var(--royal-blue);
}

.chip-btn.active {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
}

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

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

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

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14.5px;
  color: var(--text-main);
  background: var(--bg-input);
  outline: none;
  transition: all var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.12);
  background: var(--white);
}

/* ==========================================================================
   15. CAB SERVICES FLEET
   ========================================================================== */
.cabs-section {
  padding: 70px 0;
  background: var(--white);
}

.cabs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cab-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-light, #e2e8f0);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-base, 0.3s ease), box-shadow var(--transition-base, 0.3s ease), border-color var(--transition-base, 0.3s ease);
  height: 100%;
}

.cab-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: var(--sky-blue, #0ea5e9);
}

.cab-card-img-wrap {
  width: 100%;
  height: 210px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
}

.cab-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cab-card:hover .cab-card-img-wrap img {
  transform: scale(1.04);
}

.cab-card-body {
  padding: 24px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.cab-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-deep, #0c2340);
  margin: 0 0 12px 0;
  text-align: center;
  line-height: 1.3;
}

.cab-card-rent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.cab-card-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--royal-blue, #0284c7);
  line-height: 1.2;
}

.cab-card-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted, #64748b);
}

.cab-card-details {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted, #64748b);
  line-height: 1.5;
  text-align: center;
  margin-top: 4px;
}

/* ── Enhanced Two-Tier Vehicle Tariff Plan ── */
.cab-tariff-plan {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 2px;
}

.tariff-tier-block {
  border-radius: 12px;
  padding: 10px 14px;
  text-align: left;
  transition: all var(--transition-fast, 0.2s ease);
}

/* Tier 1: Below 300 Km Per Day (Soft sky-blue tint) */
.tariff-tier-block.tier-below {
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
}

.tariff-tier-block.tier-below .tariff-tier-head {
  color: #0369a1;
}

.tariff-tier-block.tier-below .tariff-tier-head i {
  color: #0284c7;
}

.tariff-tier-block.tier-below .tariff-item-price {
  color: #0369a1;
}

/* Tier 2: Above 300 Km Per Day (Clean neutral slate tint) */
.tariff-tier-block.tier-above {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
}

.tariff-tier-block.tier-above .tariff-tier-head {
  color: #0f172a;
}

.tariff-tier-block.tier-above .tariff-tier-head i {
  color: #ea580c;
}

.tariff-tier-block.tier-above .tariff-item-price {
  color: #0f172a;
}

.tariff-tier-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 7px;
  padding-bottom: 5px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.09);
}

.tariff-tier-head i {
  font-size: 12px;
}

.tariff-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tariff-tier-item {
  display: flex;
  flex-direction: column;
}

.tariff-item-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.tariff-item-price {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 2px;
}

.tariff-unit {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
}

/* ── Cab Card Action Buttons ── */
.cab-card-actions {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
  justify-content: center;
}

.btn-book-cab,
.btn-wa-cab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  letter-spacing: 0.3px;
}

.btn-book-cab {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(14, 165, 233, 0.30);
}

.btn-book-cab:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.40);
  color: #ffffff;
  text-decoration: none;
}

.btn-wa-cab {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(34, 197, 94, 0.28);
}

.btn-wa-cab:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.38);
  color: #ffffff;
  text-decoration: none;
}

.cab-badge-pill {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  display: inline-block;
}

.cab-badge-ertiga {
  background: #EFF6FF;
  color: #1D4ED8;
}

.cab-badge-crysta {
  background: #F3E8FF;
  color: #7E22CE;
}

.cab-badge-urbania {
  background: #FFE4E6;
  color: #BE123C;
}

.cab-tariff-breakdown {
  margin: 12px 0 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 12.5px;
}

.cab-tariff-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px dashed #E2E8F0;
}

.cab-tariff-row:last-child {
  border-bottom: none;
}

.cab-tariff-row .t-label {
  color: var(--text-muted);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cab-tariff-row .t-label i {
  color: var(--royal-blue);
  font-size: 11px;
}

.cab-tariff-row .t-val {
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 12.5px;
}

.cab-tariff-row .rate-accent {
  color: var(--orange);
  font-size: 13.5px;
  font-weight: 800;
}

.cab-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
}

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

.cab-feature-list li i {
  color: #10B981;
  font-size: 11px;
}

.tariff-disclaimer-box {
  margin-top: 24px;
  padding: 14px 20px;
  background: #FFFBEB;
  border-left: 4px solid #F59E0B;
  border-radius: 8px;
  font-size: 13.5px;
  color: #92400E;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   16. AIRPORT & RAILWAY TRANSFERS
   ========================================================================== */
.transfers-section {
  padding: 70px 0;
  background: var(--royal-blue-light);
}

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

.transfer-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.transfer-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
}

.transfer-item i {
  color: var(--royal-blue);
  font-size: 22px;
  margin-bottom: 8px;
}

.transfer-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.transfer-item p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   17. HOW IT WORKS (4-Step Timeline)
   ========================================================================== */
.how-it-works-section {
  padding: 70px 0;
  background: var(--white);
}

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

.step-card {
  text-align: center;
  padding: 24px 16px;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--royal-blue-light);
  color: var(--royal-blue);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(23, 105, 170, 0.2);
}

.step-card:hover .step-number {
  background: var(--orange-accent);
  color: var(--white);
  border-color: var(--orange-accent);
}

.step-title {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   18. OFFERS & SEASONAL DEALS
   ========================================================================== */
.offers-section {
  padding: 70px 0;
  background: var(--bg-soft);
}

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

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px dashed var(--royal-blue);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
}

.offer-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  align-self: flex-start;
}

.offer-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.offer-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ==========================================================================
   19. WHY CHOOSE RITHISH TOURS & TRAVELS (Trust Grid)
   ========================================================================== */
.why-choose-section {
  padding: 80px 0;
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.09);
  border-color: var(--royal-blue);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #EFF6FF;
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.why-card:hover .why-card-icon {
  transform: scale(1.08);
}

.why-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   CUSTOMER REVIEWS (Verified Traveller Stories - Deep Navy Theme)
   ========================================================================== */
.reviews-section {
  padding: 85px 0;
  background: linear-gradient(145deg, #0B1F3A 0%, #11284A 55%, #081628 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.review-stars {
  color: #F59E0B;
  font-size: 14px;
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  flex-grow: 1;
  font-style: italic;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--royal-blue), #38BDF8);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.review-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.review-route {
  font-size: 11.5px;
  color: #38BDF8;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.review-badge {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 600;
  color: #34D399;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* ==========================================================================
   TRAVEL GUIDES SECTION (Destination Insights)
   ========================================================================== */
.guides-section {
  padding: 80px 0;
  background: var(--white);
}

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

.guide-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.1);
  border-color: #CBD5E1;
}

.guide-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.guide-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.guide-card:hover .guide-card-img-wrap img {
  transform: scale(1.06);
}

.guide-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.guide-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.guide-card-body h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.guide-card-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 18px;
  flex-grow: 1;
}

.guide-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 16px;
}

.guide-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.guide-meta i {
  color: var(--royal-blue);
}

/* ==========================================================================
   CUSTOMIZE YOUR TRIP CTA BANNER
   ========================================================================== */
.customize-cta-section {
  padding: 40px 0 80px;
  background: var(--white);
}

.customize-cta-inner {
  background: linear-gradient(135deg, #1769AA 0%, #0F4C75 45%, #0B1F3A 100%);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 20px 48px rgba(15, 76, 117, 0.25);
  position: relative;
  overflow: hidden;
}

.customize-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.customize-cta-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}

.customize-cta-content p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  max-width: 650px;
}

.customize-cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-bottom: 28px;
}

.customize-cta-features span {
  font-size: 13.5px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.customize-cta-features i {
  color: #38BDF8;
  font-size: 15px;
}

.customize-cta-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-white {
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 700;
  border: 1px solid var(--white);
}

.btn-white:hover {
  background: #F8FAFC;
  color: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.customize-cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.customize-cta-visual-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.customize-cta-visual-circle i {
  font-size: 48px;
  color: #38BDF8;
  margin-bottom: 8px;
}

.customize-cta-visual-circle span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   CONTACT / BOOKING CTA SECTION
   ========================================================================== */
.contact-cta-section {
  padding: 70px 0;
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contact-cta-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.08);
  border-color: var(--royal-blue);
}

.contact-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #EFF6FF;
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.contact-cta-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.contact-cta-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.contact-cta-numbers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact-cta-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--royal-blue);
  padding: 10px 14px;
  background: #EFF6FF;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.contact-cta-num:hover {
  background: var(--royal-blue);
  color: var(--white);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR HOMEPAGE SECTIONS
   ========================================================================== */
@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .customize-cta-inner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .customize-cta-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .guides-grid {
    grid-template-columns: 1fr;
  }
  .contact-cta-grid {
    grid-template-columns: 1fr;
  }
  .customize-cta-features {
    grid-template-columns: 1fr;
  }
  .customize-cta-inner {
    padding: 28px 20px;
  }
}


/* ==========================================================================
   20. SEO EDITORIAL CONTENT SECTION
   ========================================================================== */
.seo-content-section {
  padding: 60px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
}

.seo-text-block {
  max-width: 980px;
  margin: 0 auto;
}

.seo-text-block h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.seo-text-block p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.seo-features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.seo-item {
  background: var(--white);
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 13.5px;
}

.seo-item strong {
  color: var(--navy-deep);
  display: block;
  margin-bottom: 4px;
}

/* ==========================================================================
   21. FOOTER (Deep Navy 4-Column Layout)
   ========================================================================== */
.site-footer {
  background: var(--footer-bg, #000000);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 24px;
}

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

/* Footer Brand & Company Logo Card */
.footer-brand,
.footer-col.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link,
.footer-brand .footer-logo-link,
.footer-logo-card,
.footer-brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-logo-link:hover,
.footer-brand .footer-logo-link:hover,
.footer-logo-card:hover,
.footer-brand-logo-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(63, 169, 245, 0.4);
  background: #ffffff;
}

.footer-brand img,
.footer-logo,
.footer-brand-logo,
.site-footer .footer-logo,
.site-footer .footer-brand img,
.site-footer .footer-brand-col img {
  height: 64px !important;
  width: auto !important;
  max-width: 215px !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 4px;
}

/* Fallback styling if img is directly inside footer-brand */
.footer-brand > img:not(.footer-logo-link img),
.footer-col.footer-brand-col > img:not(.footer-logo-link img) {
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-sizing: content-box;
}

.footer-brand > img:not(.footer-logo-link img):hover,
.footer-col.footer-brand-col > img:not(.footer-logo-link img):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(63, 169, 245, 0.4);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.footer-brand-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white, #ffffff);
  line-height: 1.25;
}

.footer-brand-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--sky-blue, #3FA9F5);
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.footer-tagline {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold, #C9A227) !important;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 2px;
  margin-bottom: 10px;
}

.footer-brand p,
.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-social-wrap {
  margin-top: 6px;
  margin-bottom: 14px;
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-pill, 50px);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast, 0.2s);
}

.footer-wa-link:hover {
  background: #25D366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--orange-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-col ul li a,
.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: inline-block;
  transition: color var(--transition-fast, 0.2s ease), padding-left var(--transition-fast, 0.2s ease), transform var(--transition-fast, 0.2s ease);
}

.footer-links a:hover,
.footer-col ul li a:hover,
.footer-col a:hover {
  color: var(--orange-accent, #F97316);
  padding-left: 6px;
  transform: translateX(2px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item,
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item i,
.footer-contact-list li i {
  color: var(--orange-accent, #F97316);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s ease);
}

.footer-contact-item a:hover,
.footer-contact-list a:hover {
  color: var(--orange-accent, #F97316);
}

/* Company Name Highlighting */
.footer-company-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white, #ffffff);
  margin-top: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-company-title span,
.footer-company-highlight,
.site-footer .footer-company-highlight,
.site-footer .footer-bottom span strong,
.site-footer .footer-bottom span b {
  color: var(--sky-blue, #3FA9F5);
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-block;
  transition: color var(--transition-fast, 0.2s ease), text-shadow var(--transition-fast, 0.2s ease);
}

.footer-company-title:hover span,
.footer-company-highlight:hover,
.site-footer .footer-company-highlight:hover,
.site-footer .footer-bottom span strong:hover,
.site-footer .footer-bottom span b:hover {
  color: var(--orange-accent, #F97316);
  text-shadow: 0 0 12px rgba(249, 115, 22, 0.4);
}

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

.footer-bottom a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s ease);
}

.footer-bottom a:hover,
.footer-legal a:hover {
  color: var(--orange-accent, #F97316);
}

/* ==========================================================================
   22. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999 !important;
  transition: all var(--transition-base);
  animation: pulseWa 2.5s infinite;
}

.floating-wa-btn:hover {
  background: var(--wa-hover);
  transform: scale(1.08);
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back To Top */
.back-to-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.25);
  z-index: 9995;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  outline: none;
}

.back-to-top.visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.back-to-top:hover,
.back-to-top:focus {
  background: var(--royal-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.35);
}

/* ==========================================================================
   23. BOOKING SUCCESS / ENQUIRY CONFIRMATION MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 51, 0.65);
  backdrop-filter: blur(4px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  transform: scale(0.92);
  transition: transform var(--transition-base);
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-icon-success {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-pill);
  background: var(--success-light);
  color: var(--success);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* ==========================================================================
   24. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .services-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cabs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-topbar {
    display: none;
  }
  .nav-menu, .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav-right {
    display: flex;
  }
  .nav-wrap {
    height: 64px;
    padding: 0 14px;
  }
  .site-header.scrolled .nav-wrap {
    height: 58px;
  }
  .nav-brand {
    gap: 10px;
    max-width: calc(100% - 54px);
  }
  .nav-brand img {
    height: 38px;
  }
  .nav-brand-title {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-brand-tagline {
    font-size: 10px;
  }
  @media (max-width: 400px) {
    .nav-wrap {
      padding: 0 10px;
    }
    .nav-brand {
      gap: 8px;
      max-width: calc(100% - 48px);
    }
    .nav-brand img {
      height: 35px;
    }
    .nav-brand-title {
      font-size: 14px;
    }
    .nav-brand-tagline {
      font-size: 9.5px;
    }
  }
  .site-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: var(--white) !important;
  }
  .btn, .btn-lg, .btn-navy, .btn-outline {
    white-space: normal !important;
    max-width: 100% !important;
    word-break: break-word !important;
  }
  .mobile-bottom-bar {
    display: block;
  }
  .floating-wa-btn {
    bottom: 74px;
    right: 16px;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 52px;
    height: 52px;
    font-size: 26px;
    z-index: 9999 !important;
  }
  /* Mobile Back To Top Button - Positioned cleanly above floating WhatsApp button */
  .back-to-top {
    display: flex;
    position: fixed;
    bottom: 134px;
    right: 18px;
    width: 46px;
    height: 46px;
    font-size: 16px;
    border-radius: var(--radius-pill);
    background: var(--navy-deep);
    color: var(--white);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(11, 31, 58, 0.28);
    z-index: 9995;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
  }
  .back-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
  .back-to-top:hover,
  .back-to-top:active {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-2px);
  }
  .floating-btns {
    display: none !important;
  }
  .mobile-action-bar {
    display: none !important;
  }
  .hero-section {
    min-height: auto;
    padding: 44px 0 44px;
  }
  .hero-content {
    padding: 0 12px;
  }
  .hero-title {
    font-size: clamp(28px, 7.5vw, 38px);
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-desc {
    font-size: 14.5px;
    margin-bottom: 20px;
    line-height: 1.55;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }
  .hero-cta-btn,
  .hero-cta-link-wa {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }
  .hero-search-card {
    padding: 18px 14px;
    margin: 16px 0;
    border-radius: var(--radius-md);
  }
  .hero-search-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hero-search-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-search-btn {
    width: 100%;
    height: 48px;
    justify-content: center;
  }
  .hero-suggestions-popup {
    left: 14px;
    right: 14px;
  }
  .hero-categories-wrap {
    margin: 16px 0 14px;
  }
  .hero-categories-strip {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  .hero-categories-strip::-webkit-scrollbar {
    display: none;
  }
  .hero-cat-pill {
    padding: 6px 14px;
    font-size: 13px;
    flex-shrink: 0;
  }
  .hero-trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .hero-trust-item {
    justify-content: center;
    padding: 6px 10px;
    font-size: 12px;
  }
  .booking-card-wrapper {
    margin-top: 24px;
    padding: 0 12px;
  }
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  .services-icon-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .tn-split-grid {
    grid-template-columns: 1fr;
  }
  .tn-image-mosaic {
    grid-template-columns: 1fr;
  }
  .mosaic-img-tall {
    height: 220px;
  }
  .intl-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2, .form-grid-3 {
    grid-template-columns: 1fr;
  }
  .planner-box {
    padding: 24px 18px;
  }
  .cabs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .transfers-wrap {
    grid-template-columns: 1fr;
  }
  .transfer-card-list {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .seo-features-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .services-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-icon-bubble {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .service-icon-title {
    font-size: 11px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   25. MICRO-INTERACTIONS & TOUCH TARGET POLISH (WCAG & Mobile-First)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Touch Targets: minimum 44px on touch devices */
@media (max-width: 768px) {
  .btn,
  .booking-tab-btn,
  .chip-btn,
  .mobile-nav-item a,
  .mobile-bottom-btn,
  .booking-submit-btn,
  .nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .booking-input-wrap {
    min-height: 46px;
  }

  .booking-input-wrap input,
  .booking-input-wrap select {
    min-height: 36px;
    font-size: 15px; /* Prevents iOS zoom */
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 15px;
    min-height: 44px;
  }

  .hero-trust-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* ==========================================================================
   26. INNER PAGE DESIGN SYSTEM (Sky Blue + Deep Navy + White)
   Standardized across ALL non-home pages: about, services, tariff, packages,
   domestic-packages, international-packages, contact, travel-guides, 404
   ========================================================================== */
.inner-page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-deep);
  color: var(--white);
  padding: 64px 0;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.78) 0%, rgba(11, 31, 58, 0.90) 100%);
  z-index: 2;
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  max-width: 840px;
}

.inner-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.inner-breadcrumbs a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.inner-breadcrumbs a:hover {
  color: var(--sky-blue);
}

.inner-breadcrumbs i {
  font-size: 10px;
  opacity: 0.6;
}

.inner-breadcrumbs span.active {
  color: var(--sky-blue);
  font-weight: 600;
}

.inner-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.inner-hero-desc {
  font-size: clamp(15px, 1.8vw, 17.5px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 720px;
  margin: 0;
}

/* Page Section & Shared Container */
.page-section {
  padding: 80px 0;
  background: var(--white);
}

.page-section-alt {
  padding: 80px 0;
  background: var(--light-grey);
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sky Blue Buttons & CTAs */
.btn-sky {
  background: var(--sky-blue);
  color: var(--white);
  border: 1px solid var(--sky-blue);
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 11px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.btn-sky:hover {
  background: var(--sky-blue-hover);
  border-color: var(--sky-blue-hover);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(63, 169, 245, 0.35);
  transform: translateY(-2px);
}

.btn-navy-outline {
  background: var(--white);
  color: var(--navy-deep);
  border: 1.5px solid var(--navy-deep);
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.btn-navy-outline:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* Inner CTA Banner */
.inner-cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #162E4A 100%);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  margin-top: 60px;
}

.inner-cta-banner h2 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 12px;
}

.inner-cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.inner-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Tariff & Pricing Cards */
.tariff-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.tariff-card-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.tariff-card-box:hover {
  border-color: var(--sky-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tariff-card-badge {
  align-self: flex-start;
  background: var(--sky-blue-light);
  color: var(--sky-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.tariff-price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.tariff-amount {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy-deep);
}

.tariff-unit {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.tariff-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-main);
  flex-grow: 1;
}

.tariff-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tariff-feature-list li i {
  color: var(--success);
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
}

/* Service Card Expanded (3-Col Grid) */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-expanded {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 30px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-expanded:hover {
  transform: translateY(-5px);
  border-color: var(--sky-blue);
  box-shadow: var(--shadow-md);
}

.service-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sky-blue-light);
  color: var(--sky-blue);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: all var(--transition-fast, 0.2s ease);
}

.service-card-expanded:hover .service-card-icon {
  background: var(--sky-blue);
  color: var(--white);
}

.service-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.service-feature-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-feature-bullets li i {
  color: var(--sky-blue);
  font-size: 12px;
}

/* 2-Column Story / About */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.about-story-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

/* Responsive Rules for Inner Pages */
@media (max-width: 1024px) {
  .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-story-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .inner-page-hero {
    min-height: 260px;
    padding: 44px 0;
  }
  .page-section, .page-section-alt {
    padding: 48px 0;
  }
  .services-card-grid {
    grid-template-columns: 1fr;
  }
  .inner-cta-banner {
    padding: 36px 20px;
  }
}

/* ==========================================================================
   HOMEPAGE & CATALOG PACKAGE SEARCH, FILTER & EMPTY STATE
   ========================================================================== */
.pkg-filter-bar {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-xs);
}

.pkg-search-box {
  position: relative;
  flex: 1 1 320px;
  display: flex;
  align-items: center;
}

.pkg-search-box i.fa-magnifying-glass {
  position: absolute;
  left: 14px;
  color: var(--royal-blue);
  font-size: 15px;
  pointer-events: none;
}

.pkg-search-box input {
  width: 100%;
  padding: 11px 40px 11px 40px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--navy-deep);
  background: var(--bg-soft);
  transition: all var(--transition-base);
}

.pkg-search-box input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.12);
}

.pkg-clear-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
}

.pkg-clear-btn:hover {
  color: var(--navy-deep);
}

.pkg-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pkg-chip {
  background: var(--bg-soft);
  color: var(--navy-deep);
  border: 1px solid var(--border-light);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pkg-chip:hover {
  background: var(--sky-blue-light);
  color: var(--royal-blue);
  border-color: var(--royal-blue);
}

.pkg-chip.active {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

/* Neutral & Filtered Empty State */
.package-empty-state {
  background: var(--white);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 24px;
  text-align: center;
  margin: 20px 0 40px;
}

.empty-state-content {
  max-width: 520px;
  margin: 0 auto;
}

.empty-state-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.package-empty-state h3 {
  font-size: 20px;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.package-empty-state p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.empty-state-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   DESKTOP PACKAGE CARD HEIGHT EQUALIZATION & LINE CLAMPING
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
}

.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.12);
  border-color: rgba(63, 169, 245, 0.4);
}

.package-card .package-img-wrap {
  position: relative;
  height: 210px;
  min-height: 210px;
  max-height: 210px;
  overflow: hidden;
  flex-shrink: 0;
  background: #E2E8F0;
}

.package-card .package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.package-card:hover .package-img {
  transform: scale(1.06);
}

.package-card .package-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.package-card .package-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.package-card .package-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  min-height: 62px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.package-card .package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  min-height: 48px;
  align-content: flex-start;
}

.package-card .package-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Service Card Expanded (Inner Catalog Pages) Height Equalization */
article.service-card-expanded {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 440px;
}

article.service-card-expanded > div:first-child {
  height: 210px;
  min-height: 210px;
  max-height: 210px;
  flex-shrink: 0;
}

article.service-card-expanded > div:last-child {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

/* Service & Hotel text cards (without top image banner) height equalization */
div.service-card-expanded {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 440px;
}

div.service-card-expanded > div:first-child {
  height: auto;
  min-height: unset;
  max-height: none;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

div.service-card-expanded > div:last-child {
  flex: 0 0 auto;
  margin-top: auto;
}

/* Hotel Page Destination Stays Cards */
.hotel-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.hotel-card > div:first-child,
.hotel-card-body {
  height: auto !important;
  min-height: unset !important;
  max-height: none !important;
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 18px;
}

.hotel-card > div:last-child,
.hotel-card-action {
  flex: 0 0 auto !important;
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid var(--border-light) !important;
  width: 100% !important;
}

.hotel-card h3 {
  min-height: unset !important;
  display: block !important;
  overflow: visible !important;
  margin-bottom: 8px;
}

.hotel-card p {
  min-height: unset !important;
  display: block !important;
  overflow: visible !important;
  margin-bottom: 14px;
}

/* Mobile: hotel cards full-width, no minimum height forcing */
@media (max-width: 768px) {
  .hotel-card {
    min-height: unset;
  }
  div.service-card-expanded {
    min-height: unset;
  }
}

/* ==========================================================================
   27. PACKAGE DETAIL & ITINERARY DESIGN SYSTEM
   Standardized layout, card styling, itinerary, and booking sidebar
   ========================================================================== */

/* Page Hero Section */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark, #081624) 0%, var(--navy-deep, #0B1F33) 60%, #1769AA 100%);
  color: var(--white, #ffffff);
  padding: 56px 0 44px;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63, 169, 245, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.page-hero .breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill, 9999px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.page-hero .breadcrumbs a {
  color: var(--white, #ffffff);
  text-decoration: none;
  transition: color var(--transition-fast, 0.18s ease);
}

.page-hero .breadcrumbs a:hover {
  color: var(--sky-blue, #3FA9F5);
}

.page-hero .breadcrumbs i {
  font-size: 10px;
  opacity: 0.6;
}

.page-hero .breadcrumbs span {
  color: var(--sky-blue, #3FA9F5);
  font-weight: 600;
}

.page-hero h1 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--white, #ffffff);
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.page-hero p.lead {
  font-size: clamp(14.5px, 1.6vw, 17px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin: 0;
  max-width: 760px;
}

/* Main Two-Column Layout */
.pkg-detail-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: start;
  margin: 28px 0 48px;
}

.pkg-main-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Hero Visual Banner */
.pkg-hero-banner {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.12);
  border: 1px solid var(--border-light, #E2E8F0);
}

.pkg-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 36, 0.1) 0%, rgba(8, 22, 36, 0.45) 50%, rgba(8, 22, 36, 0.88) 100%);
  z-index: 1;
}

.pkg-hero-banner-content {
  position: relative;
  z-index: 2;
  padding: 24px 28px;
  color: var(--white, #ffffff);
  width: 100%;
}

.pkg-hero-banner-content h3 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.pkg-hero-banner-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Quick Summary Bar */
.pkg-quick-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.summary-box {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(11, 31, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.summary-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23, 105, 170, 0.1);
  border-color: var(--sky-blue, #3FA9F5);
}

.summary-box i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--sky-blue-light, #EBF6FE);
  color: var(--royal-blue, #1769AA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.summary-box .label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #64748B);
  font-weight: 600;
  margin-bottom: 2px;
}

.summary-box .value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
  line-height: 1.3;
}

/* General Package Box Cards */
.pkg-card-box {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 4px 16px rgba(11, 31, 51, 0.04);
}

.pkg-card-box h2 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.pkg-card-box h2 i {
  color: var(--royal-blue, #1769AA);
  font-size: 18px;
}

.pkg-card-box p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-secondary, #334155);
  margin-bottom: 14px;
}

.pkg-card-box p:last-child {
  margin-bottom: 0;
}

.pkg-card-box strong {
  color: var(--navy-deep, #0B1F33);
  font-weight: 600;
}

/* Visual Highlights Gallery */
.pkg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.pkg-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  background: #E2E8F0;
}

.pkg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pkg-gallery-item:hover img {
  transform: scale(1.05);
}

.pkg-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 22, 36, 0.85) 100%);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Sightseeing Highlights Grid */
.highlights-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.highlight-spot-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.25s ease;
}

.highlight-spot-card:hover {
  background: #ffffff;
  border-color: var(--sky-blue, #3FA9F5);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23, 105, 170, 0.08);
}

.highlight-spot-card i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--royal-blue-light, #EBF4FC);
  color: var(--royal-blue, #1769AA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-spot-card h4 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep, #0B1F33);
  margin-bottom: 4px;
  line-height: 1.35;
}

.highlight-spot-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted, #64748B);
  margin: 0;
}

/* Suggested Itinerary */
.itinerary-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.itinerary-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-left: 4px solid var(--royal-blue, #1769AA);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px rgba(11, 31, 51, 0.03);
  transition: all 0.25s ease;
}

.itinerary-card:hover {
  border-left-color: var(--orange-accent, #F97316);
  box-shadow: 0 6px 20px rgba(11, 31, 51, 0.07);
}

.itinerary-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.itinerary-day-badge {
  background: var(--royal-blue-light, #EBF4FC);
  color: var(--royal-blue, #1769AA);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(23, 105, 170, 0.2);
}

.itinerary-card:hover .itinerary-day-badge {
  background: var(--orange-subtle, #FFF7ED);
  color: var(--orange-accent, #F97316);
  border-color: rgba(249, 115, 22, 0.25);
}

.itinerary-header h3 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
  margin: 0;
  line-height: 1.35;
}

.itinerary-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary, #334155);
  margin-bottom: 12px;
}

.itinerary-spots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.itinerary-spots span {
  font-size: 12px;
  font-weight: 500;
  background: #F1F5F9;
  color: var(--text-secondary, #334155);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-light, #E2E8F0);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.itinerary-spots span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--royal-blue, #1769AA);
  display: inline-block;
}

/* Route & Highway Facts */
.route-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.route-info-item {
  background: #F8FAFC;
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.route-info-item .r-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #64748B);
  font-weight: 600;
}

.route-info-item .r-val {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
}

/* Inclusions & Exclusions Grid */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.inc-box {
  border-radius: 12px;
  padding: 20px 22px;
  border: 1px solid var(--border-light, #E2E8F0);
}

.inc-box.included {
  background: #F0FDF4;
  border-color: #BBF7D0;
  border-top: 4px solid #16A34A;
}

.inc-box.excluded {
  background: #FFF7ED;
  border-color: #FED7AA;
  border-top: 4px solid #EA580C;
}

.inc-box h4 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inc-box.included h4 {
  color: #15803D;
}

.inc-box.excluded h4 {
  color: #C2410C;
}

.inc-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inc-box li {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary, #334155);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.inc-box.included li i {
  color: #16A34A;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.inc-box.excluded li i {
  color: #EA580C;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white, #ffffff);
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: var(--royal-blue, #1769AA);
  box-shadow: 0 4px 14px rgba(23, 105, 170, 0.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-deep, #0B1F33);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-q:hover {
  background: #F8FAFC;
  color: var(--royal-blue, #1769AA);
}

.faq-item.active .faq-q {
  background: #F8FAFC;
  color: var(--royal-blue, #1769AA);
}

.faq-q i {
  font-size: 12px;
  color: var(--text-muted, #64748B);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-q i {
  transform: rotate(180deg);
  color: var(--royal-blue, #1769AA);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  background: var(--white, #ffffff);
}

.faq-item.active .faq-a {
  max-height: 500px;
  padding: 8px 20px 18px 20px;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary, #334155);
  margin: 0;
}

/* Related Packages Grid */
.related-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}

.related-packages-grid .tour-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(11, 31, 51, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.related-packages-grid .tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.09);
  border-color: var(--border-mid, #CBD5E1);
}

.related-packages-grid .tour-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #E2E8F0;
}

.related-packages-grid .tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.related-packages-grid .tour-card:hover .tour-img img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(11, 31, 51, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tour-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-body h4 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}

.tour-body h4 a {
  color: var(--navy-deep, #0B1F33);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tour-body h4 a:hover {
  color: var(--royal-blue, #1769AA);
}

.tour-body p {
  font-size: 12.5px;
  color: var(--text-muted, #64748B);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.tour-body .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Sticky Booking Sidebar */
.pkg-sidebar {
  position: relative;
}

.pkg-sidebar-card {
  position: sticky;
  top: 96px;
  z-index: 20;
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #E2E8F0);
  border-top: 4px solid var(--orange-accent, #F97316);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 8px 30px rgba(11, 31, 51, 0.08);
}

.pkg-sidebar-card h3 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-deep, #0B1F33);
  margin-bottom: 4px;
}

.pkg-sidebar-card p.sub {
  font-size: 13px;
  color: var(--text-muted, #64748B);
  margin-bottom: 18px;
  line-height: 1.45;
}

.pkg-sidebar-form .form-grid {
  display: grid;
  gap: 12px;
}

.pkg-sidebar-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg-sidebar-form .form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary, #334155);
}

.pkg-sidebar-form .form-group input,
.pkg-sidebar-form .form-group select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid var(--border-light, #E2E8F0);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: var(--navy-deep, #0B1F33);
  background: #F8FAFC;
  transition: all 0.2s ease;
  outline: none;
}

.pkg-sidebar-form .form-group input:focus,
.pkg-sidebar-form .form-group select:focus {
  border-color: var(--royal-blue, #1769AA);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.12);
}

.pkg-sidebar-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.pkg-sidebar-cta-btns .btn-gold,
.pkg-sidebar-cta-btns .btn-submit {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, var(--orange-accent, #F97316) 0%, var(--orange-hover, #EA580C) 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.28);
}

.pkg-sidebar-cta-btns .btn-gold:hover,
.pkg-sidebar-cta-btns .btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.38);
}

.pkg-sidebar-cta-btns .btn-wa {
  width: 100%;
  height: 44px;
  background: var(--wa-green, #25D366);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
}

.pkg-sidebar-cta-btns .btn-wa:hover {
  background: var(--wa-hover, #20BA5A);
  transform: translateY(-1px);
  color: #ffffff;
}

.pkg-sidebar-cta-btns .btn-outline {
  width: 100%;
  height: 44px;
  background: transparent;
  border: 1.5px solid var(--border-mid, #CBD5E1);
  color: var(--navy-deep, #0B1F33);
  border-radius: 8px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pkg-sidebar-cta-btns .btn-outline:hover {
  border-color: var(--royal-blue, #1769AA);
  color: var(--royal-blue, #1769AA);
  background: var(--royal-blue-light, #EBF4FC);
}

.pkg-trust-list {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light, #E2E8F0);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pkg-trust-list-item {
  font-size: 12.5px;
  color: var(--text-secondary, #334155);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.pkg-trust-list-item i {
  color: var(--success, #16A34A);
  font-size: 13px;
  flex-shrink: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .pkg-detail-wrap {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
  }

  .summary-box {
    padding: 12px 14px;
  }

  .summary-box .value {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .pkg-detail-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pkg-sidebar-card {
    position: static;
    max-width: 540px;
    margin: 0 auto;
  }

  .pkg-quick-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pkg-hero-banner {
    height: 240px;
  }

  .pkg-hero-banner-content {
    padding: 18px 20px;
  }

  .pkg-card-box {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .highlights-list-grid {
    grid-template-columns: 1fr;
  }

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

  .route-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .page-hero {
    padding: 40px 0 28px;
  }

  .pkg-quick-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pkg-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pkg-gallery-item {
    height: 180px;
  }

  .route-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .related-packages-grid {
    grid-template-columns: 1fr;
  }

  .pkg-sidebar-card {
    padding: 20px 16px;
    width: 100%;
    max-width: 100%;
  }

  .itinerary-card {
    padding: 16px 18px;
  }
}

/* ==========================================================================
   27. UNIVERSAL BOOKING & QUOTE MODAL SYSTEM
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 51, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

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

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 30px 26px;
  position: relative;
  box-shadow: 0 24px 64px rgba(11, 31, 51, 0.28);
  animation: modalScaleIn 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 92vh;
  overflow-y: auto;
}

@keyframes modalScaleIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--navy-deep);
}

.modal-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky-blue-light);
  color: var(--royal-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.modal-icon-success {
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.12);
  color: #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
}

/* Indian Phone Input Group with +91 Prefix */
.phone-input-group {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.phone-input-group:focus-within {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.12);
}

.phone-input-group.invalid {
  border-color: #EF4444 !important;
}

.phone-country-code {
  background: #F1F5F9;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 13.5px;
  padding: 0 12px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-right: 1px solid var(--border-light);
  user-select: none;
  flex-shrink: 0;
}

.phone-country-code i {
  font-size: 11px;
  color: var(--royal-blue);
}

.phone-input-group input[type="tel"] {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  height: 42px;
  padding: 0 12px;
  font-size: 14.5px;
  color: var(--navy-deep);
  width: 100%;
  outline: none;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.phone-error-msg {
  color: #DC2626;
  font-size: 12px;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

.phone-error-msg.visible {
  display: block;
}

/* Tour Card Starting Price & Inclusions */
.package-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.package-price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.package-price-val {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-deep);
}

.package-price-val span {
  color: var(--orange-accent);
}

.package-inclusions-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.package-incl-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #047857;
  background: #ECFDF5;
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid #A7F3D0;
}

.package-incl-tag i {
  font-size: 10px;
}

.package-actions-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.package-actions-row .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
  padding: 9px 10px;
  font-size: 12.5px;
  white-space: nowrap;
}

.package-actions-row .btn-outline {
  background: transparent;
  border: 1.5px solid var(--royal-blue);
  color: var(--royal-blue);
}

.package-actions-row .btn-outline:hover {
  background: var(--royal-blue);
  color: #ffffff;
}

/* ==========================================================================
   23. MOBILE BOTTOM STICKY BAR & QUICK ACTIONS
   ========================================================================== */
.mobile-action-bar {
  display: none !important;
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 18px rgba(11, 31, 51, 0.12);
  z-index: 999;
  padding: 6px 10px;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 64px !important;
  }
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  max-width: 100%;
  margin: 0 auto;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 7px 4px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-align: center;
  border: none;
  cursor: pointer;
  line-height: 1.15;
}

.mobile-bottom-btn i {
  font-size: 15px;
}

.mobile-bottom-btn.btn-blue {
  background: var(--royal-blue-light);
  color: var(--royal-blue);
}

.mobile-bottom-btn.btn-wa {
  background: rgba(34, 197, 94, 0.12);
  color: #16A34A;
}

.mobile-bottom-btn.btn-dark {
  background: var(--bg-soft);
  color: var(--navy-deep);
}

.mobile-bottom-btn.btn-orange {
  background: var(--orange-accent);
  color: var(--white);
}

.mobile-bottom-btn:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

/* ==========================================================================
   26. TARIFF TABLE & ENHANCED CAB CARDS
   ========================================================================== */
.tariff-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 14px;
}

.tariff-table th {
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.tariff-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: middle;
}

.tariff-table tbody tr:nth-child(even) {
  background: #F8FAFC;
}

.tariff-table tbody tr:hover {
  background: rgba(23, 105, 170, 0.05);
}

.tariff-table td strong {
  color: var(--navy-deep);
}

.tariff-table .table-vehicle-name {
  font-weight: 700;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tariff-table .rate-highlight {
  color: var(--royal-blue);
  font-weight: 700;
}

.cab-card-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 12.5px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cab-card-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cab-card-features-list li i {
  color: #10B981;
  font-size: 11px;
}


/* ==========================================================================
   27. CAB ROUTES & PACKAGES MOBILE RESPONSIVENESS
   ========================================================================== */

/* Main 2-column Route / Package Layout */
.route-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 992px) {
  .route-page-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .route-page-layout aside {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .route-page-layout {
    gap: 20px !important;
  }

  .route-page-layout > div > div {
    padding: 20px 16px !important;
  }

  .route-page-layout aside > div {
    padding: 22px 16px !important;
  }
}

/* Route Stats Grid (Distance, Duration, Service Type, Starting Fare) */
.route-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

@media (max-width: 992px) {
  .route-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .route-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .route-stats-grid > div {
    padding: 10px 6px !important;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
  }

  .route-stats-grid > div > div:first-child {
    font-size: 11px !important;
  }

  .route-stats-grid > div > div:last-child {
    font-size: 14px !important;
  }
}

/* Popular Cab Routes & Packages Grid (cabs.html) */
.cab-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

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

@media (max-width: 992px) {
  .cab-routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 580px) {
  .cab-routes-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.cab-route-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.cab-route-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--royal-blue);
}

.cab-route-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cab-route-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.cab-route-title {
  font-size: 16px;
  color: var(--navy-deep);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.cab-route-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.cab-route-btn {
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  text-align: center;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 100%;
  transition: all var(--transition-fast);
  text-decoration: none;
}

/* Mobile Hero Buttons & Form Optimization */
@media (max-width: 600px) {
  .inner-hero-content .btn,
  .inner-hero-content .btn-lg {
    width: 100% !important;
    min-height: 46px !important;
    justify-content: center !important;
    font-size: 14px !important;
    padding: 10px 16px !important;
  }
}

/* Touch Scrolling for Tables */
.tariff-table-wrap {
  -webkit-overflow-scrolling: touch;
  position: relative;
}

/* Form input box-sizing reset */
.booking-tab-form input,
.booking-tab-form select,
.booking-tab-form textarea {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

/* Package List Items (family-tour-packages & temple-tour-packages) */
.package-circuit-item {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.package-circuit-item:hover {
  border-color: var(--orange-accent);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 640px) {
  .package-circuit-item {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .package-circuit-item .btn {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    text-align: center;
  }
}

/* Package Card Dual Buttons on Narrow Phones */
@media (max-width: 420px) {
  .service-card-expanded div[style*="margin-top: auto; display: flex; gap: 8px;"] {
    flex-direction: column !important;
  }
}

/* ==========================================================================
   28. RATE NOTICE BOX
   ========================================================================== */
.rate-notice-box {
  background: #FFFDF5;
  border: 1px solid #FDE68A;
  border-left: 4px solid #3FA9F5;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13.5px;
  color: #451A03;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(11, 31, 51, 0.04);
  box-sizing: border-box;
}

.rate-notice-box strong {
  color: #92400E;
  font-weight: 700;
}

.rate-notice-box.listing-notice {
  max-width: 960px;
  margin: 0 auto 24px;
  text-align: left;
}

.rate-notice-box.compact {
  background: #FFFDF5;
  border: 1px solid #FDE68A;
  border-left: 3.5px solid #3FA9F5;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1.45;
  margin: 12px 0 16px;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .rate-notice-box {
    padding: 9px 12px;
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 18px;
  }
  
  .rate-notice-box.compact {
    padding: 7px 10px;
    font-size: 11.5px;
    margin: 10px 0 14px;
  }
}


/* ==========================================================================
   29. CABS PAGE - COMPREHENSIVE MOBILE RESPONSIVENESS
   ========================================================================== */

/* --- Cab card: comfortable padding & layout on small screens --- */
@media (max-width: 600px) {
  .cabs-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cab-card {
    padding: 0;
    width: 100%;
  }

  .cab-card-img-wrap {
    height: 190px;
  }

  .cab-card-body {
    padding: 20px 16px 24px;
  }

  .cab-card-title {
    font-size: 19px;
  }

  .cab-card-price {
    font-size: 24px;
  }
}

/* --- Cab card dual buttons: stack on tiny phones (< 420px) --- */
@media (max-width: 420px) {
  .cab-card div[style*="margin-top: auto"] {
    flex-direction: column !important;
  }

  .cab-card div[style*="margin-top: auto"] .btn {
    flex: none !important;
    width: 100% !important;
    min-height: 44px !important;
    justify-content: center !important;
  }
}

/* --- Tariff table: reduced cell padding + scroll shadow on mobile --- */
@media (max-width: 768px) {
  .tariff-table-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(11,31,58,0.08));
    pointer-events: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    z-index: 1;
  }

  .tariff-table th,
  .tariff-table td {
    padding: 11px 14px;
    font-size: 13px;
  }

  .tariff-disclaimer-box {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-start !important;
  }
}

/* --- Cab booking form: reduce padding & prevent iOS zoom on mobile --- */
@media (max-width: 600px) {
  #cabBookingSection .page-container > div {
    padding: 24px 16px !important;
    border-radius: var(--radius-lg) !important;
  }

  /* Prevents iOS auto-zoom (font-size >= 16px required) */
  #dedicatedCabForm input,
  #dedicatedCabForm select,
  #dedicatedCabForm textarea {
    font-size: 16px !important;
  }

  #dedicatedCabForm button[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    font-size: 15px !important;
  }
}

/* --- Cab route cards: 1-col on small phones --- */
@media (max-width: 480px) {
  .cab-routes-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .cab-route-card {
    padding: 16px;
  }
}

/* --- Service cards: padding reduction on mobile --- */
@media (max-width: 600px) {
  .service-card-expanded {
    padding: 20px 18px;
  }
}

/* --- Final CTA banner buttons: stack on mobile --- */
@media (max-width: 480px) {
  .inner-cta-btns {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100%;
  }

  .inner-cta-btns .btn,
  .inner-cta-btns a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* --- FAQ questions: larger tap target on mobile --- */
@media (max-width: 600px) {
  .faq-q {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* --- Prevent horizontal overflow on cabs page sections --- */
@media (max-width: 768px) {
  #vehicles,
  #tariff,
  #services,
  #cabBookingSection,
  #whyChooseUs,
  #faq,
  #finalCTA {
    overflow-x: hidden;
  }
}


/* --- Cabs Hero Buttons: responsive grid on mobile --- */
@media (max-width: 520px) {
  .cabs-hero-btns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .cabs-hero-btns .btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 13.5px !important;
    padding: 10px 8px !important;
    text-align: center !important;
  }
}

/* --- Cabs Hero Trust Bar: 2-column grid on mobile --- */
@media (max-width: 520px) {
  .cabs-hero-trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 14px !important;
    margin-top: 20px !important;
  }
}

/* --- Tariff scroll hint: show on mobile --- */
@media (max-width: 768px) {
  .tariff-mobile-hint {
    display: block !important;
  }
}


/* ==========================================================================
   30. CABS SUB-PAGES — MOBILE RESPONSIVENESS (cabs/*.html)
   All 14 route & service pages share the same route-page-layout pattern.
   ========================================================================== */

/* --- Hero CTA Buttons: 2-col grid on small phones --- */
@media (max-width: 520px) {
  .inner-page-hero div[style*="display: flex; flex-wrap: wrap; gap: 12px"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .inner-page-hero div[style*="display: flex; flex-wrap: wrap; gap: 12px"] .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 13px !important;
    padding: 10px 6px !important;
  }
}

/* --- Route Stats Bar: compact text on mobile --- */
@media (max-width: 600px) {
  .route-stats-grid > div > div:last-child {
    font-size: 15px !important;
    word-break: break-word;
  }

  .route-stats-grid > div > div:first-child {
    font-size: 11px !important;
  }
}

/* --- Main Content Cards: reduce padding on mobile --- */
@media (max-width: 640px) {
  .route-page-layout > div > div[style*="padding: 30px"] {
    padding: 18px 16px !important;
  }

  .route-page-layout > div > div[style*="padding: 28px"] {
    padding: 16px 14px !important;
  }
}

/* --- Aside booking card: reduce padding on mobile --- */
@media (max-width: 640px) {
  .route-page-layout aside > div[style*="padding: 26px"] {
    padding: 20px 16px !important;
  }

  .route-page-layout aside > div[style*="padding: 20px"] {
    padding: 16px !important;
  }
}

/* --- Booking form inputs: 16px to prevent iOS auto-zoom --- */
@media (max-width: 768px) {
  .route-page-layout aside input,
  .route-page-layout aside select,
  .route-page-layout aside textarea,
  #cabRouteBookingForm input,
  #cabRouteBookingForm select,
  #cabRouteBookingForm textarea {
    font-size: 16px !important;
    min-height: 44px !important;
  }

  #cabRouteBookingForm input[type="text"],
  #cabRouteBookingForm input[type="tel"],
  #cabRouteBookingForm input[type="date"],
  #cabRouteBookingForm select {
    height: 44px !important;
  }
}

/* --- Sightseeing package cards: reduce padding & stack on mobile --- */
@media (max-width: 640px) {
  div[style*="display: flex; justify-content: space-between; align-items: flex-start"] {
    flex-direction: column !important;
    gap: 12px !important;
  }

  div[style*="display: flex; justify-content: space-between; align-items: flex-start"] > div:last-child {
    width: 100% !important;
  }

  div[style*="display: flex; justify-content: space-between; align-items: flex-start"] .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* --- Section padding reduction on mobile --- */
@media (max-width: 640px) {
  .inner-page-hero {
    min-height: 280px !important;
    padding: 36px 0 !important;
  }

  .page-section[style*="padding: 50px 0"] {
    padding: 36px 0 !important;
  }
}

/* --- Tariff table in sub-pages: scroll hint gradient --- */
@media (max-width: 600px) {
  .route-page-layout .tariff-table-wrap {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .route-page-layout .tariff-table th,
  .route-page-layout .tariff-table td {
    padding: 10px 12px !important;
    font-size: 12.5px !important;
  }

  /* Tariff action buttons in table */
  .route-page-layout .tariff-table .btn {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
}

/* --- FAQ / info cards in sub-pages: reduce padding on mobile --- */
@media (max-width: 640px) {
  div[style*="border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 16px"] {
    padding: 14px !important;
  }

  div[style*="padding: 14px; background: #F8FAFC; border-radius: var(--radius-md)"] {
    padding: 12px !important;
    gap: 10px !important;
  }
}

/* --- Stop number badge: keep circular on all screens --- */
@media (max-width: 480px) {
  div[style*="width: 28px; height: 28px; border-radius: 50%"] {
    flex-shrink: 0 !important;
    min-width: 28px !important;
  }
}

/* --- Help desk card: reduce padding on mobile --- */
@media (max-width: 640px) {
  div[style*="background: #F8FAFC; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 20px"] {
    padding: 16px !important;
  }
}

/* --- Prevent all sub-pages from horizontal overflow --- */
@media (max-width: 768px) {
  .inner-page-hero,
  .route-page-layout,
  .route-page-layout > div,
  .route-page-layout aside {
    overflow-x: hidden;
    max-width: 100%;
  }
}

/* --- WhatsApp floating button: position above mobile bottom bar --- */
@media (max-width: 768px) {
  .floating-wa-btn {
    bottom: 74px !important;
    right: 16px !important;
  }
}



/* ==========================================================
   Hero V2 – Home Page (Modern, Legible, Conversion-Focused)
   ========================================================== */

/* ── Container ── */
#homeHero.hero-v2-container {
  display: block !important;
  min-height: auto !important;
  position: relative;
  background: #060f1e !important;
  color: #ffffff;
  padding: 68px 0 76px !important;
  overflow: hidden;
}

/* ── Background image layer (much more visible with rich color shade) ── */
.hero-v2-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-v2-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: brightness(0.82) saturate(1.18) contrast(1.06);
  transform: scale(1.02);
  transition: transform 16s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

#homeHero:hover .hero-v2-bg-image {
  transform: scale(1.05);
  filter: brightness(0.86) saturate(1.22) contrast(1.08);
}

/* ── Tailored color shade overlay: legible on text side, vibrant on scenery side ── */
.hero-v2-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 20, 42, 0.84) 0%,
    rgba(8, 25, 52, 0.68) 38%,
    rgba(12, 32, 64, 0.42) 70%,
    rgba(7, 18, 38, 0.54) 100%
  );
}

/* ── Warm golden & sapphire ambient glow to complement South India temple tones ── */
.hero-v2-bg-ambient {
  position: absolute;
  top: -15%;
  left: 20%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245, 158, 11, 0.16) 0%,
    rgba(14, 165, 233, 0.12) 42%,
    rgba(14, 165, 233, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: ambientPulse 8s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.06); }
}

/* ── Inner grid ── */
.hero-v2-inner {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 48px;
  align-items: center;
}

/* ── Left column ── */
.hero-v2-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* ── Eyebrow badge ── */
.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #bae6fd;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  cursor: default;
  transition: all 0.25s ease;
}

.hero-v2-eyebrow i {
  color: #38bdf8;
  font-size: 13px;
}

.hero-v2-eyebrow:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: rgba(56, 189, 248, 0.6);
  color: #e0f2fe;
}

/* ── Dominant SEO H1 Heading ── */
.hero-v2-title {
  color: #ffffff;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.6px;
  margin: 0 0 18px 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

/* ── Supporting description ── */
.hero-v2-desc {
  color: #e2e8f0;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.7;
  margin: 0 0 26px 0;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

/* ── CTA action row ── */
.hero-v2-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

/* ── Primary CTA: Plan Your Trip ── */
.hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
  color: #ffffff !important;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(234, 88, 12, 0.45);
  border: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}

.hero-v2-btn-primary:hover {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.58);
  color: #ffffff !important;
}

.hero-v2-btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.hero-v2-btn-primary i {
  transition: transform 0.25s ease;
}

.hero-v2-btn-primary:hover i {
  transform: rotate(15deg);
}

/* ── Secondary CTA: Book a Cab ── */
.hero-v2-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(14, 165, 233, 0.12);
  color: #e0f2fe !important;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  backdrop-filter: blur(8px);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  touch-action: manipulation;
}

.hero-v2-btn-secondary:hover {
  background: rgba(14, 165, 233, 0.25);
  border-color: #38bdf8;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.hero-v2-btn-secondary:active {
  transform: translateY(0) scale(0.99);
}

.hero-v2-btn-secondary i {
  transition: transform 0.25s ease;
}

.hero-v2-btn-secondary:hover i {
  transform: rotate(-10deg);
}

/* ── Compact Trust Strip ── */
.hero-v2-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  padding-top: 4px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: #cbd5e1;
  cursor: default;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-trust-item i {
  color: #22c55e;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-trust-item:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* ── Right column: image showcase ── */
.hero-v2-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Image card ── */
.hero-v2-image-card {
  position: relative;
  width: 100%;
  max-width: 530px;
  aspect-ratio: 16 / 11;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.75),
              0 0 0 1px rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: #0a1628;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.hero-v2-image-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 72px -10px rgba(0, 0, 0, 0.85),
              0 0 0 2px rgba(56, 189, 248, 0.4);
  border-color: rgba(56, 189, 248, 0.45);
}

.hero-v2-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-v2-image-card:hover .hero-v2-photo {
  transform: scale(1.04);
}

.hero-v2-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 15, 30, 0.04) 0%,
    rgba(6, 15, 30, 0.2) 50%,
    rgba(6, 15, 30, 0.92) 100%
  );
  pointer-events: none;
}

/* ── Floating rating badge ── */
.hero-v2-badge-rating {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(6, 15, 30, 0.88);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  cursor: default;
  transition: all 0.25s ease;
}

.hero-v2-badge-rating i {
  color: #f59e0b;
  font-size: 13px;
}

.hero-rating-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11.5px;
}

/* ── Floating info bar ── */
.hero-v2-badge-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 15, 30, 0.9);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  cursor: default;
}

.hero-v2-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.16);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-v2-info-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.hero-v2-info-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.hero-v2-info-sub {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 2px;
}

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-v2-left {
    align-items: center;
    text-align: center;
  }

  .hero-v2-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-v2-actions {
    justify-content: center;
  }

  .hero-v2-trust-strip {
    justify-content: center;
  }

  .hero-v2-image-card {
    max-width: 540px;
  }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {
  #homeHero.hero-v2-container {
    padding: 36px 0 40px !important;
  }

  .hero-v2-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 20, 42, 0.82) 0%,
      rgba(8, 25, 52, 0.64) 45%,
      rgba(7, 18, 38, 0.52) 100%
    );
  }

  .hero-v2-inner {
    padding: 0 16px;
    gap: 24px;
  }

  .hero-v2-title {
    font-size: clamp(24px, 5.8vw, 30px);
    line-height: 1.24;
    margin-bottom: 14px;
  }

  .hero-v2-desc {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .hero-v2-eyebrow {
    font-size: 11px;
    padding: 5px 13px;
    margin-bottom: 14px;
  }

  .hero-v2-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-v2-btn-primary,
  .hero-v2-btn-secondary {
    width: 100%;
    padding: 13px 20px;
    font-size: 14.5px;
  }

  .hero-v2-trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin-bottom: 22px;
    text-align: left;
    width: 100%;
  }

  .hero-trust-item {
    font-size: 12px;
    gap: 6px;
    padding: 2px 0;
  }

  .hero-v2-image-card {
    aspect-ratio: 16 / 10;
    max-height: 220px;
    border-radius: 16px;
  }

  .hero-v2-badge-rating {
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 4px 10px;
  }

  .hero-v2-badge-info {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 10px;
  }

  .hero-v2-info-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
    border-radius: 8px;
  }

  .hero-v2-info-title {
    font-size: 12px;
  }

  .hero-v2-info-sub {
    font-size: 10.5px;
  }
}

/* Homepage Prominent "View All Cabs" CTA Button */
.view-all-cabs-cta-wrap {
  text-align: center;
  margin-top: 36px;
  padding: 8px 0;
}

.btn-view-all-cabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy-deep, #0B1F33) 0%, var(--royal-blue, #1A56DB) 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-view-all-cabs:hover,
.btn-view-all-cabs:focus-visible {
  background: linear-gradient(135deg, var(--royal-blue, #1A56DB) 0%, var(--sky-blue, #0EA5E9) 100%);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45);
}

.btn-view-all-cabs:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(26, 86, 219, 0.3);
}

@media (max-width: 640px) {
  .btn-view-all-cabs {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 15.5px;
  }
}



