/* ==========================================================================
   Lokya Travels CSS Styling - Yellow Theme Experiment
   Design Aesthetics: Premium, Warm, Vibrant (Yellow base with Maroon accents)
   Target Audience: Families & IT Crowd
   ========================================================================== */

/* --- Custom Properties (Design System) --- */
:root {
  --maroon-dark: #3a0007;
  --maroon-main: #540c15;
  --maroon-light: #7b1e29;
  --maroon-soft: #fbf5f5;
  
  --yellow-main: #fed156;
  --yellow-light: #fff0c2;
  --yellow-dark: #e5b93b;
  --yellow-soft: #fffdf5;
  
  --charcoal: #1e1a1b;
  --text-muted: #665b5d;
  --white: #ffffff;
  
  --bg-light: #fdfbf7;
  --bg-card: #ffffff;
  --border-color: #eadfc9;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(84, 12, 21, 0.05), 0 2px 4px -1px rgba(84, 12, 21, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(84, 12, 21, 0.08), 0 4px 6px -2px rgba(84, 12, 21, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(84, 12, 21, 0.12), 0 10px 10px -5px rgba(84, 12, 21, 0.04);
  --shadow-glow: 0 0 20px rgba(84, 12, 21, 0.15);
  
  --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-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset for sticky header */
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

ul {
  list-style: none;
}

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

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

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-accent { color: var(--maroon-main); }
.text-muted { color: var(--text-muted); }

/* --- Section Headers --- */
.section-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--maroon-main);
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 16px;
}

.section-title-bar {
  width: 80px;
  height: 4px;
  background: var(--maroon-main);
  margin: 0 auto 20px auto;
  border-radius: 2px;
  transition: var(--transition-normal);
}

.section-title-bar.left {
  margin-left: 0;
  margin-right: auto;
}

.section-header:hover .section-title-bar {
  width: 120px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 18px;
}

/* --- Button System (Swapped: Primary is Maroon, Secondary is Yellow) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--maroon-main);
  color: var(--white);
  border-color: var(--maroon-main);
}

.btn-primary:hover {
  background-color: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--yellow-main);
  color: var(--maroon-dark);
  border-color: var(--yellow-main);
}

.btn-secondary:hover {
  background-color: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp-confirm {
  background-color: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp-confirm:hover {
  background-color: #20ba5a;
  border-color: #20ba5a;
  transform: scale(1.02);
}

.btn-whatsapp-inline {
  background-color: #25d366;
  color: var(--white);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.btn-whatsapp-inline:hover {
  background-color: #20ba5a;
  transform: translateY(-1px);
}

/* --- Sticky Header & Navigation (Yellow Base) --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(249, 194, 46, 0.96);
  color: var(--maroon-dark);
  padding: 16px 0;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(84, 12, 21, 0.1);
  backdrop-filter: blur(12px);
}

/* Header Shrinking on Scroll */
.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(84, 12, 21, 0.15);
  background-color: rgba(249, 194, 46, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo-svg {
  color: var(--maroon-main);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--maroon-main);
}

.brand-subtitle {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--maroon-dark);
  font-weight: 600;
}

/* Desktop Nav Menu */
.nav-desktop ul {
  display: flex;
  gap: 32px;
}

.nav-desktop a {
  font-size: 15px;
  font-weight: 600;
  color: var(--maroon-dark);
  position: relative;
  padding: 8px 0;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--maroon-light);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--maroon-main);
  transition: var(--transition-fast);
}

.nav-desktop a:hover::after {
  width: 100%;
}

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

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--maroon-dark);
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Nav Menu drawer */
.nav-mobile {
  display: none;
  background-color: var(--yellow-soft);
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 24px;
  border-top: 1px solid rgba(84, 12, 21, 0.1);
  box-shadow: 0 10px 15px rgba(84, 12, 21, 0.1);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-mobile a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--maroon-dark);
}

.nav-mobile a:hover {
  color: var(--maroon-main);
  padding-left: 6px;
}

.nav-mobile .btn {
  text-align: center;
  margin-top: 8px;
}

/* --- Hero Section (Yellow Base) --- */
.hero-section {
  position: relative;
  background: var(--white);
  color: var(--charcoal);
  padding-top: 180px;
  padding-bottom: 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

/* Diagonal Background Accents */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 80% 20%, rgba(254, 209, 86, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  background-color: var(--yellow-soft);
  color: var(--maroon-dark);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--yellow-light);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 52px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--maroon-dark);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--maroon-main);
  position: relative;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.highlight-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--maroon-main);
  line-height: 1;
}

.highlight-lbl {
  font-size: 13px;
  color: var(--text-muted);
}

.highlight-divider {
  width: 1px;
  height: 35px;
  background-color: var(--border-color);
}

/* Hero Image Cards */
.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(84, 12, 21, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-slow);
}

.hero-image-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-bus-image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.bus-floating-info {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background-color: var(--white);
  color: var(--charcoal);
  padding: 16px 24px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}

.bus-floating-info i {
  color: var(--maroon-main);
  font-size: 24px;
}

.bus-floating-info strong {
  display: block;
  font-size: 14px;
}

.bus-floating-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- Info Bar Section --- */
.info-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
}

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

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
}

.info-bar-item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--yellow-soft);
  color: var(--maroon-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

.info-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon-main);
}

/* --- Standalone Custom Charter Section --- */
.charter-section {
  background-color: var(--yellow-soft);
  border-bottom: 1px solid var(--border-color);
}

.charter-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.charter-text-side {
  display: flex;
  flex-direction: column;
}

.charter-para {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.charter-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.charter-feat-card {
  background-color: var(--white);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  display: flex;
  gap: 16px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.charter-feat-card:hover {
  border-color: var(--maroon-main);
  box-shadow: var(--shadow-sm);
}

.charter-feat-icon {
  font-size: 24px;
  color: var(--maroon-main);
  margin-top: 2px;
}

.charter-feat-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--maroon-dark);
}

.charter-feat-info p {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted);
}

.charter-cta-group {
  display: flex;
  gap: 16px;
}

.charter-image-side {
  display: flex;
  justify-content: center;
}

.charter-pamphlet-preview {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: var(--maroon-dark);
  position: relative;
  aspect-ratio: 9/16;
  max-width: 320px;
  width: 100%;
  cursor: pointer;
}

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

.charter-pamphlet-preview:hover img {
  transform: scale(1.03);
}

.charter-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(84, 12, 21, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.charter-pamphlet-preview:hover .charter-preview-overlay {
  opacity: 1;
}

.charter-preview-overlay i {
  font-size: 32px;
  color: var(--yellow-main);
}

.charter-preview-overlay span {
  font-size: 14px;
  font-weight: 600;
}

/* --- Tour Packages Section --- */
.packages-section {
  background-color: var(--bg-light);
}

.filter-tabs-container {
  overflow-x: auto;
  margin-bottom: 40px;
  scrollbar-width: none;
}

.filter-tabs-container::-webkit-scrollbar {
  display: none;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  min-width: max-content;
  margin: 0 auto;
  padding: 4px;
}

.filter-tab {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--charcoal);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab:hover {
  background-color: var(--yellow-soft);
  color: var(--maroon-main);
}

.filter-tab.active {
  background-color: var(--maroon-main);
  color: var(--white);
  border-color: var(--maroon-main);
  box-shadow: var(--shadow-sm);
}

/* Package Cards Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.package-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

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

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

.package-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--yellow-main);
  color: var(--maroon-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 10;
}

/* Graphical Backdrops as Placeholders */
.package-bg-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: rgba(255, 255, 255, 0.85);
  transition: transform var(--transition-slow);
}

.spiritual-bg { background: linear-gradient(135deg, #e65c00 0%, #F9D423 100%); }
.heritage-bg { background: linear-gradient(135deg, #8A2387 0%, #E94057 50%, #F27121 100%); }
.shirdi-bg { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); }
.beach-bg { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.ujjain-bg { background: linear-gradient(135deg, #FF9933 0%, #FF5500 100%); }

.package-card:hover .package-bg-placeholder {
  transform: scale(1.1);
}

.package-overlay-grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4) 100%);
  z-index: 5;
}

.package-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

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

.package-meta i {
  color: var(--maroon-main);
}

.package-name {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 12px;
}

.package-summary {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.package-highlights {
  margin-bottom: 24px;
  border-top: 1px dashed var(--border-color);
  padding-top: 16px;
}

.package-highlights li {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.package-highlights i {
  color: #20ba5a;
}

.package-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.package-card.hidden {
  display: none;
}

/* --- Coach Showcase Section (Carousel) --- */
.coach-section {
  background-color: var(--white);
}

.coach-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Horizontal scroller with snapping */
.carousel-container-wrapper {
  width: 100%;
  position: relative;
}

.scroller {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  scrollbar-width: none;
}

.scroller::-webkit-scrollbar {
  display: none;
}

.entry {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #000;
}

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

.entry.flyer-img img {
  object-fit: contain;
  background-color: #3b050c;
  cursor: zoom-in;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(84, 12, 21, 0.95) 0%, transparent 100%);
  color: var(--white);
  padding: 24px 16px 12px 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* Native Scroll Driven Animations (CSS Carousel effects) */
@supports ((animation-timeline: view()) and (animation-range: entry)) {
  .scroller > * {
    animation: slide-effects auto linear both;
    animation-timeline: view(inline);
  }
}

@keyframes slide-effects {
  0% { transform: scale(0.9); opacity: 0.75; }
  50% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.75; }
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 8px;
}

.carousel-control-btn {
  background-color: var(--maroon-main);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel-control-btn:hover {
  background-color: var(--maroon-light);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--maroon-main);
  width: 24px;
  border-radius: 5px;
}

/* Amenities side */
.amenities-title {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--maroon-dark);
  margin-bottom: 8px;
}

.amenities-intro {
  margin-bottom: 24px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.amenity-card {
  background-color: var(--bg-light);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  display: flex;
  gap: 16px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.amenity-card:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  border-color: var(--maroon-main);
}

.amenity-icon {
  font-size: 24px;
  color: var(--maroon-main);
  margin-top: 2px;
}

.amenity-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--maroon-dark);
}

.amenity-info p {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted);
}

/* --- About Section & Flyer Card --- */
.about-section {
  background-color: var(--yellow-soft);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image-side {
  position: relative;
}

.about-image-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--maroon-main);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
  z-index: 10;
}

.about-image-badge .badge-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.about-image-badge .badge-txt {
  font-size: 9px;
  text-align: center;
  font-weight: 700;
  color: var(--yellow-main);
}

.pamphlet-preview-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: var(--maroon-dark);
  position: relative;
  aspect-ratio: 9/16;
  max-width: 320px;
  margin: 0 auto;
  cursor: pointer;
}

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

.pamphlet-preview-card:hover img {
  transform: scale(1.03);
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(84, 12, 21, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.pamphlet-preview-card:hover .preview-overlay {
  opacity: 1;
}

.preview-overlay i {
  font-size: 32px;
  color: var(--yellow-main);
}

.preview-overlay span {
  font-size: 14px;
  font-weight: 600;
}

.about-text-side {
  display: flex;
  flex-direction: column;
}

.about-para {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.lead-para {
  font-size: 18px;
  font-weight: 600;
  color: var(--maroon-main);
}

.about-points {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}

.point-item {
  display: flex;
  gap: 16px;
}

.point-icon {
  font-size: 24px;
  color: var(--maroon-main);
  margin-top: 4px;
}

.point-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--maroon-dark);
}

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

/* --- Inquiry & Booking Wizard Section --- */
.inquiry-section {
  background-color: var(--bg-light);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.badge-accent {
  background-color: var(--maroon-soft);
  color: var(--maroon-main);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.inquiry-side-title {
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--maroon-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.inquiry-side-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-links-list {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-link-item i {
  font-size: 28px;
  color: var(--maroon-main);
}

.contact-link-item span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-link-item a {
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon-dark);
}

.contact-link-item a:hover {
  color: var(--maroon-light);
}

.whatsapp-prompt-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.wa-icon {
  font-size: 40px;
  color: #25d366;
  line-height: 1;
}

.wa-text h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.wa-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Booking Form Card */
.inquiry-form-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-card-title {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--maroon-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-card-subtitle {
  font-size: 14px;
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon-dark);
}

.form-group label .required {
  color: #d9534f;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 12px 16px 12px 42px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  color: var(--charcoal);
  transition: all var(--transition-fast);
  outline: none;
}

.textarea-wrapper {
  align-items: flex-start;
}

.textarea-wrapper i {
  top: 14px;
}

.input-wrapper textarea {
  padding-top: 12px;
  resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--maroon-main);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(84, 12, 21, 0.08);
}

/* --- Testimonials Section --- */
.testimonials-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

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

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

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

.test-rating {
  color: var(--maroon-main);
  font-size: 14px;
  margin-bottom: 16px;
}

.test-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.test-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--yellow-soft);
  color: var(--maroon-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid var(--border-color);
}

.test-author-details {
  display: flex;
  flex-direction: column;
}

.test-author-details strong {
  font-size: 14px;
  color: var(--maroon-dark);
}

.test-author-details span {
  font-size: 11px;
  color: var(--text-muted);
}

/* --- FAQs Section --- */
.faqs-section {
  background-color: var(--bg-light);
}

.faqs-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

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

.faq-item[open] {
  border-color: var(--maroon-main);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--maroon-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Hide default triangle */
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question i {
  font-size: 14px;
  color: var(--maroon-light);
  transition: transform var(--transition-normal);
}

.faq-item[open] .faq-question i {
  transform: rotate(180deg);
  color: var(--maroon-main);
}

.faq-answer {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  color: var(--text-muted);
  border-top: 1px dashed var(--border-color);
  padding-top: 16px;
}

/* --- Footer Section (Still Dark Maroon for strong visual contrast) --- */
.site-footer {
  background-color: var(--maroon-dark);
  color: var(--white);
  border-top: 4px solid var(--yellow-main);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--yellow-main);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--yellow-main);
}

.brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.brand-col .footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--yellow-main);
  color: var(--maroon-dark);
  transform: translateY(-2px);
}

.links-col ul {
  display: grid;
  gap: 12px;
}

.links-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.links-col a:hover {
  color: var(--yellow-main);
  padding-left: 6px;
}

.contact-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-col a:hover {
  color: var(--yellow-main);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Native Dialogs (Modals) --- */
dialog {
  border: none;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  outline: none;
  background-color: var(--white);
  padding: 0;
  overflow: hidden;
}

dialog[open] {
  animation: modalScaleIn var(--transition-normal) forwards;
}

@keyframes modalScaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

dialog::backdrop {
  background-color: rgba(58, 0, 7, 0.6);
  backdrop-filter: blur(8px);
}

/* 1. Booking Dialog Styles */
#bookingDialog {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.dialog-content {
  display: flex;
  flex-direction: column;
}

.dialog-header {
  background-color: var(--yellow-soft);
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  text-align: center;
}

.dialog-success-icon {
  font-size: 40px;
  color: #20ba5a;
  margin-bottom: 12px;
  display: block;
}

.dialog-header h3 {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--maroon-dark);
}

.dialog-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.dialog-close-btn:hover {
  color: var(--maroon-main);
}

.dialog-body {
  padding: 32px 24px;
}

.dialog-intro {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--charcoal);
  text-align: center;
}

.summary-details-box {
  background-color: var(--yellow-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.summary-item {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(84, 12, 21, 0.15);
  padding-bottom: 8px;
}

.summary-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-item strong {
  color: var(--maroon-dark);
}

.dialog-footer {
  padding: 0 24px 32px 24px;
}

/* 2. Lightbox dialog styles */
#imageLightbox {
  background-color: transparent;
  box-shadow: none;
  overflow: visible;
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
}

#imageLightbox::backdrop {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  outline: none;
}

.lightbox-close-btn:hover {
  color: var(--yellow-main);
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--white);
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- Media Queries (Responsive Styling) --- */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  .hero-container {
    gap: 32px;
  }
  .charter-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .charter-image-side {
    max-width: 320px;
    margin: 0 auto;
  }
  .coach-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-side {
    max-width: 320px;
    margin: 0 auto;
  }
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-highlights {
    justify-content: center;
  }
  
  .bus-floating-info {
    left: 12px;
    bottom: 12px;
  }
  
  .info-bar-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .info-bar-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
  }
  
  .info-bar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .charter-features-grid {
    grid-template-columns: 1fr;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-row .form-group {
    margin-bottom: 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .charter-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .charter-cta-group .btn {
    width: 100%;
  }
  .inquiry-form-card {
    padding: 24px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

