/* CSS Variables for Consistent Styling */
:root {
  /* Primary Colors */
  --primary-saffron: #f39c12;
  --primary-gold: #ffd166;
  --primary-deep-orange: #e67e22;
  --primary-temple-brown: #8b3a0e;

  --primary-white: #ffffff;
  --primary-black: #111111;

  /* Gradients */
  --gradient-1: linear-gradient(135deg,
      #ffd166 0%,
      #f39c12 40%,
      #e67e22 70%,
      #c75b12 100%);

  --gradient-2: linear-gradient(135deg,
      #8b3a0e 0%,
      #c75b12 40%,
      #e67e22 70%,
      #ffd166 100%);

  /* Animated / Background Gradient - Optimized for smoother animation */
  --gradient-bg: linear-gradient(-45deg,
      #ffd166 0%,
      #f39c12 25%,
      #e67e22 50%,
      #8b3a0e 75%,
      #ffd166 100%);

  /* Radial Divine Glow (Hero Sections) */
  --gradient-radial: radial-gradient(circle at center,
      #fff3b0 0%,
      #ffd166 25%,
      #f39c12 50%,
      #c75b12 75%,
      #6e2c00 100%);

  /* Glass Effect */
  --glass-bg: rgba(255, 209, 102, 0.12);
  --glass-border: rgba(255, 209, 102, 0.35);

  /* Shadows */
  --shadow: 0 8px 32px rgba(139, 58, 14, 0.25);
  --shadow-soft: 0 4px 20px rgba(243, 156, 18, 0.25);

  /* Transitions - Unified timing function */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

option {
  font-size: 8px;
}

.mobile-only {
  display: none !important;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.is-hidden {
  display: none !important;
}

.dropdown-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 5px 0;
}

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

#injectedAuth {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  overflow-y: auto;
}

.nav-mobile-submenu {
  display: none;
  flex-direction: column;
  background: rgba(255, 209, 102, 0.08);
  border-radius: 10px;
  margin: 6px 10px 0;
  padding: 4px 0;
  border: 1px solid rgba(255, 209, 102, 0.25);
  overflow: hidden;
  animation: slideDownMenu 0.3s ease;
}

.nav-mobile-submenu :hover {
  display: block;
}

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

.no-padding {
  padding: 0px !important;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  animation: gradientText 1s ease;
  background-size: 200% auto;
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Error Message Styling */
.error-message {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: none;
  border-left: 3px solid #e74c3c;
}

.error-message.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.btn-full {
  width: 100%;
}

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

/* Auth page close button */
.auth-container--with-close {
  position: relative;
}

.modal-close-btn--auth {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #333;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Field Error Styling */
.field-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.field-error.show {
  display: block;
}

/* Smooth Transitions and Animations */
.btn {
  display: inline-block;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--primary-white);
  box-shadow: 0 4px 15px rgba(155, 93, 224, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(155, 93, 224, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-black);
  border: 2px solid var(--primary-black);
}

.btn-secondary:hover {
  background: var(--primary-white);
  color: var(--primary-black);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Animated Background */
.animated-bg {
  background: var(--gradient-bg);
  background-size: 400% 400%;
  animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
    color: var(--primary-black);
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Glassmorphism Effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

/* Navigation Bar */
header {
  position: fixed;
  left: 0;
  top: 57px;
  width: 100%;
  z-index: 10001;
  /* Above modal backdrop (9995) */
  padding: 15px 0;
  background: transparent;
  transition: all 0.3s var(--transition-main);
}

/* Enable header transitions only after JS marks header ready */
header.transition-enabled {
  transition: var(--transition);
}

/* hamburger sits on top of everything so it never gets covered by the sliding menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  /* create its own stacking context */
  z-index: 10001;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.29);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  border-bottom: 1px solid rgba(139, 58, 14, 0.1);
  border-radius: 0 0 30px 30px;
  top: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  transition: all 1s ease-in-out;
}

.logo img {
  height: 100px;
  object-fit: contain;
  transition: var(--transition);
}

header.scrolled .logo {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo i {
  margin-right: 8px;
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: flex-end;
  margin-right: 50px;
}

.nav-link {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
  color: var(--primary-black);
}

header.scrolled .nav-link {
  color: var(--primary-black);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #db6816;
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 1;
  will-change: transform;
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-black);
  transform: scale3d(1.1, 1.1, 1.1);
}

header.scrolled .nav-link:hover,
header.scrolled .nav-link.active {
  color: var(--primary-black);
  transform: scale3d(1.1, 1.1, 1.1);
}

/* Page enter/exit subtle animation (keeps layout unchanged) */
.mobile-auth-btns {
  display: none;
}

.desktop-auth-btns {
  display: flex;
  align-items: center;
}

/* Page enter/exit subtle animation handled elsewhere */

/* Slight lift on primary buttons to improve perceived responsiveness */
.btn {
  transition:
    transform 220ms var(--transition-fast),
    box-shadow 220ms var(--transition-fast);
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 30px rgba(139, 58, 14, 0.12);
}

/* Hero background slides: smoother cross-fade */
.hero-bg-slide {
  transition:
    opacity 900ms cubic-bezier(0.2, 0, 0.2, 1),
    transform 900ms cubic-bezier(0.2, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* Only enable animations after JS applied class to avoid first-paint flashes */
body:not(.animations-ready) .page,
body:not(.animations-ready) .hero-bg-slide,
body:not(.animations-ready) .nav-link::after {
  transition: none !important;
}

/* Dropdown Menu Styles */
/* Package class selection dropdown */
.class-dropdown {
  width: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  padding: 5px;
  border-radius: 5px;
  font-weight: bold;
  color: var(--primary-black);
}

.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: var(--transition);
}

.dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 220px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: var(--shadow-glass);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10005;
  list-style: none;
  overscroll-behavior: contain;
  /* Prevent background scroll */
}

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

.nav-item-dropdown.open .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--primary-black);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-link:hover {
  background: rgba(255, 209, 102, 0.1);
  border-left-color: var(--primary-saffron);
  padding-left: 22px;
}

.dropdown-menu li:first-child .dropdown-link {
  border-radius: 9px 9px 0 0;
}

.dropdown-menu li:last-child .dropdown-link {
  border-radius: 0 0 9px 9px;
}

/* --- States Dropdown Enhancements --- */
#statesDropdown {
  width: 260px;
  max-width: 90vw;
  max-height: 400px;
  overflow-y: auto;

}

#statesDropdown::-webkit-scrollbar {
  width: 5px;
}

#statesDropdown::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

#statesDropdown::-webkit-scrollbar-thumb {
  background: var(--primary-saffron);
  border-radius: 10px;
}

.state-link {
  display: block;
  padding: 10px 20px;
  color: var(--primary-black);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.state-link:hover {
  background: rgba(243, 156, 18, 0.08);
  border-left-color: var(--primary-saffron);
  padding-left: 24px;
  color: var(--primary-deep-orange);
}

/* --- States Selector Container --- */
.state-selector-container {
  margin-right: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

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

.state-selector-container .state-dropdown-toggle {
  display: flex !important;
  align-items: center;
  margin-left: 20px;
  margin-right: -30px;
  gap: 8px;
  padding: 4px 8px;
  background: rgba(255, 209, 102, 0.2) !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 50px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  /* Reduced for mobile */
  color: var(--primary-black) !important;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.5px !important;
}

.state-selector-container .state-dropdown-toggle i:first-child {
  color: #f39c12;
  font-size: 1.1rem;
}

.state-selector-container .state-dropdown-toggle i:last-child {
  font-size: 0.7rem;
  margin-left: 2px;
  opacity: 0.7;
}

.state-selector-container .state-dropdown-toggle:hover {
  background: var(--gradient-1) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: transparent !important;
}

.state-selector-container .state-dropdown-toggle:hover i {
  color: white !important;
}

.mobile-header-right {
  display: flex;
  align-items: center;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.auth-btns {
  display: flex;
  gap: 10px;
}

#logout-btn-nav i {
  margin-right: 5px;
}

.auth-btns .btn,
.desktop-auth-btns .btn {
  padding: 10px 25px;
  font-size: 0.95rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

#login-btn {
  background: linear-gradient(135deg, #faa21a, #f37121);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(243, 113, 33, 0.4);
}

#agent-login-btn,
#logout-btn-nav {
  background: transparent;
  border: 1.5px solid #333;
  color: #333;
}

#agent-login-btn:hover,
#logout-btn-nav:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-black);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 3px;
  /* add slight glow so icon is visible over dark hero images */
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

header.scrolled .hamburger span {
  background: var(--primary-black);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 185px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--primary-white);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-subtitle {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-white);
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 15px rgb(0, 0, 0);
  z-index: 10;
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* image slider */
.unique-carousel-container {
  width: 100%;
  max-width: 1200px;
  perspective: 1200px;
  position: relative;
  margin: 60px auto;
  padding: 0 20px;
}

.unique-carousel {
  position: relative;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(255, 209, 102, 0.05) 0%,
      rgba(243, 156, 18, 0.05) 100%);
  border-radius: 30px;
  padding: 40px 20px;
}

.unique-slide {
  position: absolute;
  width: 380px;
  height: 280px;
  transition: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(139, 58, 14, 0.3);
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.unique-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-subtitle {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  color: rgb(0, 0, 0);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  z-index: 5;
  backdrop-filter: blur(5px);
  border-radius: 20px;
}

/* Gloss effect */
.unique-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.15),
      transparent 40%);
  pointer-events: none;
}

/* Reflection */
.unique-reflection {
  position: absolute;
  top: 270px;
  width: 440px;
  height: 260px;
  transform: scaleY(-1);
  opacity: 0.35;
  filter: blur(2px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  -webkit-mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5),
      transparent);
}

.unique-controls {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.unique-controls button {
  background: var(--primary-deep-orange);
  border: 2px solid var(--primary-saffron);
  color: white;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unique-controls button:hover {
  background: rgba(139, 58, 14, 0.8);
  box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
  transform: scale(1.1);
}

.unique-controls button:active {
  transform: scale(0.95);
}

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

.unique-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(139, 58, 14, 0.4);
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid var(--primary-saffron);
}

.unique-dot.unique-active {
  background: var(--primary-saffron);
  transform: scale(1.3);
}

/* Fullscreen Preview */
.unique-preview {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 12000;
  /* above header (10000) */
}

.unique-preview img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 16px;
  object-fit: contain;
}

/* close button repositioned for consistency */
.unique-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 12001;
}

.unique-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* navigation arrows for preview */
.unique-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12001;
  transition: background 0.3s;
}

.unique-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.unique-prev {
  left: 20px;
}

.unique-next {
  right: 20px;
}

/* responsive tweaks */
@media (max-width: 768px) {

  .unique-close,
  .unique-nav {
    font-size: 30px;
    width: 50px;
    height: 50px;
  }

  .unique-preview img {
    max-width: 95%;
    max-height: 80%;
  }
}

.unique-preview.unique-show {
  opacity: 1;
  pointer-events: all;
}

html.menu-open,
body.menu-open,
body.preview-open {
  overflow: hidden !important;
  height: 100vh !important;
  position: relative !important;
}

/* hide header and top bar while preview is open */
body.preview-open header,
body.preview-open .top-header {
  visibility: hidden;
  pointer-events: none;
}

/* About Section Redesign */
.about-section {
  background: linear-gradient(135deg,
      rgba(243, 156, 18, 0.05) 0%,
      rgba(255, 209, 102, 0.05) 100%);
  padding: 20px 0;
}

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

.about-images {
  position: relative;
  height: 500px;
}

.about-image-stack {
  position: relative;
  height: 100%;
}

.about-image-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 280px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(139, 58, 14, 0.2);
  z-index: 2;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(139, 58, 14, 0.2);
  z-index: 1;
}

.about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gradient-1);
  color: white;
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(139, 58, 14, 0.3);
}

.about-badge i {
  font-size: 1.5rem;
}

.about-badge span {
  font-size: 0.9rem;
  line-height: 1.3;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-saffron);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  width: fit-content;
}

.about-tagline i {
  font-size: 1.2rem;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-black);
  margin: 0;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

.feature-content h4 {
  font-size: 1.2rem;
  margin: 0 0 5px 0;
  color: var(--primary-black);
  font-weight: 600;
}

.feature-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 400px;
  }

  .about-image-main {
    width: 240px;
    height: 300px;
  }

  .about-image-secondary {
    width: 260px;
    height: 240px;
  }

  .about-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .unique-controls {
    margin-top: 40px;
  }

  #statesDropdown {
    left: 125px !important;
    top: 185px !important;
  }

  .about-wrapper {
    gap: 30px;
  }

  .about-images {
    height: 300px;
  }

  .about-image-main {
    width: 180px;
    height: 240px;
  }

  .about-image-secondary {
    width: 200px;
    height: 180px;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-tagline {
    font-size: 0.9rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .feature-content h4 {
    font-size: 1rem;
  }
}

/* Highlights Section */
.highlights {
  background-color: #f9f9ff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.highlight-card {
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border-radius: 20px;
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--gradient-1);
  color: var(--primary-white);
}

.highlight-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Destinations Section */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
}

/* redesigned destination card matching package style */
.destination-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.destination-card .destination-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.destination-card .destination-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.destination-card .package-details {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 15px 0 20px;
}

.destination-card .package-details span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  color: var(--primary-black);
}

.destination-card .destination-inclusions ul {
  margin: 0 0 20px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.destination-card .destination-footer {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.destination-card .destination-price {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* hide old overlay styles since no longer used */
.destination-overlay {
  display: none;
}

.destination-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-white);
  background: var(--gradient-1);
  padding: 5px 15px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 15px;
}

.destination-btns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Packages Section */
.packages {
  background-color: #f9f9ff;
}

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

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

.package-card {
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.package-content {
  padding: 25px;
}

.package-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.package-details {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

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

.package-inclusions {
  margin: 20px 0;
}

.package-inclusions h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.package-inclusions ul {
  margin-left: 20px;
}

.package-inclusions li {
  list-style: disc;
  margin-bottom: 5px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
  flex-direction: column;
}

.package-price {
  display: flex;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 auto;
}

/* Testimonials */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 5px;
}

.testimonial-content {
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  font-family: serif;
  color: var(--primary-purple);
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary-purple);
  transform: scale(1.2);
}

/* Latest Updates Section */
.latest-updates {
  background: linear-gradient(135deg, #f9f5eb 0%, #fff 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.vertical-ticker-container {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px 40px;
  margin-bottom: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.2);
  }

  50% {
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
  }

  100% {
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.2);
  }
}

.vertical-ticker-header {
  color: var(--primary-temple-brown);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

.vertical-ticker-window {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.vertical-ticker-content {
  display: flex;
  flex-direction: column;
  animation: scrollVertical 20s linear infinite;
}

.vertical-ticker-window:hover .vertical-ticker-content {
  animation-play-state: paused;
}

@keyframes scrollVertical {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.ticker-item {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.ticker-item-title {
  color: var(--primary-deep-orange);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 5px;
}

.ticker-item-desc {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.update-card {
  padding: 30px;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.update-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 209, 102, 0.1) 0%,
      transparent 70%);
  transform: rotate(30deg);
  transition: 0.5s;
}

.update-card:hover::before {
  transform: rotate(30deg) translate(10%, 10%);
}

.update-date {
  display: inline-block;
  background: var(--gradient-1);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.update-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.update-card p {
  color: #666;
  margin-bottom: 20px;
}

.update-link {
  color: var(--primary-saffron);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.update-link i {
  transition: transform 0.3s;
}

.update-link:hover i {
  transform: translateX(5px);
}

/* Call to Action */
.cta {
  padding: 100px 0;
  text-align: center;
  color: var(--primary-white);
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* Footer */
footer {
  background: var(--primary-temple-brown);
  color: var(--primary-white);
  padding: 80px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-1);
}

.tour-link {
  display: inline;
  padding: 12px 20px;
  color: var(--primary-white);
  font-weight: lighter;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: inline;
  padding: 12px 20px;
  color: var(--primary-white);
  font-weight: lighter;
  opacity: 0.8;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-purple);
  padding-left: 25px;
  border-left-color: var(--primary-saffron);
  background: rgba(255, 209, 102, 0.1);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info i {
  margin-right: 15px;
  color: var(--primary-purple);
  font-size: 1.2rem;
  margin-top: 3px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gradient-1);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Page Styles - Initially Hidden */
.page {
  display: none;
  min-height: 100vh;
}

.login-align {
  padding-top: 1px;
}

.page.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Authentication Login Pages - Inline Page Sections (shown between header and footer) */

.is-hidden {
  display: none !important;
}

.auth-container {
  width: 100%;
  max-width: 450px;
  padding: 50px 40px;
  border-radius: 24px;
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.auth-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 0.95rem;
  color: #666;
}

.auth-footer a {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 20px;
  margin-bottom: 20px;
  min-height: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-black);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-black);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  border: #1111115a 1px solid;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(155, 93, 224, 0.2);
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.auth-footer a {
  color: var(--primary-purple);
  font-weight: 600;
}

/* User Dashboard */
.dashboard {
  padding-top: 100px;
}

.dashboard-header {
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  color: var(--primary-white);
}

.dashboard-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.dashboard-card {
  padding: 30px;
  border-radius: 20px;
  transition: var(--transition);
}

.dashboard-card:hover {
  transform: translateY(-5px);
}

.dashboard-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-card h3 i {
  color: var(--primary-purple);
}

.booked-tours li,
.upcoming-trips li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booked-tours li:last-child,
.upcoming-trips li:last-child {
  border-bottom: none;
}

.trip-date {
  background: var(--gradient-1);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

.profile-info li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}

.profile-info li:last-child {
  border-bottom: none;
}

.profile-info span:first-child {
  font-weight: 600;
}

.logout-btn {
  text-align: center;
  margin-top: 50px;
}

/* Booking Page */
.booking-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 40px;
  border-radius: 30px;
}

.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: rgb(46, 0, 0);
  font-weight: 800;
}

.booking-header p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.1rem;
}

.form-section {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-section.no-bg {
  padding: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
}

.section-title-small {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-temple-brown);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-saffron);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.1);
}

/* Class Preference Options */
.class-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.class-radio {
  flex: 1;
  min-width: 100px;
  cursor: pointer;
  position: relative;
}

.class-radio input {
  position: absolute;
  opacity: 0;
}

.class-radio span {
  display: block;
  padding: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.class-radio input:checked+span {
  background: var(--gradient-1);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

/* Traveler Cards */
.traveler-card {
  background: rgba(255, 255, 255, 0.3);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.traveler-number {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.banner {
  width: 100%;
  margin: 0 auto;
}

.banner-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 180px;
}

/* Payment Summary */
.payment-summary-section {
  background: rgba(243, 156, 18, 0.05);
}

.payment-details-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-item {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #444;
}

.payment-item span:first-child {
  font-weight: 600;
  color: #666;
}

.payment-item span:last-child {
  font-weight: 700;
  color: #333;
}

.payment-item.border-top {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.payment-item.total {
  font-size: 1.3rem;
  color: var(--primary-saffron);
  margin-top: 5px;
}

.payment-item.total span:last-child {
  color: var(--primary-temple-brown);
}

/* Instructions & Terms */
.instructions-box {
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  background: rgba(52, 152, 219, 0.05);
  border: 1px solid rgba(52, 152, 219, 0.1);
}

.instructions-box h4 {
  color: var(--primary-temple-brown);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.instructions-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.terms-acceptance {
  margin-bottom: 30px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
}

.label-text a {
  color: var(--primary-temple-brown);
  text-decoration: underline;
}

.submit-booking-btn {
  width: 100%;
  padding: 18px;
  border-radius: 15px;
  border: none;
  background: var(--gradient-1);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.submit-booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
}

.submit-booking-btn:active {
  transform: translateY(-1px);
}

/* Category Filter */
.category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  border-radius: 50px;
  background: var(--glass-bg);
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 30px;
  border: 1px solid;
}

.filter-btn.active {
  background: var(--gradient-1);
  color: white;
}

.filter-btn:hover:not(.active) {
  background: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 30px;
    transition: var(--transition);
    /* intentionally lower than header/hamburger to keep toggle visible */
    z-index: 9000;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu .nav-link {
    color: var(--primary-black);
  }

  .nav-menu .nav-link::after {
    background: var(--gradient-1);
  }

  .hamburger {
    display: flex;
  }

  /* Removed legacy hamburger styles */

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {

  /* Removed legacy mobile header structure and auth buttons */
  .box-size {
    width: 300px !important;
  }

  .unique-slide {
    width: 300px;
    height: 200px;
  }

  .form-control {
    width: 85%;
  }

  .btn {
    font-size: 0.8rem !important;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .package-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-form-container {
    padding: 30px 20px;
  }

  .destinations-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

/* --- New Styles for Package Details Page --- */
.package-details-hero {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 80px;
  /* Account for fixed header */
}

.package-details-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.package-details-hero .container {
  position: relative;
  z-index: 2;
  color: white;
  padding-bottom: 40px;
}

.package-details-hero h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.package-details-hero .meta-info {
  display: flex;
  gap: 20px;
  font-size: 1.1rem;
  flex-wrap: wrap;
}

.package-details-hero .meta-info span i {
  margin-right: 5px;
  color: var(--primary-gold);
}

/* Package Details Layout */
.package-details-wrapper {
  display: grid;
  grid-template-columns: 2fr 380px;
  gap: 30px;
  align-items: start;
  margin: 0 auto;
}

.package-details-container {
  padding-top: 120px;
}

.journey-details-section--spaced {
  margin-bottom: 30px;
}

.journey-details-title {
  color: var(--primary-saffron);
  margin-bottom: 20px;
}

/* Included Section with Circular Icons */
.package-included-section {
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary-saffron);
}

.included-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary-temple-brown);
}

.included-icons-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: 20px;
}

.included-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 50px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-saffron);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background: white;
}

.included-icon-item:hover .icon-circle {
  background: var(--primary-saffron);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.included-icon-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
}

.day-details-title {
  color: var(--primary-saffron);
  margin-bottom: 10px;
}

.itinerary-download-wrapper--spaced {
  margin-top: 20px;
}

.niyam-section--spaced {
  margin-top: 30px;
}

.reviews-section--spaced {
  margin-top: 50px;
  margin-bottom: 50px;
}

.review-star {
  color: #ffb400;
}

.contact-strong {
  font-weight: 700;
}

.sidebar-enquiry-btn {
  margin-top: 10px;
}

.class-selection-details {
  margin: 20px 0;
}

.class-selection-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.class-dropdown--details {
  width: 100%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
}

.package-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Carousel */
.pkg-carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 450px;
}

.pkg-slide {
  background-color: #f0f0f0;
  /* placeholder while image loads */
}

.pkg-slides {
  position: relative;
  height: 420px;
}

.pkg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.pkg-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pkg-slide.active {
  opacity: 1;
}

.pkg-carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.pkg-carousel-controls button {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.pkg-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.pkg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  display: inline-block;
  cursor: pointer;
}

.pkg-dot.active {
  background: var(--primary-saffron);
  transform: scale(1.2);
}

.package-meta h1 {
  font-size: 2rem;
  margin: 16px 0 8px;
}

.package-includes .includes-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.include-item {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(139, 58, 14, 0.06);
}

/* Itinerary accordion */
.itinerary-section {
  padding: 20px;
}

.itinerary-section h2 {
  margin-bottom: 12px;
}

.itinerary-accordion .accordion-item {
  border-top: 1px solid #eee;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-toggle i {
  transition: transform 0.25s ease;
}

.accordion-toggle i.rotated {
  transform: rotate(180deg);
}

.accordion-panel {
  padding: 0 16px 16px 16px;
  color: #444;
}

/* Sidebar */
.details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.details-sidebar .price-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 10px 0;
}

.details-sidebar .sidebar-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.contact-box {
  padding: 20px;
  margin: 0 auto;
  width: 500px;
}

.details-sidebar .contact-box .form-control {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

@media (max-width: 992px) {
  .package-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .package-main {
    display: contents;
  }

  .pkg-carousel {
    order: 1;
    height: 350px;
    width: 530px;
  }

  .package-included-section {
    order: 2;
  }

  .package-meta {
    order: 3;
  }

  .details-sidebar {
    order: 4;
  }

  .itinerary-section {
    order: 5;
  }

  .niyam-section {
    order: 6;
  }

  .pkg-slides {
    height: 320px;
  }
}

/* Features Section Styles */
.features-section {
  background: linear-gradient(135deg,
      rgba(255, 209, 102, 0.05) 0%,
      rgba(243, 156, 18, 0.05) 100%);
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 1);
  border-color: var(--primary-saffron);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-temple-brown);
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-black);
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.details-section {
  padding: 60px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.details-card {
  padding: 30px;
  border-radius: 20px;
}

.details-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.highlights-list {
  list-style: none;
  margin: 20px 0;
}

.highlights-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 15px;
}

.highlights-list li i {
  color: var(--primary-saffron);
  width: 20px;
  margin-top: 4px;
}

.info-table {
  width: 100%;
  margin: 20px 0;
}

.info-table tr td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-table tr td:first-child {
  font-weight: 600;
  width: 40%;
}

.info-table i.fa-check-circle {
  color: green;
  margin-right: 5px;
}

.info-table i.fa-times-circle {
  color: red;
  margin-right: 5px;
}

.policy-box {
  padding: 30px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.02);
  margin: 20px 0;
}

.policy-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Sidebar Icons (services) - placed inside the right column below Important Policies */
.sidebar-icons {
  padding: 14px 18px;
  border-radius: 12px;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.02);
}

.sidebar-icons-grid {
  display: grid;
  gap: 24px;

  grid-template-columns: auto auto;
  justify-items: center;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(20% - 4.8px);
  /* five items per row on desktop */
  min-width: 60px;
}

.service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(75, 31, 46, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-icon {
  gap: 8px;
}

.service-icon i {
  color: #fff;
  font-size: 18px;
  /* two icons fit comfortably */
  line-height: 1;
  transition: 0.5s ease-in-out;
}

.service-label {
  margin-top: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-black);
  font-size: 0.95rem;
}

.service-item:hover .service-icon,
.service-item:hover .service-icon i {
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(75, 31, 46, 0.28);
  background: var(--primary-white);
  color: gold;
}

/* Tablet: 3 per row */
@media (max-width: 992px) {
  .service-item {
    width: calc(33.333% - 16px);
  }

  .sidebar-icons-grid {
    gap: 18px;
  }
}

/* Mobile: 2 per row */
@media (max-width: 576px) {
  .unique-carousel-container {
    margin: 0px auto;
  }

  .container {
    padding: 25px 15px;
  }

  .latest-updates {
    padding: 10px 15px;
  }

  .service-item {
    width: calc(50% - 12px);
  }

  .service-icon {
    width: 72px;
    height: 72px;
  }

  .service-icon i {
    font-size: 22px;
  }
}

.book-now-sticky {
  position: sticky;
  top: 100px;
}

.price-card {
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 10px 0;
}

.price-card .btn {
  width: 100%;
  margin: 10px 0;
}

.sharing-info {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* --- New Styles for Dynamic Traveler Fields & Booking Addons --- */
.traveler-dynamic-fields {
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}

.traveler-dynamic-fields h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.traveler-entry {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  align-items: center;
}

.traveler-entry .form-group {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .traveler-entry {
    grid-template-columns: 1fr;
  }
}

.train-info-fields {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.train-info-fields h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Top Header Section */
.top-header {
  color: var(--primary-white);
  padding: 10px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  z-index: 10002;
  /* Top-most */
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.header-contact {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.header-contact a {
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-white);
  text-decoration: none;
  white-space: nowrap;
}

.header-contact a:hover {
  scale: 1.1;
}

.header-contact i {
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.social-links a {
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
}

.social-links a i.fa-facebook-f {
  color: #1877f2;
}

.social-links a i.fa-instagram {
  color: #e4405f;
}

.social-links a i.fa-youtube {
  color: #ff0000;
}

.social-links a i.fa-twitter {
  color: #1da1f2;
}

.social-links a i.fa-whatsapp {
  color: #25d366;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
}

.social-links a {
  scale: 1.2;
  background-color: var(--primary-white);
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

/* Social Media Icons with Brand Colors */
.social-links a[href*="facebook"] {
  color: #1877f2;
}

.social-links a[href*="facebook"]:hover {
  color: #165ee0;
  text-shadow: 0 0 10px rgba(24, 119, 242, 0.5);
}

.social-links a[href*="instagram"]:hover {
  filter: drop-shadow(0 0 8px rgba(224, 57, 151, 0.6));
}

.social-links a[href*="youtube"] {
  color: #ff0000;
}

.social-links a[href*="youtube"]:hover {
  color: #cc0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.social-links a[href*="twitter"] {
  color: #1da1f2;
}

.social-links a[href*="twitter"]:hover {
  color: #1a8cd8;
  text-shadow: 0 0 10px rgba(29, 161, 242, 0.5);
}

.social-links a[href*="linkedin"] {
  color: #0a66c2;
}

.social-links a[href*="linkedin"]:hover {
  color: #084495;
  text-shadow: 0 0 10px rgba(10, 102, 194, 0.5);
}

.social-links a[href*="whatsapp"],
#whatsapp,
.footer-col .social-icons a[href*="whatsapp"] {
  color: #25d366;
}

.social-links a[href*="whatsapp"]:hover,
#whatsapp:hover,
.footer-col .social-icons a[href*="whatsapp"]:hover {
  color: #1fa854;
  text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

/* Footer Social Icons with Brand Colors */
.social-icons a[href*="facebook"],
.footer-col .social-icons a[href*="facebook"] {
  background: #1877f2;
}

.social-icons a[href*="facebook"]:hover,
.footer-col .social-icons a[href*="facebook"]:hover {
  background: #165ee0;
  box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.social-icons a[href*="instagram"],
.footer-col .social-icons a[href*="instagram"] {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
}

.social-icons a[href*="instagram"]:hover,
.footer-col .social-icons a[href*="instagram"]:hover {
  box-shadow: 0 5px 20px rgba(224, 57, 151, 0.6);
}

.social-icons a[href*="youtube"],
.footer-col .social-icons a[href*="youtube"] {
  background: #ff0000;
}

.social-icons a[href*="youtube"]:hover,
.footer-col .social-icons a[href*="youtube"]:hover {
  background: #cc0000;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.social-icons a[href*="twitter"],
.footer-col .social-icons a[href*="twitter"] {
  background: #1da1f2;
}

.social-icons a[href*="twitter"]:hover,
.footer-col .social-icons a[href*="twitter"]:hover {
  background: #1a8cd8;
  box-shadow: 0 5px 20px rgba(29, 161, 242, 0.4);
}

.social-icons a[href*="linkedin"],
.footer-col .social-icons a[href*="linkedin"] {
  background: #0a66c2;
}

.social-icons a[href*="linkedin"]:hover,
.footer-col .social-icons a[href*="linkedin"]:hover {
  background: #084495;
  box-shadow: 0 5px 20px rgba(10, 102, 194, 0.4);
}

.social-icons a[href*="whatsapp"],
.footer-col .social-icons a[href*="whatsapp"] {
  background: #25d366;
}

.social-icons a[href*="whatsapp"]:hover,
.footer-col .social-icons a[href*="whatsapp"]:hover {
  background: #1fa854;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 1024px) {
  .top-header .container {
    gap: 15px;
    padding: 0 15px;
  }

  .header-contact {
    font-size: 0.9rem;
  }

  .social-links {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .top-header {
    padding: 10px 0;
  }

  .top-header .container {
    gap: 12px;
    padding: 0 12px;
    justify-content: space-between;
  }

  .header-contact {
    font-size: 0.8rem;
    gap: 8px;
  }

  .header-contact a {
    gap: 6px;
  }

  .header-contact i {
    font-size: 0.9rem;
  }

  .social-links {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .social-links a {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .top-header {
    padding: 8px 0;
  }

  .top-header .container {
    gap: 10px;
    padding: 0 10px;
    flex-wrap: nowrap;
  }

  .header-contact {
    font-size: 0.75rem;
    gap: 6px;
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .header-contact a {
    gap: 4px;
  }

  .header-contact i {
    font-size: 0.8rem;
  }

  .social-links {
    gap: 8px;
    order: 1;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .social-links a {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .top-header {
    padding: 6px 0;
  }

  .top-header .container {
    gap: 8px;
    padding: 0 8px;
  }

  .header-contact {
    font-size: 0.7rem;
    gap: 4px;
    order: 2;
    width: 100%;
  }

  .header-contact a {
    gap: 3px;
  }

  .header-contact i {
    font-size: 0.75rem;
  }

  .social-links {
    gap: 9px;
    order: 1;
    width: 100%;
    flex-wrap: nowrap;
  }

  .social-links a {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .top-header {
    padding: 5px 0;
  }

  .top-header .container {
    gap: 6px;
    padding: 0 6px;
  }

  .header-contact {
    font-size: 0.65rem;
    gap: 3px;
  }

  .header-contact a {
    gap: 2px;
  }

  .header-contact i {
    font-size: 0.7rem;
  }

  .social-links {
    gap: 4px;
  }

  .social-links a {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }
}

/* Class Selection Styles */
.class-options {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.class-radio {
  display: flex;
  align-items: center;
  gap: 5px;
}

.class-radio input[type="radio"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-saffron);
}

.class-radio label {
  cursor: pointer;
  font-size: 0.95rem;
  margin: 0;
}

/* Agent Dashboard Styles */
.agent-dashboard {
  min-height: 100vh;
  background: linear-gradient(135deg, #f9f5eb 0%, #fff 100%);
  padding-top: 150px;
}

.dashboard-header {
  background: var(--gradient-1);
  color: white;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.dashboard-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.dashboard-header p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.dashboard-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-left: 5px solid var(--primary-saffron);
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dashboard-card h3 {
  color: var(--primary-temple-brown);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.dashboard-card .stat-number {
  font-size: 2.5rem;
  color: var(--primary-saffron);
  font-weight: 700;
  margin-bottom: 10px;
}

.dashboard-card p {
  color: #666;
  font-size: 0.95rem;
}

.dashboard-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.dashboard-section h3 {
  color: var(--primary-temple-brown);
  margin-bottom: 20px;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--primary-saffron);
  padding-bottom: 10px;
}

.bookings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.bookings-table thead {
  background: #f5f5f5;
}

.bookings-table th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
  color: var(--primary-temple-brown);
  border-bottom: 2px solid var(--primary-saffron);
}

.bookings-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.bookings-table tbody tr:hover {
  background: #f9f9f9;
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-pending {
  background: #ffeaa7;
  color: #d63031;
}

.status-confirmed {
  background: #a8e6cf;
  color: #00b894;
}

.status-completed {
  background: #dfe6e9;
  color: #2d3436;
}

.logout-btn {
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

/* Contact Info Section */

/* --- Booking Page: Traveler Fields & Validation Styles --- */
.traveler-dynamic-fields h4 {
  margin-bottom: 12px;
  color: var(--primary-temple-brown);
}

.traveler-entry {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(139, 58, 14, 0.06);
}

.traveler-entry .sl-no {
  grid-column: 1 / -1;
  font-weight: 700;
  color: var(--primary-saffron);
}

.traveler-entry .form-group {
  margin: 0;
}

.traveler-entry .form-group label {
  font-size: 0.95rem;
}

.traveler-entry .field-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 6px;
  display: none;
}

.traveler-dynamic-fields .traveler-entry.fade-in {
  animation: fadeInUp 300ms ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: stack fields on small screens */
@media (max-width: 700px) {
  .traveler-entry {
    grid-template-columns: 1fr;
  }
}

/* Terms area */
.terms-group a {
  color: var(--primary-temple-brown);
  font-weight: 600;
}

.terms-group .field-error {
  margin-top: 8px;
}

/* ===== LOGIN SELECTION ===== */
.login-selection .selection-container {
  max-width: 400px;
  padding: 40px;
  text-align: center;
}

.selection-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.selection-buttons .btn {
  flex: 1;
}

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 240px 20px 60px;
}

.auth-container {
  max-width: 450px;
  width: 100%;
  padding: 40px;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: rgb(39, 0, 0);
}

.auth-header p {
  color: var(--primary-white);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(139, 58, 14, 0.2);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-saffron);
  box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.15);
}

.auth-footer {
  text-align: center;
  margin-top: 25px;
}

.auth-footer a {
  color: var(--primary-black);
  text-decoration: none;
}

/* ===== DASHBOARD LAYOUT ===== */
.dashboard {
  display: block;
  padding: 0;
}

.dashboard-wrapper {
  display: flex;
  width: 100vw;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: rgba(255, 209, 102, 0.2);
  backdrop-filter: blur(12px);
  border-right: 1px solid var(--glass-border);
  padding: 30px 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-header h2 {
  text-align: center;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 40px;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav li {
  padding: 15px 25px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-temple-brown);
  font-weight: 500;
}

.sidebar-nav li i {
  width: 20px;
  color: var(--primary-gold);
}

.sidebar-nav li:hover,
.sidebar-nav li.active {
  background: rgba(243, 156, 18, 0.2);
  border-left: 4px solid var(--primary-gold);
}

.main-content {
  flex: 1;
  margin-left: 260px;
  padding: 20px 30px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: white;
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.top-bar h1 {
  font-size: 1.8rem;
  color: var(--primary-temple-brown);
}

.user-info {
  font-weight: 600;
  color: var(--primary-deep-orange);
}

/* ===== CARDS & TABLES ===== */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-gold);
}

.stat-card h3 {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-temple-brown);
}

.table-container {
  overflow-x: auto;
  background: white;
  border-radius: 15px;
  padding: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  padding: 15px 10px;
  background: #f9f5eb;
  color: var(--primary-temple-brown);
  font-weight: 600;
}

td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}

tr:hover {
  background: #fef9e7;
}

.action-btn {
  padding: 6px 12px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  background: var(--primary-gold);
  color: white;
  margin-right: 5px;
}

.action-btn.delete {
  background: #e74c3c;
}

.action-btn.edit {
  background: #3498db;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-success {
  background: #d4edda;
  color: #155724;
}

.status-failed {
  background: #f8d7da;
  color: #721c24;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

/* ===== MODAL ===== */
.modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  max-width: 500px;
  width: 90%;
  padding: 30px;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-10px);
  opacity: 0;
  transition:
    transform 240ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 240ms ease;
}

.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
}

/* ===== BOOKING PAGE ===== */
.booking-page {
  background: linear-gradient(135deg, #f9f5eb, #fff);
  padding: 40px 0;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.booking-form-container {
  margin: 0 auto;
  padding: 40px;
}

.traveler-entry {
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.traveler-entry h4 {
  margin-bottom: 15px;
  color: var(--primary-temple-brown);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sidebar {
    width: 70px;
    overflow: hidden;
  }

  .sidebar-header h2,
  .sidebar-nav li span {
    display: none;
  }

  .main-content {
    margin-left: 70px;
  }
}

/* =========================================
   OPTIMIZED ANIMATIONS & EFFECTS
   Hardware-accelerated for smooth performance
   ========================================= */

/* Page Load Fade-In Animation */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered fade-in for card reveals */
.fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.fade-in-up:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in-up:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in-up:nth-child(4) {
  animation-delay: 0.4s;
}

.fade-in-up:nth-child(5) {
  animation-delay: 0.5s;
}

.fade-in-up:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Hover - Optimized Lift Effect (Hardware accelerated) */
.card-hover,
.package-card,
.destination-card,
.highlight-card,
.feature-card,
.dashboard-card,
.update-card {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.card-hover:hover,
.package-card:hover,
.destination-card:hover,
.highlight-card:hover,
.feature-card:hover,
.dashboard-card:hover,
.update-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 58, 14, 0.15);
}

/* Button Hover - Scale + Subtle Glow */
.btn {
  will-change: transform, box-shadow;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--primary-white);
}

/* Link Underline Slide Animation */
.nav-link::after,
.dropdown-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Input Focus Animation */
.form-control {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-saffron);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

/* Image Hover Zoom Effect */
.package-img,
.destination-img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

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

/* Smooth Dropdown Open/Close */
.dropdown-menu {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

/* Hero Slider - Smooth Fade */
.hero-bg-slide {
  transition: opacity 1.2s ease-in-out;
}

/* Testimonial Slider - Smooth */
.testimonial-track {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Filter Button Active State */
.filter-btn {
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.filter-btn:hover:not(.active) {
  transform: translateY(-1px);
}

.filter-btn.active {
  transform: scale(1.02);
}

/* Modal Animation - Slide + Fade */
.modal-content {
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient Text Animation */
.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Pulse Animation for CTAs */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

.cta .btn-primary {
  animation: pulse 2s ease-in-out infinite;
}

/* Skeleton Loading Animation */
.skeleton {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.1) 25%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.1) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s ease-in-out infinite;
}

@keyframes skeleton {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pulse 1s ease-in-out infinite;
}

.preloader-logo i {
  font-size: 3rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.preloader-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Focus Visible for Accessibility */
:focus-visible {
  outline: 2px solid var(--primary-saffron);
  outline-offset: 2px;
}

.btn:focus-visible,
.form-control:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.3);
}

/* ============================================================
   ANIMATION & TRANSITION IMPROVEMENTS
   All effects use transform + opacity only (no layout shifts)
   ============================================================ */

/* --- Hero text entrance --- */
@keyframes heroTextIn {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  animation: heroTextIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content p {
  animation: heroTextIn 0.85s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-btns {
  animation: heroTextIn 0.85s 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Disable hero entrance until animations are ready (avoids flash on first paint) */
body:not(.animations-ready) .hero-content h1,
body:not(.animations-ready) .hero-content p,
body:not(.animations-ready) .hero-btns {
  animation: none;
}

/* --- Section title scroll reveal --- */
.section-title {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-title.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure titles are visible if JS / IntersectionObserver is unavailable */
body:not(.animations-ready) .section-title {
  opacity: 1;
  transform: none;
  transition: none;
}

/* --- Fade-up base state (used by cards, highlight items, etc.) --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger sibling cards for a waterfall effect */
.fade-up:nth-child(2) {
  transition-delay: 0.08s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.16s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.24s;
}

/* Ensure cards are visible if animations not ready */
body:not(.animations-ready) .fade-up {
  opacity: 1;
  transform: none;
  transition: none;
}

/* --- CSS card hover lift (replaces inline JS transform) --- */
.highlight-card,
.destination-card,
.package-card,
.dashboard-card,
.update-card {
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.highlight-card:hover,
.destination-card:hover,
.package-card:hover,
.dashboard-card:hover,
.update-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(139, 58, 14, 0.22);
}

/* --- Button ripple on :active --- */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.btn:active::after {
  transform: scale(2.5);
  opacity: 0;
  transition: none;
}

/* --- Filter button active state transition --- */
.filter-btn {
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.18s ease,
    box-shadow 0.22s ease;
}

.filter-btn.active {
  transform: scale(1.05);
}

.filter-btn:hover:not(.active) {
  transform: scale(1.03);
}

/* --- Smooth accordion panel transition --- */
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    padding 0.25s ease;
}

.accordion-panel[style*="display: block"] {
  max-height: 600px;
  opacity: 1;
}

/* --- Testimonial slider smooth transition --- */
.testimonial-track {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Top-header fade-in on load --- */
@keyframes topHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Nav link enter animation --- */
@keyframes navLinkFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-menu .nav-link {
  animation: navLinkFadeIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav-menu li:nth-child(1) .nav-link {
  animation-delay: 0.05s;
}

.nav-menu li:nth-child(2) .nav-link {
  animation-delay: 0.1s;
}

.nav-menu li:nth-child(3) .nav-link {
  animation-delay: 0.15s;
}

.nav-menu li:nth-child(4) .nav-link {
  animation-delay: 0.2s;
}

.nav-menu li:nth-child(5) .nav-link {
  animation-delay: 0.25s;
}

body:not(.animations-ready) .nav-menu .nav-link {
  animation: none;
}

/* --- Ticker animation (ensure it's present) --- */
@keyframes animateTickerText {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.ticker-text span {
  display: inline-block;
  white-space: nowrap;
  animation: animateTickerText 22s linear infinite;
}

/* --- Auth page entrance --- */
.auth-container {
  animation: heroTextIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* --- Package details entrance --- */
.package-details-wrapper {
  animation: heroTextIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ============================================================
   END OF ANIMATION IMPROVEMENTS
   ============================================================ */

/* --- Niyam & Reviews Enhancement (Preserving Layout) --- */
.niyam-section {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-left: 5px solid var(--primary-saffron);
}

.niyam-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-temple-brown);
  display: flex;
  align-items: center;
  gap: 12px;
}

.niyam-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.niyam-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 10px;
  transition: transform 0.2s ease;
}

.niyam-item:hover {
  transform: translateX(10px);
}

.niyam-item i {
  color: var(--primary-saffron);
  font-size: 1.2rem;
  margin-top: 3px;
}

.niyam-item span {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.reviews-section {
  padding-bottom: 60px;
}

.reviews-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-grid {
  display: flex;
  gap: 25px;
}

.review-card {
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 400px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.star-rating {
  display: flex;
  gap: 5px;
  font-size: 0.9rem;
}

.review-text {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}

.author-img {
  width: 80px;
  border-radius: 50%;
}

.review-author {
  display: flex;
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.review-author strong {
  font-size: 1.1rem;
  color: var(--primary-black);
}

.review-author span {
  font-size: 0.85rem;
  color: #777;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

/* --- Journey Details & Itinerary Refinement --- */
.journey-details-section.glass {
  padding: 30px;
  border-left: 5px solid var(--primary-saffron);
}

.journey-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.journey-item {
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.journey-toggle {
  width: 100%;
  padding: 15px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

/* Details/Summary reset for static accordions */
.journey-item,
.accordion-item {
  border: none;
}

.journey-item>summary,
.accordion-item>summary {
  list-style: none;
}

.journey-item>summary::-webkit-details-marker,
.accordion-item>summary::-webkit-details-marker {
  display: none;
}

.journey-item[open] .toggle-arrow,
.accordion-item[open] .accordion-toggle i {
  transform: rotate(180deg);
}

.journey-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.journey-icon-circle {
  width: 40px;
  height: 40px;
  background-color: var(--primary-saffron);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(255, 126, 31, 0.3);
}

.journey-toggle span {
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
}

.toggle-arrow {
  color: #999;
  transition: transform 0.3s ease;
}

.journey-toggle.active .toggle-arrow {
  transform: rotate(180deg);
}

.journey-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.02);
}

.journey-panel p {
  padding: 15px 25px 20px 55px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Detailed Itinerary Title */
.itinerary-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #f39c12;
  /* Vibrant Orange */
  font-weight: 800;
  letter-spacing: -0.5px;
}

.itinerary-section--image-style {
  background: #fffaf0 !important;
  /* Cream Background */
  border: 1px solid rgba(243, 156, 18, 0.15) !important;
  border-radius: 24px !important;
  padding: 40px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03) !important;
  backdrop-filter: none !important;
}

.itinerary-accordion .accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
}

.itinerary-accordion .accordion-item:last-child {
  border-bottom: none;
}

.itinerary-accordion .accordion-toggle {
  padding: 20px 0;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.itinerary-accordion .accordion-toggle:hover {
  color: #f39c12;
}

.itinerary-accordion .accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  padding: 0 16px;
  /* Reduced vertical padding when closed */
}

.itinerary-card {
  background: #fff5e6;
  /* Light Orange/Cream sub-card */
  border-left: 5px solid #f39c12;
  border-radius: 12px;
  padding: 25px;
  margin: 10px 0 25px 0;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.05);
}

.itinerary-card-title {
  color: #f39c12;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.itinerary-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
  padding: 0 !important;
  /* Override panel padding */
}

.day-details {
  padding: 15px;
  background: rgba(255, 126, 31, 0.05);
  border-radius: 8px;
  margin-top: 10px;
  border-left: 4px solid var(--primary-saffron);
}

.itinerary-download-wrapper {
  display: flex;
  justify-content: flex-start;
  padding: 10px 0;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background-color: transparent;
  border: 2px solid var(--primary-black);
  color: var(--primary-black);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background-color: var(--primary-black);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-btn i {
  font-size: 1.1rem;
  color: #d32f2f;
  /* PDF Red */
}

.download-btn:hover i {
  color: white;
}

/* main card – soft, elevated, friendly */
.search-card {
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  background: #ffffff;
  max-width: 680px;
  width: 100%;
  padding: 2.2rem 2rem 2.5rem;
  border-radius: 2.5rem;
  box-shadow:
    0 20px 35px -8px rgba(0, 20, 30, 0.15),
    0 8px 12px -4px rgba(0, 20, 30, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.2s ease;
  /* Ensure the card is on top and allows dropdown overflow */
  position: relative;
  z-index: 1001;
  overflow: visible;
  /* Do NOT use transform here – it creates a stacking context that clips z-index */
}

.search-card:hover {
  /* Use box-shadow only instead of transform to avoid stacking context */
  box-shadow: 0 28px 40px -12px rgba(0, 35, 45, 0.2);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a2e3b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

h2 i {
  color: #d97746;
  /* warm saffron/orange hint */
  font-size: 2rem;
}

.subhead {
  font-size: 1rem;
  color: #4d6272;
  margin-bottom: 1.8rem;
  font-weight: 400;
  border-left: 4px solid #f2b17b;
  padding-left: 1rem;
  background: linear-gradient(to right, transparent, #fef7f1);
}

/* main search row */
.search-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border-radius: 4rem;
  border: 1.5px solid #e2eaf0;
  padding: 0.3rem 0.3rem 0.3rem 1.5rem;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(0, 30, 40, 0.03);
  /* Must be visible so the dropdown panel escapes below */
  overflow: visible;
  position: relative;
}

.search-row:focus-within {
  border-color: #c97e4d;
  box-shadow: 0 6px 16px rgba(220, 130, 60, 0.12);
}

/* input field */
.search-row input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 400;
  color: #1e2f3a;
  padding: 0.9rem 0.2rem 0.9rem 0;
  font-family: "Inter", sans-serif;
}

.search-row input::placeholder {
  color: #99b2c2;
  font-weight: 350;
  letter-spacing: -0.01em;
}

/* search button */
.search-btn {
  background: #d97746;
  /* warm earthy orange */
  border: none;
  color: white;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 12px rgba(217, 119, 70, 0.25);
}

.search-btn:hover {
  background: #c55f30;
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(200, 90, 40, 0.3);
}

.search-btn i {
  font-size: 1.4rem;
}

/* small hint under search bar */
.region-note {
  margin: 0.8rem 0 1.8rem 1rem;
  font-size: 0.9rem;
  color: #57758a;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.region-note i {
  color: #d97746;
  font-size: 0.9rem;
}

/* popular chips – user friendly, clickable (without js just visual) */
.popular-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 0.9rem;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 2px dashed #d7e1e9;
}

/* =====================================================
   CUSTOM SELECT DROPDOWN – search-card
   ===================================================== */

/* Wrapper makes the <ul> dropdown position relative to the search-row */
.custom-select-wrapper {
  position: relative;
  overflow: visible;
  cursor: pointer;
}

/* The text input looks like plain text inside the pill */
.custom-select-input {
  cursor: pointer;
}

.custom-select-input:focus {
  outline: none;
}

/* Always-visible chevron arrow button */
.custom-select-arrow {
  background: none;
  border: none;
  padding: 0 0.5rem 0 0;
  cursor: pointer;
  color: #d97746;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s;
  line-height: 1;
}

.custom-select-arrow:hover {
  color: #c55f30;
}

/* Rotate arrow when dropdown is open */
.custom-select-wrapper.open .custom-select-arrow i {
  transform: rotate(180deg);
}

/* The dropdown panel */
.custom-select-dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow:
    0 16px 40px -8px rgba(0, 30, 50, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  z-index: 9999;
  padding: 0.5rem 0;
  /* Hidden by default */
  opacity: 0;
  transform: translateY(-8px) scaleY(0.97);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Visible state */
.custom-select-wrapper.open .custom-select-dropdown {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: auto;
  overflow: visible;
}

/* Each option row */
.custom-select-dropdown li {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.custom-select-dropdown li:last-child {
  border-bottom: none;
}

.custom-select-dropdown li:hover {
  background: linear-gradient(to right, #fef6f0, #fff8f4);
}

/* Active / selected highlight */
.custom-select-dropdown li.selected {
  background: linear-gradient(to right, #fde8d8, #fef6f0);
}

.custom-select-dropdown li.selected .opt-label {
  color: #c55f30;
}

/* Option label (main text) */
.opt-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1e2f3a;
  line-height: 1.3;
}

/* Option description (sub-text) */
.opt-desc {
  font-size: 0.8rem;
  color: #7a9aaa;
  margin-top: 1px;
  line-height: 1.3;
}

/* for smaller screens */
@media (max-width: 500px) {
  .search-card {
    padding: 1.8rem 1.2rem 2rem;
    border-radius: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .search-row {
    padding-left: 1rem;
  }

  .search-btn {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.2rem;
  }

  .chip {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

/* ===================================================
   ADMIN DASHBOARD STYLES
   =================================================== */

.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: linear-gradient(180deg,
      rgba(255, 209, 102, 0.15) 0%,
      rgba(255, 209, 102, 0.05) 100%);
  backdrop-filter: blur(12px);
  border-right: 1px solid var(--glass-border);
  padding: 20px 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.sidebar-header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid rgba(139, 58, 14, 0.1);
  margin-bottom: 20px;
}

.sidebar-header h2 {
  font-size: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sidebar-header p {
  font-size: 0.8rem;
  color: #666;
  margin-top: 5px;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav li {
  padding: 14px 25px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-temple-brown);
  font-weight: 500;
  border-left: 3px solid transparent;
}

.sidebar-nav li i {
  width: 20px;
  color: var(--primary-gold);
  text-align: center;
}

.sidebar-nav li:hover,
.sidebar-nav li.active {
  background: rgba(243, 156, 18, 0.15);
  border-left-color: var(--primary-gold);
}

.sidebar-section-label {
  padding: 8px 25px;
  font-size: 0.75rem;
  color: #999;
  font-weight: 700;
  letter-spacing: 1px;
  border-left: 3px solid transparent;
  cursor: default;
}

.sidebar-section-label:hover {
  background: transparent !important;
  border-left-color: transparent !important;
}

.sidebar-nav .submenu {
  display: none;
  background: rgba(0, 0, 0, 0.03);
}

.sidebar-nav .submenu.show {
  display: block;
}

.sidebar-nav .submenu li {
  padding: 10px 25px 10px 50px;
  font-size: 0.9rem;
}

.admin-main-content {
  flex: 1;
  margin-left: 280px;
  padding: 30px;
  background: linear-gradient(135deg, #f9f5eb 0%, #fff 100%);
  min-height: 100vh;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.content-header h1 {
  font-size: 1.8rem;
  color: var(--primary-temple-brown);
  margin: 0;
}

.content-header .admin-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.content-header .admin-user-info span {
  font-weight: 600;
  color: var(--primary-deep-orange);
}

.content-header .admin-user-info .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-gold);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-temple-brown);
}

.table-container {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
  margin-bottom: 30px;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.table-header h3 {
  color: var(--primary-temple-brown);
  margin: 0;
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 250px;
  font-family: inherit;
}

.filter-select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  font-family: inherit;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 15px 12px;
  background: #f9f5eb;
  color: var(--primary-temple-brown);
  font-weight: 600;
  border-bottom: 2px solid var(--primary-gold);
  white-space: nowrap;
}

.admin-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.admin-table tr:hover {
  background: #fef9e7;
}

.action-btns {
  display: flex;
  gap: 8px;
}

.action-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: 0.3s;
}

.action-btn.view {
  background: var(--primary-gold);
  color: white;
}

.action-btn.edit {
  background: #3498db;
  color: white;
}

.action-btn.delete {
  background: #e74c3c;
  color: white;
}

.action-btn.toggle {
  background: #27ae60;
  color: white;
}

.action-btn:hover {
  transform: scale(1.05);
}

.status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-success {
  background: #d4edda;
  color: #155724;
}

.status-failed {
  background: #f8d7da;
  color: #721c24;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-active {
  background: #d4edda;
  color: #155724;
}

.status-inactive {
  background: #f8d7da;
  color: #721c24;
}

.status-paid {
  background: #d4edda;
  color: #155724;
}

.mobile-header-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 10000 !important;
  background: #ffffff !important;
  /* Initial solid background for the whole unit */
  transition: all 0.3s ease !important;
}

.mobile-header-wrapper.scrolled #navbar {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Admin Modal */
.admin-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.admin-modal.show {
  display: flex;
}

.admin-modal-content {
  max-width: 620px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px 30px 30px;
  position: relative;
  background: white;
  border-radius: 20px;
  animation: adminSlideIn 0.3s ease;
}

@keyframes adminSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-modal-content h3 {
  color: var(--primary-temple-brown);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-gold);
}

.close-admin-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  background: none;
  border: none;
  line-height: 1;
}

.close-admin-modal:hover {
  color: var(--primary-deep-orange);
}

/* Modal Form */
.modal-form .form-group {
  margin-bottom: 15px;
}

.modal-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--primary-temple-brown);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.modal-form .form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
}

.modal-form .form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}

.modal-form textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.modal-form .btn-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.modal-form .btn-group .btn {
  flex: 1;
  padding: 12px;
}

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

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

/* Itinerary Styles */
.itinerary-days {
  margin-top: 15px;
}

.itinerary-day {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 3px solid var(--primary-gold);
}

.itinerary-day h4 {
  margin-bottom: 10px;
  color: var(--primary-temple-brown);
}

.add-day-btn {
  background: var(--primary-gold);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.remove-day-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  float: right;
  font-family: inherit;
}

/* Image Preview */
.image-preview {
  width: 100%;
  height: 150px;
  border: 2px dashed #ddd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  overflow: hidden;
}

.image-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.image-preview p {
  color: #999;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 8px 20px;
  border: 1px solid var(--primary-gold);
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-family: inherit;
}

.category-tab.active {
  background: var(--gradient-1);
  color: white;
  border-color: transparent;
}

/* Settings Section */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.settings-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.settings-card h3 {
  color: var(--primary-temple-brown);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.settings-card .form-group {
  margin-bottom: 15px;
}

.settings-form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
}

.settings-form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--primary-gold);
}

input:checked+.slider:before {
  transform: translateX(26px);
}

/* Admin Sections (toggled by JS) */
.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

/* Table image thumbnail */
.tbl-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}

/* Notification/label rows */
.settings-notification-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .sidebar {
    width: 70px;
  }

  .sidebar-header h2,
  .sidebar-header p,
  .sidebar-nav li span,
  .sidebar-section-label span {
    display: none;
  }

  .sidebar-nav li {
    justify-content: center;
    padding: 14px;
  }

  .sidebar-nav li i {
    margin: 0;
  }

  .sidebar-section-label {
    padding: 8px 14px;
  }

  .admin-main-content {
    margin-left: 70px;
  }
}

/* ===================================================
   CONTACT PAGE STYLES
   =================================================== */

body.contact-page {
  background-color: #fcf8f2;
}

.contact-wrapper {
  padding-top: 150px;
  padding-bottom: 80px;
}

.contact-section {
  opacity: 1;
  transform: none;
  min-height: 80vh;
}

.contact-card {
  background: #fffdf5;
  border: 1px solid rgba(255, 209, 102, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-left h3,
.contact-right h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-icon-box {
  font-size: 1.2rem;
  margin-top: 5px;
  margin-right: 15px;
  color: var(--primary-black);
}

.contact-info-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
}

.contact-info-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.contact-social-row {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.social-btn.whatsapp-icon {
  color: #25d366;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

.contact-form-group:last-of-type {
  margin-bottom: 25px;
}

.form-control-custom {
  width: 100%;
  padding: 12px 15px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-family: "Open Sans", sans-serif;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-control-custom:focus {
  border-color: var(--primary-saffron);
}

.form-control-custom.textarea-resize {
  resize: vertical;
}

.contact-submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 40px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-submit-btn i {
  font-size: 1.2rem;
}

/* logout btn nav hidden */
.btn-hidden {
  display: none !important;
}

/* ===================================================
   USER DASHBOARD STYLES
   =================================================== */

.user-dashboard-section {
  background-color: #fff9f0;
  min-height: 100vh;
  padding-top: 280px;
  padding-bottom: 60px;
  font-family: "Poppins", sans-serif;
}

.user-dashboard-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.user-dashboard-header {
  background: linear-gradient(135deg, #fcd05b, #db6816);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  color: white;
  box-shadow: 0 10px 30px rgba(219, 104, 22, 0.2);
}

.user-dashboard-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.user-dashboard-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 400;
}

.user-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.user-dashboard-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 6px solid #e28743;
  position: relative;
}

.user-dashboard-card h3 {
  font-size: 1.3rem;
  color: #8b3a00;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.user-dashboard-card h3 i {
  color: #e28743;
}

.user-tours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.user-tour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

.user-tour-item:last-child {
  border-bottom: none;
  padding-bottom: 5px;
}

.user-tour-item strong {
  color: #333;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.user-tour-item p {
  color: #777;
  font-size: 0.9rem;
  margin: 0;
}

.trip-badge {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.trip-badge.completed {
  background: #e28743;
  color: white;
}

.trip-badge.confirmed {
  background: #f1b749;
  color: #6e3000;
  font-weight: 600;
}

.user-profile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.user-profile-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #f0f0f0;
  padding-bottom: 10px;
}

.user-profile-item:last-child {
  border-bottom: none;
}

.user-profile-item .label {
  color: #333;
  font-weight: 600;
}

.user-profile-item .value {
  color: #555;
}

.user-dashboard-cta {
  text-align: center;
  margin-top: 60px;
}

.user-dashboard-cta h3 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #df7a22;
  font-weight: 700;
}

.user-dashboard-cta p {
  margin-bottom: 40px;
  color: #555;
  font-size: 1.05rem;
}

.user-dashboard-cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.user-cta-btn-primary {
  background: linear-gradient(135deg, #fcd05b, #db6816);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(219, 104, 22, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
}

.user-cta-btn-primary:hover {
  transform: translateY(-3px);
}

.user-cta-btn-secondary {
  background: white;
  border: 1.5px solid #333;
  color: #333;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
}

.user-cta-btn-secondary:hover {
  background: #f5f5f5;
}

.user-logout-wrap {
  text-align: center;
  margin-top: 50px;
}

.user-logout-btn {
  background: transparent;
  color: #888;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
  font-family: "Poppins", sans-serif;
}

.user-logout-btn:hover {
  background: #f5f5f5;
}

.states-dropdown-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 5px 0;
}

/* Responsive adjustments for Details Pages (Package & Travel Options) */
@media (max-width: 576px) {
  .hero-subtitle {
    font-size: 0.8rem !important;
    bottom: 30px;
    letter-spacing: 2px !important;
  }

  .gallery-subtitle {
    font-size: 0.65rem !important;
    letter-spacing: 1.5px !important;
  }

  .hero {
    min-height: 35vh;
  }

  .package-details-container {
    padding: 10px 12px;
  }

  .package-details-wrapper {
    gap: 15px;
  }

  .package-meta h1 {
    font-size: 1.2rem !important;
    margin: 12px 0 6px !important;
    line-height: 1.4 !important;
    letter-spacing: 1px !important;
  }

  .package-meta .meta-info {
    font-size: 0.8rem;
    gap: 10px;
  }

  .itinerary-title,
  .niyam-section h2,
  .journey-details-title,
  .included-title,
  .section-title h2 {
    font-size: 1.35rem !important;
    margin-bottom: 15px !important;
    letter-spacing: 2px !important;
    word-spacing: 3px !important;
  }

  .price-card h3,
  .contact-box h4,
  .policy-box h4,
  .itinerary-card-title {
    font-size: 1.1rem !important;
    letter-spacing: 1.5px !important;
  }

  .glass {
    padding: 15px !important;
    border-radius: 12px !important;
  }

  .itinerary-section,
  .niyam-section,
  .price-card,
  .contact-box,
  .policy-box,
  .journey-details-section,
  .review-card {
    padding: 15px !important;
    margin-bottom: 15px !important;
    width: 330px;
    overflow: hidden;
  }

  .details-sidebar .price-card .price {
    font-size: 1.35rem !important;
  }

  .included-icons-container {
    gap: 10px !important;
  }

  .included-icon-item .icon-circle {
    width: 35px !important;
    height: 35px !important;
    font-size: 0.8rem !important;
  }

  .included-icon-item span {
    font-size: 0.7rem !important;
    letter-spacing: 1px !important;
  }

  .pkg-carousel {
    height: 200px !important;
    width: 100% !important;
  }

  .pkg-slides {
    height: 200px !important;
  }

  .accordion-toggle,
  .journey-toggle {
    padding: 10px 12px !important;
    font-size: 0.9rem !important;
  }

  .itinerary-card p,
  .niyam-list span,
  .journey-panel p,
  .price-card p,
  .contact-box p,
  .policy-box p,
  .review-text {
    font-size: 0.7rem !important;
    line-height: 1.5 !important;
    letter-spacing: 0.5px !important;
    word-spacing: 2px !important;
  }

  .policy-box li {
    font-size: 0.8rem !important;
    margin-left: 20px;
  }

  .package-card {
    border-radius: 12px !important;
  }

  .package-img {
    height: 180px !important;
  }

  .package-content {
    padding: 15px !important;
  }

  .package-content h3 {
    font-size: 1.15rem !important;
    letter-spacing: 2px !important;
  }

  .package-details {
    margin: 10px 0 !important;
    padding-bottom: 10px !important;
  }

  .package-details span {
    font-size: 0.75rem !important;
  }

  .package-inclusions h4 {
    font-size: 0.9rem !important;
  }

  .package-inclusions ul li {
    font-size: 0.75rem !important;
  }
}

/* Admin Modal Form Sectioning */
.form-section-divider {
  margin-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

.form-section-header {
  margin-bottom: 20px;
  color: var(--primary-temple-brown, #8b3a0e);
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-entry-form {
  background: rgba(0, 0, 0, 0.02);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===================================================
   GLOBAL THREE-PART HEADER REDESIGN
   =================================================== */

/* Part 1: Orange Bar */
.top-header {
  position: relative !important;
  z-index: 10007;
  padding: 5px 0 !important;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px !important;
}

/* Part 2: White Header (Now Global) */
.mobile-white-header {
  display: block !important;
  background: #ffffff !important;
  padding: 10px 0 !important;
  position: relative !important;
  z-index: 10006;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-white-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px !important;
}

.logo-mobile {
  display: flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mobile img {
  height: 45px;
  object-fit: contain;
}

.logo-mobile .logo-text {
  display: block !important;
  font-size: 0.8rem;
  font-weight: 800;
  color: #8b3a0e;
  letter-spacing: -0.5px;
}

.agent-login-mobile {
  font-size: 0.75rem !important;
  padding: 8px 15px !important;
  border-radius: 30px !important;
  background: transparent !important;
  border: 1px solid #333 !important;
  color: #333 !important;
  letter-spacing: 1px !important;
}

/* Header Wrapper - Fixed element for the 3-part header */
.mobile-header-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 10000 !important;
  background: #ffffff !important;
  /* Initial solid background for the whole unit */
  transition: all 0.3s ease !important;
}

/* Transition the whole wrapper background to transparent on scroll */
.mobile-header-wrapper.scrolled {
  background: transparent !important;
}

/* Adjust Hero for Fixed Header */
.hero {
  margin-top: 155px !important;
}

/* Part 1 & 2 styles within wrapper */
.top-header,
.mobile-white-header {
  position: relative !important;
  width: 100% !important;
  z-index: 10;
}

/* Part 3: Floating Header - Relative to wrapper */
#navbar {
  position: relative !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  background: transparent !important;
  z-index: 5;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Initial State (Static/Top): SOLID white, NO blur for Part 3 */
#navbar .navbar {
  background: #ffffff !important;
  border: 1px solid #ddd !important;
  border-radius: 50px !important;
  margin: 5px 0 !important;
  padding: 8px 35px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease !important;
}

/* Scrolled State: Glassy Effect for Part 3 ONLY ON SCROLL */
.mobile-header-wrapper.scrolled #navbar .navbar {
  background: rgb(255 255 255 / 46%) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

.mobile-header-wrapper.scrolled #navbar {
  background: rgba(255, 255, 255, 0) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  border: 1px solid rgba(255, 255, 255, 0) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

/* Hide the old desktop logo since it's now in Part 2 */
.logo.desktop-only-flex {
  display: none !important;
}

/* Hide the duplicate agent login button inside the naval */
#agent-login-btn {
  display: none !important;
}

@media (min-width: 992px) {

  /* Fix nav-menu flexibility on desktop */
  .nav-menu {
    flex: 1;
    display: flex;
    justify-content: space-around;
    /* Center the links */
    margin-right: 20px;
  }
}

@media (max-width: 991px) {

  .desktop-only-flex,
  .nav-menu:not(.active) {
    display: none !important;
  }

  .header-part-3-floating {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hamburger {
    display: flex !important;
    margin: 0 !important;
    order: 1 !important;
    /* FAR LEFT */
    position: relative !important;
    z-index: 10010 !important;
  }

  .nav-actions {
    display: flex !important;
    align-items: center !important;
    order: 2 !important;
    margin-left: auto !important;
    /* PUSHES GROUP TO THE RIGHT */
    gap: 10px !important;
  }

  #login-btn {
    font-size: 0.8rem !important;
    padding: 8px 15px !important;
    width: auto !important;
  }

  .state-selector-container {
    order: 3 !important;
    /* FAR RIGHT */
    margin: 0 0 0 10px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    top: 0 !important;
  }

  .state-selector-container .state-dropdown-toggle {
    margin: 0 !important;
    font-size: 0.75rem !important;
    padding: 8px 12px !important;
    width: auto !important;
    transform: none !important;
    letter-spacing: 1px !important;
  }

  /* Drawer adjustments */
  .nav-menu.active {
    display: flex !important;
    position: fixed !important;
    top: 50px !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.98) !important;
    z-index: 10011 !important;
    /* Higher than wrapper */
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 15px !important;
    padding-top: 80px !important;
    /* Clear the floating mobile headers */
    padding-bottom: 50px !important;
    transform: none !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 100000 !important;
    /* Above everything */
  }

  /* Show close item in mobile menu */
  .nav-menu-close-item {
    display: flex !important;
    justify-content: flex-end !important;
    padding: 10px 20px !important;
    border-bottom: 1px solid rgba(139, 58, 14, 0.08) !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    background: #fff !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
  }

  /* Inline sub-menus for mobile */
  .nav-menu .nav-item-dropdown .dropdown-toggle i.fa-chevron-down {
    display: inline-block !important;
    transition: transform 0.3s ease !important;
    font-size: 0.7rem !important;
    margin-left: 4px !important;
  }

  .nav-menu .nav-item-dropdown.mobile-open .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg) !important;
  }

  .nav-mobile-submenu {
    display: none !important;
    flex-direction: column !important;
    background: rgba(255, 209, 102, 0.08) !important;
    border-radius: 10px !important;
    margin: 6px 10px 0 !important;
    padding: 4px 0 !important;
    border: 1px solid rgba(255, 209, 102, 0.25) !important;
    overflow: hidden !important;
  }

  .nav-item-dropdown.mobile-open .nav-mobile-submenu {
    display: flex !important;
  }

  .nav-mobile-submenu a {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    color: var(--primary-black) !important;
  }

  .nav-link {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    padding: 8px 0 !important;
    letter-spacing: 2px !important;
  }

  #mobile-agent-login-btn,
  .mobile-auth-btns {
    display: none !important;
  }
}


/* === FEEDBACK PAGE === */
.feedback-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 240px 20px 80px;
  text-align: center;
}

.feedback-header {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 30px;
  border-radius: 30px;
}

.feedback-hero h1 {
  font-size: 3.5rem !important;
  margin-bottom: 20px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: rgba(255, 255, 255, 0.705);
}

.feedback-header p {
  font-size: 1.2rem;
  color: #444;
}

.review-platforms {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.review-card {
  max-width: 500px;
  padding: 50px 40px;
  border-radius: 30px;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-10px);
}

.platform-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.platform-icon.google {
  color: #4285f4;
}

.review-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.review-card p {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

/* Testimonials Grid */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feedback-item {
  padding: 35px;
  border-radius: 20px;
  text-align: left;
}

.feedback-item .stars {
  color: #f1c40f;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.feedback-item p {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #444;
}

.feedback-item .reviewer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
}

.feedback-item .reviewer strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-orange);
}

.feedback-item .reviewer span {
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 768px) {
  .feedback-header h1 {
    font-size: 2.2rem !important;
    letter-spacing: 2px !important;
  }

  .feedback-hero {
    padding: 200px 20px 60px;
  }
}

/* === BOOKING REFACTOR STYLES === */
.category-header-dark {
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 30px;
  border-radius: 8px 8px 0 0;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-header-dark:first-child {
  margin-top: 0;
}

.form-section-body {
  margin-top: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  padding-top: 25px !important;
}

.package-info-block {
  margin-bottom: 20px;
}

.package-info-block h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color, #333);
  margin-bottom: 5px;
}

.package-info-block h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color, #333);
}

.package-info-block hr {
  margin: 15px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.text-red {
  color: red;
}

.text-muted-small {
  font-size: 11px;
  opacity: 0.7;
  display: block;
  margin-top: 4px;
}

.details-box-outline {
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
}

.details-box-title {
  color: var(--primary-color, #6a1b9a);
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
}

.form-row-mb {
  margin-bottom: 10px;
}

.form-group-no-margin {
  margin-bottom: 0 !important;
}

.input-bg-white {
  background: rgba(255, 255, 255, 0.7) !important;
}

.btn-add-more {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-add-more:hover {
  background-color: #218838;
}

.text-center-mt {
  text-align: center;
  margin-top: 15px;
}

.policy-content h4 {
  color: var(--text-color, #333);
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 400;
}

.policy-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color, #333);
  margin-bottom: 10px;
}

.policy-content p {
  font-size: 13px;
  color: var(--primary-color, #6a1b9a);
  font-weight: 500;
  margin-bottom: 8px;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.mt-20 {
  margin-top: 20px;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

/* ===== HAMBURGER MENU CLOSE BUTTON ===== */
.nav-menu-close-item {
  display: none;
  /* hidden on desktop */
}

.nav-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-black);
  background: rgba(255, 209, 102, 0.18);
  border: 1.5px solid rgba(139, 58, 14, 0.15);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(139, 58, 14, 0.08);
  margin-left: auto;
  /* push to right */
}

.nav-menu-close:hover {
  background: var(--gradient-1);
  color: #fff;
  border-color: transparent;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 14px rgba(243, 156, 18, 0.35);
}

.nav-menu-close i {
  pointer-events: none;
}

/* ===== PACKAGES DROPDOWN POSITIONING ===== */
#packagesDropdown {
  min-width: 220px;
}

/* ===== MOBILE NAV MENU — SHOW CLOSE BUTTON + INLINE DROPDOWNS ===== */
@media (max-width: 768px) {
  /* Smaller adjustments for very small phones if needed */
}

/* New Utility & Component Classes from Refactoring */
.admin-section-desc {
  margin-bottom: 20px;
  color: #666;
}

.admin-section-desc-small {
  margin-bottom: 15px;
  color: #666;
}

.text-gold {
  color: var(--primary-gold) !important;
}

.social-fb {
  color: #1877f2;
}

.social-ig {
  color: #c13584;
}

.social-yt {
  color: #ff0000;
}

.color-input-style {
  height: 44px;
  padding: 4px;
}

.admin-label-style {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.travel-options-desc {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.1rem;
}

.package-desc-text {
  margin: 15px 0;
  color: #666;
}

.package-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.auth-link {
  color: var(--primary-color) !important;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.btn-auth-full {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

.is-hidden {
  display: none !important;
}

/* Enhanced Modal and Auth styles */
.auth-container {
  position: relative;
}

.modal-close-btn {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  background: none !important;
  border: none !important;
  color: #333 !important;
  font-size: 1.5rem !important;
  cursor: pointer !important;
  z-index: 10 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ==========================================
   RESPONSIVE TYPOGRAPHY (Tablets & Phones)
   =====================================/* ==========================================
   RESPONSIVE TYPOGRAPHY (Tablets & Phones)
   ========================================== */

@media (max-width: 1024px) {

  /* Global Heading Scaling */
  h1 {
    font-size: 2.8rem !important;
  }

  h2 {
    font-size: 2.2rem !important;
  }

  h3 {
    font-size: 1.7rem !important;
  }

  h4 {
    font-size: 1.4rem !important;
  }

  /* Component Specific Scaling */
  .hero h1 {
    font-size: 2.8rem !important;
  }

  .section-title h2 {
    font-size: 2.1rem !important;
  }

  .hero p {
    font-size: 1.1rem !important;
  }

  /* Body Text */
  body,
  p,
  a,
  span,
  li {
    font-size: 0.96rem;
  }
}

@media (max-width: 768px) {

  /* Global Heading Scaling */
  h1 {
    font-size: 2.2rem !important;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  h4 {
    font-size: 1.25rem !important;
  }

  /* Component Specific Scaling */
  .hero h1 {
    font-size: 2.2rem !important;
  }

  .section-title h2 {
    font-size: 1.8rem !important;
  }

  .hero p {
    font-size: 1rem !important;
  }

  /* ===================================================
     COMPREHENSIVE GLOBAL MOBILE TYPOGRAPHY OVERRIDE
     =================================================== */
  /* Global Spacing Override for ALL text elements */
  body,
  p,
  span,
  a,
  li,
  button,
  input,
  textarea,
  label,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .btn,
  .section-title h2,
  .hero-subtitle,
  .gallery-subtitle,
  .ticker-item-title,
  .ticker-item-desc,
  .package-content h3,
  .package-details span,
  .about-title,
  .testimonial-text,
  .footer p,
  .footer a,
  .nav-link,
  .state-dropdown-toggle {
    line-height: 1.5 !important;
    letter-spacing: 0.5px !important;
    word-spacing: 2px !important;
  }

  /* Deep-dive font size reductions for specific elements */
  h1,
  .hero h1 {
    font-size: 2.2rem !important;
  }

  h2,
  .section-title h2,
  .auth-header h2 {
    font-size: 1.8rem !important;
  }

  h3,
  .footer-col h3,
  .dashboard-card h3 {
    font-size: 1.3rem !important;
  }

  p,
  .hero p,
  .cta p,
  .testimonial-text {
    font-size: 1rem !important;
  }

  span,
  a,
  li,
  label,
  input,
  button {
    font-size: 0.85rem !important;
  }

  .hero-subtitle {
    font-size: 1.4rem !important;
  }

  .about-title {
    font-size: 1.6rem !important;
  }

  .feature-content h4 {
    font-size: 1rem !important;
  }

  .package-price {
    font-size: 1.3rem !important;
  }

  .nav-link {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 480px) {

  /* Extra small devices additional scaling */
  h1,
  .hero h1 {
    font-size: 1.8rem !important;
  }

  h2,
  .section-title h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  body,
  p,
  a,
  span,
  li {
    font-size: 0.85rem !important;
  }

  .package-content h3 {
    font-size: 1.1rem !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
  }
}