/* ==========================================================================
   MAHARAJA CAB - LUXURY TOUR PACKAGE LANDING PAGE STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Color System */
  --navy-dark: #070C1A;
  --navy-deep: #0B132B;
  --navy-card: #101B3B;
  --navy-surface: #192750;
  
  --royal-blue: #1E3A8A;
  --royal-blue-light: #2563EB;
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-bright: #F59E0B;
  --gold-dark: #9A7B1C;
  --gold-gradient: linear-gradient(135deg, #F9E79F 0%, #D4AF37 40%, #B8860B 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.4);
  --gold-border: rgba(212, 175, 55, 0.35);

  --whatsapp-green: #25D366;
  --whatsapp-hover: #20BA56;
  --whatsapp-glow: 0 0 20px rgba(37, 211, 102, 0.4);

  --body-bg: #FAF8F5;
  --surface-white: #FFFFFF;
  --surface-beige: #F4EFE6;
  
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  --border-light: #E2E8F0;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(11, 19, 43, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 19, 43, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 19, 43, 0.12);
  --shadow-dark-card: 0 20px 40px rgba(0, 0, 0, 0.4);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--body-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

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

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

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Section Typography & Badges --- */
.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-dark);
  border: 1px solid var(--gold-border);
}

.section-badge.dark-mode {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.4);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title.light-text {
  color: var(--text-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.section-subtitle.light-text {
  color: #CBD5E1;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}

/* --- Buttons System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #FFF0B3 0%, #E6C230 50%, #B8860B 100%);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #FFFFFF;
  box-shadow: var(--whatsapp-glow);
}

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

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold-primary);
}

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

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   1. STICKY HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 19, 43, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.header-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
  transition: transform var(--transition-fast);
}

.header-logo-img:hover {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--text-white);
  font-size: 1.6rem;
  padding: 0.5rem;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--navy-deep);
  z-index: 1050;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.mobile-nav-links a {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

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

@media (max-width: 1024px) {
  .nav-menu, .header-cta-group {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Fixed Mobile Bottom CTA Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--navy-deep);
  border-top: 1px solid var(--gold-border);
  padding: 0.75rem 1rem;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mobile-sticky-grid .btn {
  padding: 0.75rem;
  font-size: 0.9rem;
}

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

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  background: linear-gradient(135deg, rgba(7, 12, 26, 0.88) 0%, rgba(11, 19, 43, 0.78) 50%, rgba(7, 12, 26, 0.92) 100%),
              url('https://images.unsplash.com/photo-1599661046289-e31897846e41?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  color: var(--text-white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--text-white);
}

.hero-title .text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin-bottom: 2.2rem;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-chip svg {
  color: var(--gold-primary);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Floating Quick Quote Form Card */
.hero-form-card {
  background: rgba(16, 27, 59, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px 3px 0 0;
}

.form-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.form-header p {
  font-size: 0.85rem;
  color: #94A3B8;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.form-control option {
  background: var(--navy-deep);
  color: var(--text-white);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
}

/* ==========================================================================
   TRUST STATS BAR
   ========================================================================== */
.trust-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 1.8rem 0;
  color: var(--text-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.88rem;
  color: #94A3B8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ==========================================================================
   3. DESTINATIONS SECTION
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

.dest-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .dest-img-wrapper img {
  transform: scale(1.08);
}

.dest-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-border);
}

.dest-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dest-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy-deep);
  margin-bottom: 0.2rem;
}

.dest-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.9rem;
}

.dest-highlights {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   4. FEATURED TOUR PACKAGE
   ========================================================================== */
.featured-package-section {
  background: var(--navy-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.featured-card {
  background: linear-gradient(145deg, var(--navy-card) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-dark-card);
  position: relative;
}

.package-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.package-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

/* Route Visualization Line */
.route-visualizer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto 3rem auto;
  padding: 1.5rem 0;
}

.route-line {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary) 0%, rgba(212, 175, 55, 0.4) 100%);
  z-index: 1;
  transform: translateY(-50%);
}

.route-node {
  position: relative;
  z-index: 2;
  background: var(--navy-card);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.node-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-primary);
}

.node-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
}

.package-highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
}

.highlight-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.highlight-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

@media (max-width: 900px) {
  .route-visualizer {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .route-line {
    display: none;
  }
  .package-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   5. ITINERARY SECTION (VERTICAL TIMELINE)
   ========================================================================== */
/* Itinerary Tab Switcher Navigation */
.itinerary-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.itinerary-tab-btn {
  background: var(--surface-white);
  color: var(--navy-deep);
  border: 1.5px solid var(--border-light);
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.itinerary-tab-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.itinerary-tab-btn.active {
  background: var(--navy-deep);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(11, 19, 43, 0.2);
}

.itinerary-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.itinerary-panel.active {
  display: block;
}

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

.itinerary-timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 0;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 38px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-primary) 0%, rgba(212, 175, 55, 0.2) 100%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  padding-left: 85px;
  margin-bottom: 2.5rem;
}

.timeline-day-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 3px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.day-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.day-text {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timeline-content-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.timeline-content-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-lg);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.2rem;
}

.timeline-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.timeline-list li::before {
  content: '✦';
  color: var(--gold-primary);
  font-size: 0.8rem;
}

.itinerary-bottom-box {
  margin-top: 3.5rem;
  text-align: center;
  background: var(--surface-beige);
  border: 1px solid var(--gold-border);
  padding: 2.2rem;
  border-radius: var(--radius-xl);
}

.itinerary-bottom-box h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 0.8rem;
}

@media (max-width: 640px) {
  .itinerary-timeline::before {
    left: 24px;
  }
  .timeline-day-badge {
    width: 50px;
    height: 50px;
    left: 0;
  }
  .day-number {
    font-size: 0.95rem;
  }
  .day-text {
    font-size: 0.55rem;
  }
  .timeline-item {
    padding-left: 65px;
  }
  .timeline-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   6. CUSTOM TOUR SECTION
   ========================================================================== */
.custom-tour-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.custom-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.custom-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.custom-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.4rem auto;
  border: 1px solid var(--gold-border);
}

.custom-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}

.custom-card p {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .custom-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. WHY CHOOSE MAHARAJA CAB
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy-deep);
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   8. VEHICLE FLEET SECTION
   ========================================================================== */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.vehicle-card {
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.vehicle-img-box {
  height: 190px;
  background: #F1F5F9;
  position: relative;
  overflow: hidden;
}

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

.vehicle-capacity-tag {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: var(--navy-deep);
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-sm);
}

.vehicle-price-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--gold-gradient);
  color: var(--navy-deep);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.card-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

@media (min-width: 480px) {
  .card-btn-group.horizontal {
    flex-direction: row;
  }
  .card-btn-group.horizontal .btn {
    flex: 1;
  }
}

.vehicle-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}

.vehicle-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1rem 0 1.5rem 0;
  flex-grow: 1;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 1100px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. HOW IT WORKS
   ========================================================================== */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.25);
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

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

@media (max-width: 900px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 500px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   10. TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.star-rating {
  color: var(--gold-bright);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-name {
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 0.95rem;
}

.reviewer-route {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   11. FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--surface-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.4rem 1.8rem;
  width: 100%;
  text-align: left;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-primary);
  color: var(--navy-deep);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 1.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.4rem 1.8rem;
}

/* ==========================================================================
   12. FINAL CINEMATIC CTA
   ========================================================================== */
.final-cta-section {
  background: linear-gradient(135deg, rgba(7, 12, 26, 0.92) 0%, rgba(11, 19, 43, 0.88) 100%),
              url('https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--text-white);
  text-align: center;
  padding: 5rem 1.5rem;
}

.phone-display {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-primary);
  margin: 1.5rem 0 2.5rem 0;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-border);
}

/* ==========================================================================
   13. ENQUIRY FORM SECTION
   ========================================================================== */
.enquiry-section {
  background: var(--body-bg);
}

.enquiry-card-wrapper {
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 3rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.enquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.enquiry-form-grid .full-width {
  grid-column: span 2;
}

.enquiry-form-grid label {
  color: var(--text-main);
}

.enquiry-form-grid .form-control {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: var(--text-main);
}

.enquiry-form-grid .form-control:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.enquiry-form-grid .form-control option {
  background: #FFFFFF;
  color: var(--text-main);
}

.form-success-message {
  display: none;
  background: #F0FDF4;
  border: 1.5px solid #22C55E;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: #15803D;
  margin-top: 1rem;
}

.form-success-message h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
  .enquiry-form-grid {
    grid-template-columns: 1fr;
  }
  .enquiry-form-grid .full-width {
    grid-column: span 1;
  }
}

/* ==========================================================================
   14. FLOATING WHATSAPP BUTTON & FOOTER
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 998;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  animation: pulse-ring 2s infinite;
  transition: transform var(--transition-bounce);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 5.5rem;
    right: 1.2rem;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }
}

.footer {
  background: var(--navy-dark);
  color: #94A3B8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid var(--gold-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
