/* ==========================================
   OM TRAVELS - Premium Styling System
   Theme: Journey Through Motion
   ========================================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Poppins:wght@300;400;500;600;700&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-deep: #050914;
  --bg-deep-bottom: #0c1224;
  --bg-card: rgba(10, 20, 42, 0.55);
  --bg-glass: rgba(15, 23, 42, 0.45);
  --accent-orange: #ff6b35;
  --accent-gold: #f4b251;
  --accent-blue: #00b4d8;
  --text-light: #f8f9fa;
  --text-muted: #a0aec0;
  --border-glass: rgba(255, 255, 255, 0.08);
  --glow-orange: rgba(255, 107, 53, 0.4);
  --glow-gold: rgba(244, 178, 81, 0.3);
  --bg-header: rgba(5, 9, 20, 0.85);
  --bg-about: #060c1c;
  --bg-destinations: #030712;
  --bg-packages: #060b18;
  --bg-planner: radial-gradient(circle at 10% 20%, #0d1a33 0%, #050914 100%);
  --bg-testimonials: #050a14;
  --bg-contact: #040812;
  --bg-footer: #03060c;
  --bg-menu: rgba(5, 9, 20, 0.98);

  /* Fonts */
  --font-title: 'Sora', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --header-height: 80px;

  /* Gradients */
  --title-gradient: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
}

/* --- Light Theme Variables --- */
:root[data-theme="light"] {
  --bg-deep: #f3f6fa;
  --bg-deep-bottom: #e2e8f0;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-glass: rgba(255, 255, 255, 0.65);
  --border-glass: rgba(0, 0, 0, 0.08);
  --text-light: #0f172a;
  --text-muted: #475569;
  --accent-orange: #e0531c;
  --accent-gold: #c28113;
  --glow-orange: rgba(224, 83, 28, 0.15);
  --glow-gold: rgba(194, 129, 19, 0.15);
  --bg-header: rgba(243, 246, 250, 0.85);
  --bg-about: #eef2f6;
  --bg-destinations: #f8fafc;
  --bg-packages: #eef2f6;
  --bg-planner: radial-gradient(circle at 10% 20%, #f1f5f9 0%, #e2e8f0 100%);
  --bg-testimonials: #f1f5f9;
  --bg-contact: #eef2f6;
  --bg-footer: #0f172a;
  --bg-menu: rgba(255, 255, 255, 0.98);

  /* Gradients */
  --title-gradient: linear-gradient(135deg, #0b1945 0%, #07143e 100%);
}

/* --- Light Theme Class-Based Overrides --- */
[data-theme="light"] .form-select,
[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea {
  background: #ffffff;
  color: var(--text-light);
  border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .form-select:focus,
[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-textarea:focus {
  border-color: var(--accent-orange);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(224, 83, 28, 0.1);
}

[data-theme="light"] .map-pin-label {
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  border-color: rgba(0, 0, 0, 0.15);
}

/* Theme Toggle Button Style */
.theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  outline: none;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: rotate(30deg) scale(1.05);
}

[data-theme="light"] .theme-toggle {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Star visibility override */
[data-theme="light"] .hero-stars {
  opacity: 0;
  pointer-events: none;
  display: none !important;
}

/* --- Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-light);
  overflow-x: hidden;
  scroll-behavior: auto; /* Managed by Lenis */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent-orange), var(--accent-gold));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* --- Global Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--title-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* --- Immersive Preloader Landing Sky --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom, #0f1c3f 0%, #1e3a6c 50%, #e28f35 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  #preloader {
    display: none !important;
  }
}

.loader-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.loader-logo span {
  color: var(--accent-orange);
}

.loader-instruction {
  font-size: 1rem;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.loader-instruction i {
  animation: arrowBounce 1.5s infinite alternate;
}

@keyframes arrowBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

.loader-bar {
  width: 250px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
  position: absolute;
  top: 0;
  left: 0;
}

/* Preloader Parallax Vector Assets */
.preloader-mountain, .preloader-forest {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.preloader-mountain {
  bottom: -5px;
  height: 280px;
  fill: #14274c;
  z-index: 2;
}

.preloader-forest {
  bottom: -5px;
  height: 160px;
  fill: #0c1a35;
  z-index: 3;
}

.preloader-cloud {
  position: absolute;
  fill: rgba(255, 255, 255, 0.22);
  filter: blur(12px) drop-shadow(0 0 15px rgba(255,255,255,0.25));
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.preloader-cloud.cloud-left-1 {
  width: 400px;
  height: 150px;
  top: 15%;
  left: -80px;
}

.preloader-cloud.cloud-right-1 {
  width: 500px;
  height: 180px;
  top: 35%;
  right: -100px;
  fill: rgba(255, 255, 255, 0.18);
}

.preloader-cloud.cloud-left-2 {
  width: 450px;
  height: 160px;
  top: 50%;
  left: -120px;
  fill: rgba(255, 255, 255, 0.15);
}

/* --- Smoke Overlay Transition --- */
#smoke-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}

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

.smoke-puff {
  position: absolute;
  width: 15vw;
  height: 15vw;
  background: radial-gradient(circle, #e2e8f0 0%, #cbd5e1 50%, rgba(203, 213, 225, 0) 100%);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.95;
  transform: scale(0);
  will-change: transform;
}

.smoke-puff.puff1 { top: -10%; left: -10%; }
.smoke-puff.puff2 { top: -10%; right: -10%; }
.smoke-puff.puff3 { bottom: -10%; left: -10%; }
.smoke-puff.puff4 { bottom: -10%; right: -10%; }
.smoke-puff.puff5 { top: 30%; left: 30%; }
.smoke-puff.puff6 { top: 50%; right: 25%; }

/* --- Common UI Components --- */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-enquire {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  background: #ff6b35;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-enquire:hover {
  background: #00b4d8;
  transform: translateY(-2px);
}
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  z-index: -1;
  transition: transform 0.5s ease;
}

.btn-premium.btn-outline::before {
  background: transparent;
  border: 2px solid var(--accent-orange);
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--glow-orange);
}

.btn-premium.btn-outline:hover {
  background: var(--accent-orange);
  box-shadow: 0 10px 20px var(--glow-orange);
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 30px;
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
}

.header-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
  gap: 0.8rem;
}
.logo img {
  max-height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding: 5px 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

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

.contact-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  background: rgba(244, 178, 81, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(244, 178, 81, 0.2);
}

.menu-toggle {
  display: none; /* Hidden on desktop */
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001; /* Stay above dropdown */
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: scale(1.05);
}

.menu-toggle.active {
  background: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
  transform: rotate(90deg);
}

/* Light mode menu toggle style */
[data-theme="light"] .menu-toggle {
  background: #ffffff;
  color: var(--accent-orange);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .menu-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--accent-orange);
}

[data-theme="light"] .menu-toggle.active {
  background: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 12px var(--glow-orange);
}

/* --- Section Formatting --- */
section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- 3D Flying Airplane Canvas --- */
#airplane-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 900;
  pointer-events: none; /* Let clicks pass through to UI layers */
}

/* --- Hero Section & Day/Night Celestial Parallax --- */
.hero-section {
  height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 21;
  transition: background 1s ease;
  position: relative;
  overflow: hidden;
  background: url('../banner.png') center center / cover no-repeat;
  background-color: rgba(0, 0, 0, 0.25);
  background-blend-mode: overlay;
}

.hero-section.day-mode {
  background-color: rgba(26, 54, 93, 0.28);
  --mountain-far: rgba(66, 153, 225, 0.2);
  --mountain-mid: rgba(43, 108, 176, 0.45);
  --mountain-close: rgba(26, 54, 93, 0.75);
}

.hero-section.night-mode {
  background-color: rgba(2, 4, 8, 0.35);
  --mountain-far: rgba(12, 18, 36, 0.55);
  --mountain-mid: rgba(6, 9, 19, 0.75);
  --mountain-close: rgba(2, 4, 8, 0.95);
}

.hero-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 1;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  animation: starTwinkle 3s infinite alternate;
}

@keyframes starTwinkle {
  0% { opacity: 0.15; transform: scale(0.7); }
  100% { opacity: 0.95; transform: scale(1.3); }
}

/* --- Logo Text & Header Elements Styling --- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.logo-text .brand-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.4rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.logo-text .brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
}

[data-theme="light"] .logo-text .brand-name {
  color: #0f172a;
}
[data-theme="light"] .logo-text .brand-sub {
  color: var(--accent-orange);
}

.btn-book-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  color: #ffffff !important;
  background: #00b4d8;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}
.btn-book-header:hover {
  background: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.35);
}

@media (max-width: 768px) {
  .btn-book-header {
    display: none;
  }
}

/* --- Hero Section Content & Typo --- */
.hero-content {
  position: static;
  z-index: 50;
  text-align: center;
  max-width: 850px;
  padding: 20px;
  margin-top: 20px;
  overflow: visible;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem) !important;
  line-height: 1.05 !important;
  margin-bottom: 25px !important;
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  font-weight: 700 !important;
  animation: fadeInUp 1s ease forwards;
}

.cursive-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.25em;
  color: #ffffff;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cursive-text .plane-icon {
  font-size: 1rem;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 8px;
  color: var(--accent-gold);
  animation: flightOscillate 3s infinite ease-in-out;
}

@keyframes flightOscillate {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(3px, -4px); }
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 35px;
  color: #ffffff;
  animation: fadeInUp 1.2s ease forwards;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1.4s ease forwards;
}

/* --- Floating Search / Booking Bar Styling --- */
.hero-search-wrapper {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1050px;
  z-index: 30;
  animation: searchBarFadeIn 1.6s ease forwards;
}

@keyframes searchBarFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero-search-bar {
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
  border-radius: 35px !important;
  padding: 16px 28px !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-theme="light"] .hero-search-bar {
  background: #ffffff !important;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08) !important;
}

.search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
}

.search-col {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.search-col label {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-col label i {
  color: #00b4d8;
}

.search-select, .search-input {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #475569;
  outline: none;
  width: 100%;
  cursor: pointer;
  box-shadow: none !important;
  height: 28px !important;
  line-height: 28px !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
}

.search-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M0 0l5 5 5-5z' fill='%23475569'/></svg>") no-repeat right 50% !important;
  background-size: 10px 6px !important;
  padding-right: 16px !important;
}

.search-input::-webkit-datetime-edit {
  padding: 0 !important;
  line-height: 28px !important;
}

.search-input::-webkit-datetime-edit-fields-wrapper {
  padding: 0 !important;
}

.search-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.4);
  margin: 0 0 0 4px !important;
  padding: 0 !important;
}

.search-divider {
  width: 1px;
  height: 42px;
  background: #e2e8f0;
}

.btn-search-submit {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ff6b35;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
  flex-shrink: 0;
}

.btn-search-submit:hover {
  background: #00b4d8;
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.35);
}

@media (max-width: 768px) {
  .hero-search-wrapper {
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    padding: 0 16px;
    box-sizing: border-box;
    animation: none;
    opacity: 1;
  }
  .hero-search-bar {
    border-radius: 18px !important;
    padding: 14px 16px !important;
  }
  .search-form {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
  }
  .search-col {
    flex: 1;
    min-width: 0;
    padding: 4px 10px;
  }
  .search-col label {
    font-size: 0.65rem;
    margin-bottom: 3px;
    white-space: nowrap;
  }
  .search-select,
  .search-input {
    font-size: 0.78rem;
    height: 22px !important;
    line-height: 22px !important;
  }
  .search-divider {
    display: block;
    width: 1px;
    height: 36px;
    background: #e2e8f0;
    flex-shrink: 0;
  }
  .btn-search-submit {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 10px;
    font-size: 1rem;
  }
}

/* --- About Us Section --- */
.about-section {
  z-index: 20;
  background: var(--bg-about);
}

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

.about-map-container {
  position: relative;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(15, 32, 66, 0.4) 0%, rgba(5, 9, 20, 0.8) 100%);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  height: 480px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-map-canvas {
  width: 100%;
  height: 100%;
}

.map-route-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-route-svg path {
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 3;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  filter: drop-shadow(0 0 4px var(--accent-orange));
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-gold);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.map-pin::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  animation: pinPulse 2s infinite;
}

.map-pin-label {
  position: absolute;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(5, 9, 20, 0.8);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--border-glass);
}

.about-images-reveal {
  position: absolute;
  width: 180px;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-glass);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transform: scale(0.6) rotate(-15deg);
  opacity: 0;
  z-index: 10;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-images-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-images-reveal.img1 {
  bottom: 30px;
  left: 40px;
}

.about-images-reveal.img2 {
  top: 30px;
  right: 40px;
}

.about-images-reveal.reveal {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.about-text {
  padding-left: 20px;
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--accent-orange);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  padding: 15px;
  border-radius: 12px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Destinations (Horizontal Scroll) --- */
.destinations-section {
  z-index: 20;
  background: var(--bg-destinations);
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.destinations-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.destinations-horizontal-wrapper {
  display: flex;
  align-items: center;
  padding-left: 10vw;
  will-change: transform;
}

.destinations-intro {
  flex-shrink: 0;
  width: 380px;
  margin-right: 100px;
}

.destinations-intro h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--title-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.destination-card {
  flex-shrink: 0;
  width: 320px;
  height: 460px;
  margin-right: 40px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}

.destination-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 0;
}

.destination-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,9,20,0.1) 40%, rgba(5,9,20,0.9) 100%);
  z-index: 1;
}

.destination-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  transform: translateZ(50px);
  transition: transform 0.5s ease;
}

.destination-tag {
  background: var(--accent-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.destination-card h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.destination-card p {
  font-size: 0.9rem;
  color: #dddddd;
  opacity: 0;
  max-height: 0;
  transition: all 0.5s ease;
  overflow: hidden;
}

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

.destination-card:hover p {
  opacity: 1;
  max-height: 60px;
  margin-top: 5px;
}

.destinations-mobile-controls {
  display: none;
}

.destinations-scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(244, 178, 81, 0.35);
  background: rgba(5, 9, 20, 0.75);
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease, border-color 0.3s ease;
}

.destinations-scroll-btn:hover {
  background: rgba(244, 178, 81, 0.15);
  border-color: rgba(244, 178, 81, 0.55);
}

.destinations-scroll-btn:active {
  transform: scale(0.96);
}

/* --- 3D Globe Section --- */
.globe-section {
  z-index: 20;
  background: radial-gradient(circle at center, #0e1c38 0%, #050914 100%);
}

.globe-container-centered {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.globe-canvas-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
}

.globe-canvas-wrapper:active {
  cursor: grabbing;
}

.globe-canvas-wrapper canvas {
  outline: none;
}

.globe-instructions {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5,9,20,0.6);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid var(--border-glass);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

/* --- Packages / Timeline Section --- */
.packages-section {
  z-index: 20;
  background: var(--bg-packages);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 178, 81, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.package-overlay-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(5,9,20,0.85);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  border: 1px solid var(--border-glass);
}

.package-card-content {
  padding: 25px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

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

.package-meta i {
  color: var(--accent-orange);
}

.package-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.package-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border-glass);
}

.package-price .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.package-price .price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Timeline Sub-component */
.timeline-container {
  margin-top: 80px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-orange), var(--accent-gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--bg-deep);
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 10px var(--accent-gold);
}

.timeline-content {
  width: 44%;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

.timeline-content .day-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* --- AI Planner Section --- */
.planner-section {
  z-index: 20;
  background: var(--bg-planner);
}

.planner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.planner-form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.planner-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-select, .form-input {
  width: 100%;
  background: rgba(5, 9, 20, 0.6);
  border: 1px solid var(--border-glass);
  padding: 15px;
  border-radius: 12px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-select:focus, .form-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.planner-result-wrapper {
  min-height: 480px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.planner-result-placeholder {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px dashed rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
}

.planner-result-placeholder i {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 20px;
  opacity: 0.7;
}

.planner-result-display {
  display: none;
  animation: fadeIn 0.6s ease;
}

.planner-result-display.active {
  display: block;
}

.planner-result-header {
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 20px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.planner-result-title h3 {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.planner-result-title p {
  font-size: 0.85rem;
}

.planner-result-meta {
  display: flex;
  gap: 15px;
}

.meta-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.itinerary-scroll {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 10px;
}

.itinerary-day-card {
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--accent-orange);
  padding: 15px 20px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 15px;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  border-right: 1px solid var(--border-glass);
}

.itinerary-day-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--accent-gold);
}

.itinerary-day-card p {
  font-size: 0.88rem;
}

/* --- Testimonials --- */
.testimonials-section {
  z-index: 20;
  background: var(--bg-testimonials);
}

.testimonial-slider {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
  height: 280px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  text-align: center;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-quote {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
}

.testimonial-quote::before, .testimonial-quote::after {
  content: '"';
  font-size: 3rem;
  font-family: var(--font-title);
  color: var(--accent-orange);
  line-height: 1;
  opacity: 0.3;
}

.testimonial-rating {
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.testimonial-author {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--accent-orange);
  transform: scale(1.2);
}

/* --- Contact & Footer --- */
.contact-section {
  z-index: 20;
  background: var(--bg-contact);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-panel h3 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--accent-gold);
}

.contact-text p {
  font-size: 0.95rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-textarea {
  width: 100%;
  background: rgba(5, 9, 20, 0.6);
  border: 1px solid var(--border-glass);
  padding: 15px;
  border-radius: 12px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  min-height: 120px;
  resize: vertical;
  transition: all 0.3s ease;
}

.form-textarea:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.form-status {
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
  animation: fadeIn 0.4s ease;
}

.form-status.success {
  background: rgba(38, 166, 91, 0.15);
  border: 1px solid rgba(38, 166, 91, 0.3);
  color: #2ecc71;
  display: block;
}

.form-status.error {
  background: rgba(224, 76, 76, 0.15);
  border: 1px solid rgba(224, 76, 76, 0.3);
  color: #e74c3c;
  display: block;
}

/* Footer styling */
footer {
  border-top: 1px solid var(--border-glass);
  background: var(--bg-footer);
  padding: 50px 0 30px;
  z-index: 20;
  color: #a0aec0; /* Force light gray default text in footer */
}

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

.footer-brand h4 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  color: #ffffff; /* Force white text */
}

.footer-brand h4 span {
  color: var(--accent-gold);
}

.footer-brand p {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #a0aec0; /* Force light gray */
}

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

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-circle:hover {
  border-color: var(--accent-orange);
  background: var(--accent-orange);
  box-shadow: 0 0 10px var(--glow-orange);
}

.footer-links-col h4 {
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: #a0aec0; /* Force light gray */
}

.footer-links-col a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #a0aec0; /* Force light gray */
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: #a0aec0; /* Force light gray link color */
}

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

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pinPulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .about-grid, .globe-grid, .planner-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-map-container {
    height: 380px;
  }

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

@media (max-width: 768px) {
  #airplane-canvas-container,
  #globe {
    display: none !important;
  }

  .destinations-section {
    height: auto;
    min-height: 100vh;
    padding: 70px 0 50px;
    display: block;
    overflow: visible;
  }

  .destinations-container {
    height: auto;
  }

  .destinations-horizontal-wrapper {
    width: 100%;
    padding: 0 20px 12px;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    will-change: auto;
  }

  .destinations-horizontal-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .destinations-horizontal-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
  }

  .destinations-horizontal-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 10px;
  }

  .destinations-intro {
    width: 78vw;
    max-width: 320px;
    margin-right: 0;
    scroll-snap-align: start;
  }

  .destinations-intro h2 {
    font-size: 2.2rem;
  }

  .destination-card {
    width: 78vw;
    max-width: 320px;
    height: 430px;
    margin-right: 0;
    scroll-snap-align: start;
  }

  .destination-card p {
    opacity: 1;
    max-height: 70px;
    margin-top: 5px;
  }

  .destinations-mobile-controls {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .header-container {
    padding: 0 20px;
  }

  .nav-links {
    display: none; /* Can toggle via active state */
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-menu);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    flex-direction: column;
    padding: 30px 20px;
    gap: 10px;
    align-items: center;
    list-style: none;
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  [data-theme="light"] .nav-links {
    background: #ffffff;
    border-bottom: 3px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* Floating WhatsApp Button Styling */
.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 35px;
    right: 20px;
    font-size: 26px;
  }
}

/* --- Mobile Alignment and Layout Optimizations --- */
@media (max-width: 768px) {
  /* Hero section fluid height to prevent text cutoffs */
  .hero-section {
    height: auto !important;
    min-height: 100vh;
    padding: 120px 0 60px;
  }

  /* Subpage hero spacing and scaling */
  .subpage-hero {
    padding: 110px 0 40px !important;
  }
  .subpage-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
  }

  /* About section alignments */
  .about-text {
    padding-left: 0 !important;
    margin-top: 25px !important;
  }
  .about-stats {
    gap: 10px !important;
    margin-top: 30px !important;
  }
  .stat-box {
    padding: 10px 5px !important;
  }
  .stat-number {
    font-size: 1.4rem !important;
  }
  .stat-label {
    font-size: 0.7rem !important;
  }

  /* About Map Images size adjustment to prevent covering map pins */
  .about-images-reveal {
    width: 110px !important;
    height: 140px !important;
  }
  .about-images-reveal.img1 {
    bottom: 15px !important;
    left: 15px !important;
  }
  .about-images-reveal.img2 {
    top: 15px !important;
    right: 15px !important;
  }

  /* Glass panel spacing layout */
  .glass-panel {
    padding: 20px !important;
  }

  /* Responsive Timeline (1-Column Left-Aligned Layout) */
  .timeline-container {
    margin-top: 50px !important;
  }
  .timeline-line {
    left: 20px !important;
    transform: none !important;
  }
  .timeline-item {
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding-left: 45px !important;
    margin-bottom: 30px !important;
  }
  .timeline-item:nth-child(even) {
    flex-direction: row !important;
  }
  .timeline-dot {
    left: 20px !important;
    transform: translateX(-50%) !important;
  }
  .timeline-content {
    width: 100% !important;
    text-align: left !important;
  }
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left !important;
  }

  /* Policy pages h1 adjustment */
  .policy-content h1 {
    font-size: 1.8rem !important;
  }
}
