/* ==========================================================================
   HAPPY JOURNEY CABS — ROYAL RAJASTHAN LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette */
  --royal-maroon: #6A1B29;
  --royal-maroon-dark: #4A121C;
  --royal-maroon-light: #8C283B;
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #B59021;
  --sandstone: #D2B48C;
  --sandstone-light: #E8DFD1;
  --ivory: #FAF9F6;
  --ivory-pure: #FFFFFF;
  --dark-brown: #2C1E16;
  --dark-charcoal: #161210;
  --emerald: #0F52BA;
  --emerald-green: #00A86B;
  --text-dark: #221C1A;
  --text-muted: #6B625D;
  --border-gold: rgba(212, 175, 55, 0.4);
  --border-subtle: rgba(44, 30, 22, 0.1);
  --glass-bg: rgba(250, 249, 246, 0.88);
  --glass-dark: rgba(22, 18, 16, 0.95);
  
  /* Typography & Font Families */
  --font-heading: 'Cinzel', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Responsive Fluid Typography with CSS clamp() */
  --font-size-h1: clamp(1.85rem, 4vw + 0.5rem, 3.25rem);
  --font-size-h2: clamp(1.45rem, 3vw + 0.4rem, 2.4rem);
  --font-size-h3: clamp(1.18rem, 2.2vw + 0.3rem, 1.65rem);
  --font-size-h4: clamp(1.05rem, 1.5vw + 0.2rem, 1.25rem);
  --font-size-body: clamp(0.92rem, 0.4vw + 0.8rem, 1.05rem);
  
  /* Responsive Fluid Spacings with CSS clamp() */
  --spacing-section-py: clamp(50px, 8vw, 100px);
  --spacing-grid-gap: clamp(1.25rem, 2.5vw, 2.5rem);
  
  /* Shadows & Effects */
  --shadow-sm: 0 4px 12px rgba(44, 30, 22, 0.06);
  --shadow-md: 0 10px 30px rgba(44, 30, 22, 0.12);
  --shadow-lg: 0 20px 50px rgba(106, 27, 41, 0.18);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.35);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   UNIVERSAL RESET & ZERO-OVERFLOW SAFEGUARDS
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14.5px;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
  background-image: radial-gradient(var(--border-gold) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Zero Overflow Safeguards for Images & Media */
img, video, canvas, svg, iframe {
  max-width: 100% !important;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Universal Text & Box Wrapping Protection against Horizontal Truncation */
p, h1, h2, h3, h4, h5, h6, span, a, li, td, th, div, label {
  max-width: 100%;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  box-sizing: border-box !important;
}

/* Ensure no flex or grid child ever pushes its parent container wider than 100% */
.hero-grid > *, .footer-grid > *, .grid-4 > *, .grid-3 > *, .grid-2 > *, .form-row > *, .jharokha-card > *, .quick-booking-box > *, .container > *, .section-padding > * {
  min-width: 0 !important;
  max-width: 100% !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-brown);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.5px;
  max-width: 100%;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ==========================================================================
   UTILITIES & DECORATIONS
   ========================================================================== */
.text-gold { color: var(--gold); }
.text-maroon { color: var(--royal-maroon); }
.text-center { text-align: center; }

/* Rajasthani Royal Badge & Subtitle */
.royal-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.5vw, 0.88rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--royal-maroon);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(250, 249, 246, 0.8));
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  margin: 0.35rem auto 1.15rem 0 !important;
}
.royal-subtitle::before, .royal-subtitle::after {
  content: none !important;
  display: none !important;
}

/* Decorative Divider */
.royal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.25rem 0 2.5rem;
  gap: 1rem;
}
.royal-divider span {
  width: clamp(40px, 10vw, 80px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.royal-divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.royal-divider i {
  color: var(--royal-maroon);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

/* Accessibility & Touch Target Optimization */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Buttons (Minimum 48px Touch Targets) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: clamp(0.85rem, 1.5vw, 1rem) clamp(1.4rem, 2.5vw, 2.2rem);
  min-height: 48px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.88rem, 1.2vw, 0.96rem);
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, var(--royal-maroon), var(--royal-maroon-dark));
  color: var(--ivory);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-md);
}

@media (hover: hover) {
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--royal-maroon-dark), #330B13);
    color: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
  }
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-brown);
  border: 1px solid #FFF;
  box-shadow: var(--shadow-gold);
}

@media (hover: hover) {
  .btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--dark-charcoal);
    transform: translateY(-2px);
  }
}

.btn-outline {
  background: transparent;
  color: var(--royal-maroon);
  border: 2px solid var(--royal-maroon);
}

@media (hover: hover) {
  .btn-outline:hover {
    background: var(--royal-maroon);
    color: var(--ivory);
    border-color: var(--gold);
  }
}

.btn:active {
  transform: scale(0.97);
  opacity: 0.95;
}

/* Jharokha Arch Card Effect */
.jharokha-card {
  background: var(--ivory-pure);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.jharokha-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--royal-maroon), var(--gold), var(--royal-maroon));
}
@media (hover: hover) {
  .jharokha-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition);
}

.header-top {
  background: var(--royal-maroon-dark);
  color: var(--gold-light);
  padding: 0.4rem 0;
  font-size: clamp(0.78rem, 1vw, 0.86rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
}
@media (max-width: 1280px) {
  .header-top-container {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}
.contact-pills {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  flex-wrap: wrap;
}
.contact-pills a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ivory);
  min-height: 28px;
}
.contact-pills a:hover { color: var(--gold); }

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

.logo {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.8rem);
  min-height: 48px;
}
.logo-icon {
  width: clamp(40px, 4vw, 48px);
  height: clamp(40px, 4vw, 48px);
  background: linear-gradient(135deg, var(--royal-maroon), var(--gold));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 10px rgba(106, 27, 41, 0.3);
}
.logo-img {
  width: clamp(44px, 4.5vw, 56px);
  height: clamp(44px, 4.5vw, 56px);
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 10px rgba(106, 27, 41, 0.3);
  background: #fff;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .logo:hover .logo-img {
    transform: scale(1.06);
  }
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--royal-maroon);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.logo-tagline {
  font-size: clamp(0.65rem, 1vw, 0.72rem);
  color: var(--dark-brown);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: clamp(1rem, 1.5vw, 1.6rem);
  align-items: center;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  color: var(--dark-brown);
  position: relative;
  padding: 0.5rem 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--royal-maroon);
  transition: var(--transition);
}
@media (hover: hover) {
  .nav-link:hover::after, .nav-link.active::after {
    width: 100%;
  }
}
.nav-link:hover, .nav-link.active {
  color: var(--royal-maroon);
}

/* Nav Dropdown */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: var(--ivory);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-top: 3px solid var(--royal-maroon);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  border-radius: 0 0 8px 8px;
  padding: 0.5rem 0;
  display: none;
  z-index: 99999;
}
@media (min-width: 1024px) {
  .nav-item-dropdown:hover .nav-dropdown-menu,
  .nav-item-dropdown:focus-within .nav-dropdown-menu,
  .nav-item-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }
}
.nav-dropdown-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--charcoal-dark) !important;
  font-size: 0.92rem !important;
  padding: 0.65rem 1.25rem !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}
.nav-dropdown-menu a:last-child {
  border-bottom: none;
}
@media (hover: hover) {
  .nav-dropdown-menu a:hover {
    background: var(--sandstone-light) !important;
    color: var(--royal-maroon) !important;
    padding-left: 1.6rem !important;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--royal-maroon);
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

/* ==========================================================================
   HERO BANNER & QUICK BOOKING FORM
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: clamp(550px, 85vh, 850px);
  padding: clamp(165px, 16.5vh, 205px) 0 clamp(65px, 8vh, 85px) !important;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(22, 18, 16, 0.78), rgba(106, 27, 41, 0.72)), url('/assets/images/hero-banner.jpg') center/cover no-repeat;
  color: var(--ivory);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--ivory), transparent);
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  color: var(--ivory);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--sandstone-light);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-features {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  color: var(--gold-light);
}
.hero-feature-item i {
  width: 36px;
  height: 36px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* Quick Booking Box */
.quick-booking-box {
  background: var(--ivory-pure);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
  color: var(--text-dark);
  position: relative;
  width: 100%;
}
.quick-booking-box::before {
  content: '✦ ROYAL RAJASTHAN BOOKING ✦';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--royal-maroon);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 1vw, 0.75rem);
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold);
  white-space: nowrap;
}

.booking-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.booking-tab {
  flex: 1;
  padding: 0.7rem 0.9rem;
  min-height: 44px;
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1vw, 0.82rem);
  font-weight: 700;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  touch-action: manipulation;
}
.booking-tab.active, .booking-tab:hover {
  background: var(--royal-maroon);
  color: var(--ivory);
}

.form-group {
  margin-bottom: 1.1rem;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-brown);
  margin-bottom: 0.4rem;
}
.form-input, .form-select {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text-dark);
  background: #FFF;
  transition: var(--transition);
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--royal-maroon);
  box-shadow: 0 0 0 3px rgba(106, 27, 41, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-padding {
  padding: var(--spacing-section-py) 0;
  position: relative;
}
.section-bg-sand { background-color: var(--sandstone-light); }
.section-bg-maroon {
  background: linear-gradient(135deg, var(--royal-maroon-dark), var(--dark-charcoal));
  color: var(--ivory);
}
.section-bg-maroon h2 { color: var(--ivory); }

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-grid-gap);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-grid-gap);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-grid-gap);
}

/* Fleet Card */
.fleet-card {
  background: var(--ivory-pure);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (hover: hover) {
  .fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }
}
.fleet-img-wrap {
  position: relative;
  height: clamp(180px, 22vw, 220px);
  overflow: hidden;
  background: linear-gradient(135deg, #EAE5DE, #D6CEBE);
  flex-shrink: 0;
}
.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (hover: hover) {
  .fleet-card:hover .fleet-img-wrap img {
    transform: scale(1.08);
  }
}
.fleet-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--royal-maroon);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold);
}
.fleet-content {
  padding: clamp(1.2rem, 2vw, 1.6rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fleet-specs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0.8rem 0;
  border-top: 1px dashed var(--border-subtle);
  border-bottom: 1px dashed var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.fleet-specs span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.fleet-features {
  margin-bottom: 1.5rem;
}
.fleet-features li {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fleet-features li::before {
  content: '✓';
  color: var(--emerald-green);
  font-weight: bold;
}
.fleet-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}
.fleet-price {
  font-family: var(--font-heading);
  color: var(--royal-maroon);
}
.fleet-price-amount {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  font-weight: 800;
}
.fleet-price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Tour & Destination Cards */
.tour-card {
  background: var(--ivory-pure);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (hover: hover) {
  .tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
}
.tour-img {
  height: clamp(190px, 25vw, 240px);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (hover: hover) {
  .tour-card:hover .tour-img img { transform: scale(1.08); }
}
.tour-duration {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(22, 18, 16, 0.85);
  color: var(--gold-light);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--gold);
}

/* Pricing Table / Cards */
.pricing-card {
  background: var(--ivory-pure);
  border-radius: var(--radius-md);
  padding: clamp(1.8rem, 3vw, 2.5rem) clamp(1.2rem, 2.5vw, 2rem);
  text-align: center;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark-brown);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 1.2rem;
  border-radius: var(--radius-full);
}
.pricing-title {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 0.5rem;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--royal-maroon);
  margin: 1.2rem 0;
}
.pricing-list {
  text-align: left;
  margin: 1.8rem 0;
  flex: 1;
}
.pricing-list li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--border-subtle);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: #FFF;
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.testimonial-quote {
  font-style: italic;
  font-size: clamp(0.92rem, 1.2vw, 0.98rem);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--royal-maroon);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Gallery & Blog Cards */
.gallery-card, .blog-card {
  background: var(--ivory-pure);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}
@media (hover: hover) {
  .gallery-card:hover, .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
}

/* FAQ Accordion */
.faq-item {
  background: var(--ivory-pure);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2.5vw, 1.5rem);
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 700;
  color: var(--dark-brown);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  touch-action: manipulation;
}
.faq-answer {
  padding: 0 clamp(1rem, 2.5vw, 1.5rem);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--text-muted);
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
}
.faq-item.active .faq-answer {
  padding: 0 clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 2vw, 1.25rem);
  max-height: 600px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--royal-maroon);
}

/* ==========================================================================
   FOOTER & FLOATING ACTIONS
   ========================================================================== */
.site-footer {
  background: var(--dark-charcoal);
  color: var(--sandstone-light);
  padding: clamp(60px, 8vw, 80px) 0 30px;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 3vw, 3rem);
  margin-bottom: 3rem;
}
.footer-title {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
@media (hover: hover) {
  .footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
  }
}
.footer-contact li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
}
.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  font-size: clamp(0.78rem, 1.2vw, 0.85rem);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease;
  touch-action: manipulation;
}
@media (hover: hover) {
  .floating-whatsapp:hover {
    transform: scale(1.1) rotate(8deg);
    background-color: #1EBE5D;
  }
}

/* Sticky Mobile Call Bar */
.sticky-mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--royal-maroon-dark);
  z-index: 999;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}
.sticky-mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem;
  min-height: 48px;
  color: #FFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  touch-action: manipulation;
}
.sticky-btn.call-btn { background: var(--royal-maroon); }
.sticky-btn.wa-btn { background: #25D366; }

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 18, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--ivory-pure);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--emerald-green);
  color: #FFF;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 3000;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast-notice.show { transform: translateX(0); }

/* Responsive Tables with Horizontal Touch Scrolling */
.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
th {
  background: var(--sandstone-light);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-brown);
}

/* ==========================================================================
   14-TIER UNIVERSAL EXACT BREAKPOINT ENGINE (2560px to 320px)
   ========================================================================== */

/* 1. Ultra-Wide & 4K High-Resolution Displays (min-width: 2560px) */
@media (min-width: 2560px) {
  html { font-size: 18px; }
  .container {
    max-width: 2000px !important;
  }
  .nav-container { height: 96px; }
  .hero-section { padding: 195px 0 95px !important; }
}

/* 2. 2K & Large Monitors (min-width: 1920px and max-width: 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
  html { font-size: 16px; }
  .container {
    max-width: 1680px !important;
  }
  .hero-section { padding: 185px 0 90px !important; }
}

/* 3. Large Laptops / MacBook Pro 16 (min-width: 1536px and max-width: 1919px) */
@media (min-width: 1536px) and (max-width: 1919px) {
  html { font-size: 15px; }
  .container {
    max-width: 1440px !important;
  }
  .hero-section { padding: 175px 0 85px !important; }
}

/* 4. Standard Desktop (min-width: 1440px and max-width: 1535px) */
@media (min-width: 1440px) and (max-width: 1535px) {
  html { font-size: 14.5px; }
  .container {
    max-width: 1320px !important;
  }
  .hero-section { padding: 168px 0 80px !important; }
}

/* 5. Standard Laptops / MacBook Air (min-width: 1280px and max-width: 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
  html { font-size: 14px; }
  .container {
    max-width: 1200px !important;
  }
  .nav-menu { gap: 1.2rem; }
  .nav-link { font-size: 0.9rem; }
  .hero-section { padding: 165px 0 78px !important; }
}

/* 6. Small Laptops / iPad Pro Landscape (min-width: 1024px and max-width: 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  html { font-size: 13.8px; }
  .container {
    max-width: 980px !important;
  }
  .nav-menu { gap: 0.8rem; }
  .nav-link { font-size: 0.85rem; }
  .logo-img { width: 44px; height: 44px; }
  .logo-title { font-size: 1.2rem; }
  .hero-section { padding: 160px 0 75px !important; }
}

/* 7. Tablets Landscape / iPad Air & Pro Portrait (max-width: 1023px) */
@media (max-width: 1023px) {
  /* Activate Compact Drawer Navigation for Tablets & iPad so 11 items never wrap */
  .hamburger {
    display: flex !important;
    margin-left: auto !important;
  }
  .header-top { display: none !important; }

  .nav-container {
    height: 74px !important;
    padding: 0 1.5rem !important;
  }
  .hero-section {
    padding: 135px 0 65px !important;
  }
  .logo-img {
    width: 44px !important;
    height: 44px !important;
  }
  .logo-title {
    font-size: 1.22rem !important;
    letter-spacing: 0px !important;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    right: 0;
    left: auto;
    width: 85%;
    max-width: 360px;
    height: calc(100vh - 74px);
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.8rem 1.5rem 4rem;
    align-items: flex-start;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 25px rgba(0,0,0,0.6);
    z-index: 1500;
  }
  .nav-menu.open { transform: translateX(0) !important; }
  .nav-link {
    color: var(--ivory) !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    padding: 0.85rem 0 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
  }

  /* Mobile/Tablet Dropdown Drawer Submenu */
  .nav-item-dropdown {
    position: static !important;
    width: 100% !important;
  }
  .nav-dropdown-menu {
    position: static !important;
    display: none;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 2px solid var(--gold) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 0.2rem 0 0.5rem 0.8rem !important;
    margin: 0.4rem 0 !important;
  }
  .nav-item-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }
  .nav-dropdown-menu a {
    color: var(--ivory) !important;
    padding: 0.6rem 0.8rem !important;
    font-size: 0.95rem !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
  }

  /* Tablet Grid Collapses to 2 Columns */
  .grid-4, .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .hero-content h1, h1 {
    font-size: clamp(1.65rem, 4.8vw, 2.35rem) !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }
  h2 {
    font-size: clamp(1.35rem, 4.2vw, 1.85rem) !important;
    line-height: 1.3 !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2.5rem !important;
  }
  /* Form inputs stack universally on screens <= 1024px so fields are never cramped */
  .form-row, .grid-split-2, .grid-split-3, .contact-split {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Booking tabs wrap cleanly in 2x2 grid so no tab is ever cut off */
  .booking-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.6rem !important;
    width: 100% !important;
    max-width: 100% !important;
    border-bottom: none !important;
    margin-bottom: 1.4rem !important;
  }
  .booking-tab {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 0.7rem 0.5rem !important;
    font-size: 0.85rem !important;
    min-height: 46px !important;
  }
  /* Hero features stack cleanly on <= 1024px to give full text width */
  .hero-features {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.85rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    font-size: 0.92rem !important;
    text-align: left !important;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
  }
  .royal-subtitle {
    display: inline-block !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    line-height: 1.4 !important;
    letter-spacing: 1px !important;
    padding: 0.4rem 0.9rem !important;
  }
  /* Override inline split layouts across pages on Tablet */
  [style*="grid-template-columns: 1fr 1.6fr"],
  [style*="grid-template-columns: 1fr 1.5fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }
}

/* 8. Tablets Portrait (min-width: 768px and max-width: 819px) */
@media (min-width: 768px) and (max-width: 819px) {
  .container {
    padding: 0 1.5rem !important;
  }
  .hero-section {
    padding: 130px 0 60px !important;
  }
}

/* 9. Mobile Phones & Tablets Portrait (< 768px) */
@media (max-width: 767px) {
  html, body {
    font-size: 13.5px !important;
  }
  .container {
    padding: 0 1.2rem !important;
  }
  .nav-container {
    height: 68px !important;
    padding: 0 1.2rem !important;
  }
  .logo { gap: 0.5rem !important; }
  .logo-img { width: 40px !important; height: 40px !important; }
  .logo-title { font-size: 1.15rem !important; line-height: 1.1 !important; }
  .logo-tagline { font-size: 0.65rem !important; letter-spacing: 1px !important; }
  .nav-menu { top: 68px !important; height: calc(100vh - 68px) !important; }

  /* Universal Single Column Stack on Mobile (<768px) */
  .grid-4, .grid-3, .grid-2, .grid-split-3, .grid-split-2, .contact-split, .footer-grid,
  [style*="display: grid"], [style*="display:grid"] {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.4rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Override all inline multi-column styles on Mobile */
  [style*="grid-template-columns:"] {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.4rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Headings & Text Exact Scaling and Wrapping on Mobile */
  .hero-content h1, h1 {
    font-size: clamp(1.38rem, 6vw, 1.85rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
  }
  h2 {
    font-size: clamp(1.25rem, 5vw, 1.62rem) !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
  }
  h3 {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem) !important;
    max-width: 100% !important;
  }
  .royal-subtitle {
    display: inline-block !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.4 !important;
    letter-spacing: 1px !important;
    padding: 0.35rem 0.8rem !important;
    font-size: clamp(0.7rem, 3vw, 0.82rem) !important;
    text-align: center !important;
  }

  /* Hero Adjustments */
  .hero-section {
    padding: 110px 0 50px !important;
    min-height: auto !important;
  }
  .hero-content { text-align: center; }
  .hero-features {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.8rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    font-size: 0.9rem !important;
    text-align: left !important;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 100% !important;
  }
  .hero-content .btn, .quick-booking-box .btn {
    width: 100% !important;
  }

  .pricing-card.featured { transform: none !important; }

  /* Cards & Boxes Exact Fit */
  .jharokha-card, .quick-booking-box, .pricing-card, .modal-box, .fleet-card, .tour-card, .gallery-card, .faq-item {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.4rem !important;
  }
  .quick-booking-box::before {
    font-size: 0.65rem !important;
    padding: 0.2rem 0.6rem !important;
    max-width: 90% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .jharokha-card > div[style*="margin: -"],
  .jharokha-card > div[style*="margin:-"] {
    margin: -1.4rem -1.4rem 1.2rem -1.4rem !important;
    width: calc(100% + 2.8rem) !important;
    max-width: calc(100% + 2.8rem) !important;
  }
  .booking-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-wrap: wrap !important;
    border-bottom: none !important;
    margin-bottom: 1.3rem !important;
  }
  .booking-tab {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 0.65rem 0.4rem !important;
    font-size: 0.82rem !important;
    min-height: 46px !important;
  }

  /* Prevent iOS Safari Automatic Zoom on Inputs & Ensure 1 Column Form Stack */
  input, select, textarea {
    font-size: 16px !important;
  }
  .form-row, .grid-split-2, .grid-split-3, .contact-split {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Sticky Mobile Call Bar & Floating Action Spacing */
  body { padding-bottom: 68px !important; }
  .sticky-mobile-call {
    display: block !important;
  }
  /* Hide floating-whatsapp when sticky call bar is shown to avoid clutter & overlap */
  .floating-whatsapp {
    display: none !important;
  }
  .toast-notice {
    top: auto;
    bottom: 85px;
    right: 16px;
    left: 16px;
    width: auto;
    justify-content: center;
  }
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* 10. Large Phones Landscape / Foldables Unfolded / Small Tablets (min-width: 640px and max-width: 767px) */
@media (min-width: 640px) and (max-width: 767px) {
  /* Allow 2 columns on wide phones/tablets for cards */
  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.25rem !important;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    text-align: left !important;
  }
  .footer-title::after {
    left: 0 !important;
    transform: none !important;
  }
}

/* 11. Standard Phones Landscape / Large Phones Portrait (min-width: 480px and max-width: 639px) */
@media (min-width: 480px) and (max-width: 639px) {
  .container {
    padding: 0 1.1rem !important;
  }
  .hero-content h1, h1 {
    font-size: clamp(1.55rem, 5vw, 1.95rem) !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }
}

/* 12. iPhone 15 / Pro / Plus / Pixel (min-width: 414px and max-width: 479px) */
@media (min-width: 414px) and (max-width: 479px) {
  .container {
    padding: 0 1rem !important;
  }
  .jharokha-card, .quick-booking-box, .pricing-card {
    padding: 1.25rem !important;
  }
}

/* 13. iPhone 12/13/14/15 / Galaxy S23 (min-width: 390px and max-width: 413px) */
@media (min-width: 390px) and (max-width: 413px) {
  .container {
    padding: 0 0.9rem !important;
  }
}

/* 14. iPhone X / 11 / Standard Mobile (min-width: 375px and max-width: 389px) */
@media (min-width: 375px) and (max-width: 389px) {
  .container {
    padding: 0 0.85rem !important;
  }
  .btn {
    padding: 0.75rem 1.2rem !important;
  }
}

/* 15. Small & Narrow Mobile Devices (max-width: 374px / iPhone SE 320px & Fold Cover Screens) */
@media (max-width: 374px) {
  html, body {
    font-size: 12.5px !important;
  }
  .container {
    padding: 0 0.75rem !important;
  }
  .hero-section {
    padding: 95px 0 38px !important;
  }
  .logo-img {
    width: 32px !important;
    height: 32px !important;
  }
  .logo-title {
    font-size: 1.05rem !important;
  }
  .logo-tagline {
    font-size: 0.58rem !important;
  }
  .hero-content h1, h1 {
    font-size: clamp(1.25rem, 6vw, 1.45rem) !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }
  h2 {
    font-size: clamp(1.15rem, 5.5vw, 1.35rem) !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }
  .booking-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.4rem !important;
  }
  .booking-tab {
    font-size: 0.78rem !important;
    padding: 0.55rem 0.25rem !important;
    min-height: 42px !important;
  }
  .jharokha-card, .quick-booking-box, .pricing-card, .modal-box, .fleet-card, .tour-card, .gallery-card, .faq-item {
    padding: 1rem !important;
  }
  .jharokha-card > div[style*="margin: -"],
  .jharokha-card > div[style*="margin:-"] {
    margin: -1rem -1rem 1rem -1rem !important;
    width: calc(100% + 2rem) !important;
    max-width: calc(100% + 2rem) !important;
  }
  .btn {
    width: 100% !important;
    padding: 0.7rem 1rem !important;
    font-size: 0.82rem !important;
  }
  .modal-box {
    width: 95% !important;
    padding: 1.2rem 0.9rem !important;
    max-height: 85vh !important;
  }
  .sticky-btn {
    font-size: 0.8rem !important;
    padding: 0.75rem 0.4rem !important;
  }
}

/* ==========================================================================
   CURATED ROAD TRIPS — LUXURY AIRBNB + MAKEMYTRIP + APPLE DESIGN SYSTEM
   ========================================================================== */
:root {
  --saffron: #FF6B00;
  --saffron-hover: #E56000;
  --saffron-light: rgba(255, 107, 0, 0.12);
  --saffron-glow: rgba(255, 107, 0, 0.28);
  --trip-radius: 20px;
  --trip-shadow: 0 14px 38px rgba(22, 18, 16, 0.08);
  --trip-shadow-hover: 0 24px 50px rgba(255, 107, 0, 0.18);
}

.roadtrips-section {
  background: var(--ivory-pure);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.roadtrips-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3.2rem;
  padding: 0 1rem;
}

.roadtrips-header .saffron-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--saffron-light);
  color: var(--saffron);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 107, 0, 0.25);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.12);
}

.roadtrips-header h1,
.roadtrips-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--dark-brown);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.roadtrips-header p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  font-weight: 500;
}

/* Search Bar */
.roadtrips-search-wrap {
  max-width: 640px;
  margin: 0 auto 2.2rem;
  position: relative;
  padding: 0 1rem;
}

.roadtrips-search-box {
  display: flex;
  align-items: center;
  background: var(--ivory-pure);
  border: 2px solid rgba(44, 30, 22, 0.12);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.roadtrips-search-box:focus-within {
  border-color: var(--saffron);
  box-shadow: 0 10px 35px var(--saffron-glow);
}

.roadtrips-search-box i {
  color: var(--saffron);
  font-size: 1.2rem;
  margin-right: 0.8rem;
}

.roadtrips-search-input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 1rem;
  color: var(--dark-brown);
  font-family: var(--font-body);
  outline: none;
}

.roadtrips-search-input::placeholder {
  color: #948B86;
}

/* Filters Bar */
.roadtrips-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.filter-pill {
  background: #F4F1EA;
  color: var(--dark-brown);
  border: 1.5px solid transparent;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.filter-pill:hover {
  background: #EAE5DB;
  transform: translateY(-2px);
}

.filter-pill.active {
  background: var(--saffron);
  color: var(--ivory-pure);
  border-color: var(--saffron);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

.filter-pill .pill-count {
  background: rgba(0, 0, 0, 0.12);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

.filter-pill.active .pill-count {
  background: rgba(255, 255, 255, 0.25);
}

/* Grid Layout - Responsive 3 Column on Laptop/Desktop */
.roadtrips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 0.5rem 0 2.5rem;
  width: 100%;
}

@media (max-width: 1100px) {
  .roadtrips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }
}

@media (max-width: 680px) {
  .roadtrips-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

/* Trip Card - Luxury 20px Rounded */
.trip-card {
  background: var(--ivory-pure);
  border-radius: var(--trip-radius);
  border: 1px solid rgba(44, 30, 22, 0.08);
  box-shadow: var(--trip-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  height: 100%;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--trip-shadow-hover);
  border-color: rgba(255, 107, 0, 0.35);
}

/* Image Container & Overlays */
.trip-image-wrap {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.trip-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.trip-card:hover .trip-image {
  transform: scale(1.07);
}

.trip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.1) 45%, rgba(15, 23, 42, 0.88) 100%);
  pointer-events: none;
}

/* Badges on Image */
.trip-badge-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--saffron);
  color: #FFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trip-badge-distance {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trip-actions-floating {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.btn-icon-float {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--dark-brown);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-icon-float:hover {
  background: #FFF;
  transform: scale(1.1);
  color: var(--saffron);
}

.btn-icon-float.fav-active {
  color: #E11D48;
}

/* Card Content Body */
.trip-body {
  padding: 1.6rem 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.trip-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 600;
}

.trip-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trip-meta-item i {
  color: var(--saffron);
  font-size: 0.95rem;
}

.trip-title {
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  line-height: 1.35;
  transition: color 0.2s;
}

.trip-card:hover .trip-title {
  color: var(--saffron);
}

/* Route Timeline Visual */
.trip-route-box {
  background: #FDFBF7;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.2rem;
}

.trip-route-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trip-route-path {
  font-size: 0.86rem;
  color: var(--dark-brown);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.6;
}

.trip-route-path span.arrow {
  color: var(--saffron);
  font-weight: 800;
}

/* Highlights Bullets */
.trip-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}

.trip-highlight-tag {
  background: rgba(255, 107, 0, 0.08);
  color: var(--dark-brown);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trip-highlight-tag i {
  color: var(--saffron);
  font-size: 0.7rem;
}

/* Price & Button Footer inside Card */
.trip-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(44, 30, 22, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.trip-price-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.trip-price-amount {
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--dark-brown);
}

.trip-price-unit {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trip-cta-buttons {
  display: flex;
  gap: 0.5rem;
  flex-grow: 1;
  justify-content: flex-end;
}

.btn-trip-route {
  background: #F4F1EA;
  color: var(--dark-brown);
  border: 1px solid rgba(44, 30, 22, 0.12);
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-trip-route:hover {
  background: var(--dark-brown);
  color: var(--ivory-pure);
}

.btn-trip-book {
  background: var(--saffron);
  color: #FFF;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-trip-book:hover {
  background: var(--saffron-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.45);
}

.btn-trip-details {
  background: transparent;
  color: var(--dark-brown);
  border: 1.5px solid var(--dark-brown);
  padding: 0.62rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-trip-details:hover {
  background: var(--dark-brown);
  color: var(--ivory-pure);
}

/* Modals (Google Map & Booking) */
.roadtrips-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.roadtrips-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.roadtrips-modal-content {
  background: var(--ivory-pure);
  border-radius: var(--trip-radius);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  padding: 2.2rem;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadtrips-modal-backdrop.active .roadtrips-modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F4F1EA;
  border: none;
  font-size: 1.1rem;
  color: var(--dark-brown);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #E11D48;
  color: #FFF;
  transform: rotate(90deg);
}

.modal-header-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-brown);
  margin-bottom: 0.4rem;
}

.modal-header-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.6rem;
}

/* Toast Notification */
.roadtrips-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-brown);
  color: var(--gold-light);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  border: 1px solid var(--gold);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadtrips-toast.show {
  transform: translateX(-50%) translateY(0);
}

