/* Triply.uz - CSS Design System */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --bg-deep-navy: #050C1A;
  --bg-navy-card: rgba(11, 25, 44, 0.75);
  --bg-navy-solid: #0B192C;
  --primary-gold: #D4AF37;
  --secondary-gold: #F3C63F;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-glow-strong: rgba(212, 175, 55, 0.6);
  --text-white: #FFFFFF;
  --text-cream: #F8F9FA;
  --text-gold: #E5C158;
  --text-muted: #A0AEC0;

  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;

  /* Borders & Shadows */
  --border-gold: 1px solid rgba(212, 175, 55, 0.35);
  --border-gold-hover: 1px solid rgba(212, 175, 55, 0.7);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --gold-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  --gold-shadow-strong: 0 0 35px rgba(212, 175, 55, 0.5);
  
  /* Layout */
  --nav-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-gold) var(--bg-deep-navy);
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
*::-webkit-scrollbar-track {
  background: var(--bg-deep-navy);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--primary-gold);
  border-radius: 20px;
  border: 1px solid var(--bg-deep-navy);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep-navy);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-cream);
  letter-spacing: 0.5px;
}

/* --- LOADING PAGE / GLOBE SCREEN --- */
#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(ellipse at center, #060e20 0%, #020509 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.1s;
}

#globe-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.loader-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 88%;
  width: 90%;
  max-width: 680px;
}

/* Header */
.loader-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240, 192, 64, 0.7);
  margin-bottom: 10px;
  font-weight: 500;
}

.loader-header h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 6px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.12);
  margin-bottom: 6px;
  line-height: 1;
}

.loader-header h1 span {
  color: var(--primary-gold);
  text-shadow: 0 0 25px var(--gold-glow-strong), 0 0 50px rgba(240, 192, 64, 0.25);
}

.loader-header p {
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(160, 174, 192, 0.7);
}

/* Location Reveal — hidden until globe lands */
.loader-location-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-location-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.location-pin-line {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, transparent, var(--primary-gold));
  margin-bottom: 12px;
  animation: none;
}

.loader-location-reveal.visible .location-pin-line {
  animation: growDown 0.7s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes growDown {
  from { transform: scaleY(0); transform-origin: top; opacity: 0; }
  to   { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

.location-name {
  font-family: var(--font-serif);
  font-size: 2.9rem;
  font-style: italic;
  color: var(--primary-gold);
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow:
    0 0 20px rgba(240, 192, 64, 0.8),
    0 0 50px rgba(240, 192, 64, 0.4),
    0 0 90px rgba(240, 192, 64, 0.15);
}

.location-coords {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Footer progress area */
.loader-footer {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.loader-status {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(240, 192, 64, 0.85);
  letter-spacing: 1px;
  animation: pulseGold 2.2s infinite ease-in-out;
}

.loader-progress-bar {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(240, 192, 64, 0.2), transparent);
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, rgba(240, 192, 64, 0.7), var(--primary-gold));
  box-shadow: 0 0 10px var(--primary-gold), 0 0 20px rgba(240, 192, 64, 0.4);
  transition: width 0.5s ease;
  border-radius: 2px;
}

/* Animations */
@keyframes pulseGold {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(240, 192, 64, 0.6);
  }
}

/* Hide Loader Class */
.loader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* --- MAIN PAGE LAYOUT --- */
#main-app {
  opacity: 0;
  transition: opacity 1s ease-in;
  padding-top: var(--nav-height);
  min-height: 100vh;
}

#main-app.app-visible {
  opacity: 1;
}

/* Glassmorphism Generic Card */
.glass-panel {
  background: var(--bg-navy-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-glass);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border: var(--border-gold);
  box-shadow: var(--glass-shadow), 0 0 15px rgba(240, 192, 64, 0.1);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 193, 7, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  height: 70px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 193, 7, 0.28);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--primary-gold);
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.8rem;
  color: #111827;
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--primary-gold);
}

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

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 5px 0;
  transition: var(--transition-fast);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary-gold);
  transition: var(--transition-smooth);
}

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

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

/* Premium Gold Button */
.btn-gold {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #B89025 100%);
  color: var(--bg-deep-navy);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  box-shadow: var(--gold-shadow);
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-shadow-strong);
  background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%);
  color: #1A1A1A;
}

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

/* Secondary Outline Button */
.btn-outline {
  background: transparent;
  color: var(--text-cream);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 9px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background: rgba(240, 192, 64, 0.07);
}

/* Basket Action Icon Button */
.basket-btn {
  background: rgba(0, 0, 0, 0.05);
  border: var(--border-glass);
  color: var(--text-cream);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.basket-btn:hover {
  background: rgba(240, 192, 64, 0.12);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.basket-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary-gold);
  color: #1A1A1A;
  font-size: 0.75rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.basket-badge.pulse {
  transform: scale(1.3);
}

/* Wishlist Nav Button */
.wishlist-btn {
  background: rgba(0, 0, 0, 0.05);
  border: var(--border-glass);
  color: var(--text-cream);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.wishlist-btn:hover {
  background: rgba(255, 77, 109, 0.1);
  border-color: #ff4d6d;
  color: #ff4d6d;
  box-shadow: 0 0 10px rgba(255, 77, 109, 0.4);
}

.wishlist-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4d6d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Wishlist Drawer */
.wishlist-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  z-index: 10000;
}

.wishlist-overlay.open {
  display: block;
}

.wishlist-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--bg-deep-navy, #ffffff);
  border-left: var(--border-gold);
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.wishlist-overlay.open .wishlist-panel {
  transform: translateX(0);
}

.wishlist-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px;
  border-bottom: var(--border-glass);
}

.wishlist-panel-header h3 {
  font-size: 1.3rem;
  font-family: var(--font-serif);
}

.wishlist-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.wish-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
  border: var(--border-glass);
  margin-bottom: 12px;
}

.wish-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.wish-info {
  flex: 1;
  min-width: 0;
}

.wish-name {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wish-price {
  color: var(--primary-gold);
  font-size: 0.82rem;
}

.wish-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 8px;
  transition: var(--transition-fast);
}

.wish-remove:hover {
  color: #ff4d6d;
}

/* --- HOME PAGE HERO / SECTIONS --- */
.hero-section {
  position: relative;
  padding: 80px 6% 40px 6%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at 50% -20%, rgba(240, 192, 64, 0.1) 0%, transparent 60%);
}

.hero-subtitle {
  color: var(--primary-gold);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-title span {
  color: var(--primary-gold);
  background: linear-gradient(120deg, var(--primary-gold), var(--secondary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 40px;
}

/* REGION DISPLAY: INTERACTIVE CAROUSEL */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  position: relative;
  padding: 0 40px;
}

.carousel-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 0 10px;
}

.carousel-nav-btns {
  display: flex;
  gap: 12px;
}

.carousel-nav-btn {
  background: rgba(0, 0, 0, 0.05);
  border: var(--border-glass);
  color: var(--text-cream);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--primary-gold);
  color: #1A1A1A;
  border-color: var(--primary-gold);
  box-shadow: var(--gold-shadow);
}

.regions-wrapper {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 10px 25px 10px;
  scrollbar-width: none; /* Hide scrollbar for cleaner look */
}

.regions-wrapper::-webkit-scrollbar {
  display: none;
}

.region-card {
  flex: 0 0 280px;
  height: 380px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: var(--border-glass);
  transition: var(--transition-smooth);
}

.region-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.region-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 12, 26, 0.1) 30%, rgba(5, 12, 26, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: var(--transition-smooth);
}

.region-card h3 {
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 5px;
  transition: var(--transition-smooth);
}

.region-card p {
  font-size: 0.8rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.region-card:hover {
  border: var(--border-gold);
  box-shadow: var(--gold-shadow), 0 10px 25px rgba(0,0,0,0.5);
  transform: translateY(-8px);
}

.region-card:hover .region-card-img {
  transform: scale(1.1);
}

.region-card:hover .region-card-overlay {
  background: linear-gradient(to bottom, rgba(5, 12, 26, 0) 20%, rgba(5, 12, 26, 0.95) 100%);
}

.region-card:hover h3 {
  color: var(--primary-gold);
}

.region-card:hover p {
  transform: translateY(0);
  opacity: 1;
}

/* SECTION CONTAINER GENERAL */
.section-container {
  padding: 60px 8%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
}

/* RECOMMENDED PACKAGES GRID */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.package-card {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.package-duration-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(5px);
  border: var(--border-gold);
  color: #8B6500;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pkg-wish-btn {
  position: absolute;
  top: 50px;
  left: 15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: none;
  color: #b0b0b0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.pkg-wish-btn:hover {
  background: #fff;
  color: #ff4d6d;
  transform: scale(1.08);
}

.pkg-wish-btn.active,
.pkg-wish-btn .fa-solid.fa-heart {
  color: #ff4d6d;
}

.pkg-wish-btn.active {
  background: #fff;
  color: #ff4d6d;
}

.package-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-cities {
  color: var(--primary-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.package-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.package-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.package-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.package-price strong {
  font-size: 1.5rem;
  color: var(--primary-gold);
}

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

/* ---- TIER FILTER TABS ---- */
.tier-filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tier-filter-btn {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.tier-filter-btn:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.tier-filter-btn.active {
  background: rgba(240, 192, 64, 0.15);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

/* ---- TIER BADGES ---- */
.tier-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tier-badge.tier-standard {
  background: rgba(71, 85, 105, 0.88);
  color: #f1f5f9;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.tier-badge.tier-gold {
  background: rgba(161, 120, 10, 0.9);
  color: #fff8e1;
  border: 1px solid rgba(240, 192, 64, 0.6);
}

.tier-badge.tier-vip {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.9), rgba(139, 92, 246, 0.85));
  color: #f3e8ff;
  border: 1px solid rgba(139, 92, 246, 0.6);
}

/* VIP card top glow */
.pkg-tier-card.tier-vip {
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.25), 0 8px 32px rgba(139, 92, 246, 0.12);
}

.pkg-tier-card.tier-gold {
  box-shadow: 0 0 0 1px rgba(240, 192, 64, 0.2), 0 8px 32px rgba(240, 192, 64, 0.08);
}

/* Perks list inside package card */
.package-perks {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.package-perks li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-perks li i {
  color: var(--primary-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* POPULAR PLACES GRID */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

.place-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.place-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.place-cat-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-gold);
  color: #1A1A1A;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.place-rating-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: var(--border-glass);
  color: #8B6500;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.place-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.place-region {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.place-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.place-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: var(--border-glass);
  padding-top: 15px;
}

.place-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.place-price span {
  color: var(--primary-gold);
}

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

/* Add to Basket Action */
.add-basket-btn {
  background: rgba(0, 0, 0, 0.05);
  border: var(--border-glass);
  color: var(--text-cream);
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.add-basket-btn:hover {
  background: var(--primary-gold);
  color: #1A1A1A;
  border-color: var(--primary-gold);
  box-shadow: var(--gold-shadow);
}

.add-basket-btn.added {
  background: rgba(240, 192, 64, 0.15);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

/* --- DEDICATED REGION DETAIL PAGE --- */
#region-detail-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.region-hero {
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.region-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.region-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 12, 26, 0.5) 0%, rgba(5, 12, 26, 0.95) 100%);
  z-index: 2;
}

.region-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.region-hero h1 {
  font-size: 3.5rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.region-hero p {
  font-size: 1.1rem;
  color: var(--text-cream);
}

.back-btn-container {
  padding: 30px 8% 10px 8%;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- BASKET & TOUR PACKAGE GENERATION PAGE --- */
#basket-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.basket-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.basket-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.basket-empty {
  text-align: center;
  padding: 60px 20px;
}

.basket-empty i {
  font-size: 3.5rem;
  color: var(--primary-gold);
  opacity: 0.5;
  margin-bottom: 20px;
}

.basket-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-radius: 12px;
}

.basket-item-img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

.basket-item-details {
  flex-grow: 1;
}

.basket-item-details h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.basket-item-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.basket-item-price {
  font-weight: 700;
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-right: 15px;
}

.basket-item-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  padding: 5px;
}

.basket-item-remove:hover {
  color: #FF5A5F;
}

/* Basket Pricing Summary Panel */
.basket-summary-panel {
  padding: 30px;
  border: var(--border-gold);
  box-shadow: var(--gold-shadow);
}

.basket-summary-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-bottom: var(--border-glass);
  padding-bottom: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  border-top: var(--border-glass);
  padding-top: 15px;
  margin-top: 10px;
}

.summary-row.total span {
  color: var(--primary-gold);
}

.summary-option-row {
  transition: opacity 0.2s;
}

.summary-toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.summary-toggle-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--primary-gold);
  cursor: pointer;
  flex-shrink: 0;
}

.generate-btn-container {
  margin-top: 25px;
}

/* Generated Invoice Card / Tour Package Receipt */
.invoice-card {
  background: radial-gradient(circle at 100% 0%, rgba(240, 192, 64, 0.1) 0%, transparent 50%), var(--bg-navy-solid);
  border: 1px solid var(--primary-gold);
  border-radius: 20px;
  box-shadow: var(--gold-shadow-strong);
  padding: 40px;
  margin-top: 40px;
  animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.invoice-badge {
  position: absolute;
  top: 30px;
  right: -50px;
  background: var(--primary-gold);
  color: #1A1A1A;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 6px 50px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.invoice-header {
  border-bottom: 2px dashed rgba(240, 192, 64, 0.4);
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.invoice-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 5px;
}

.invoice-logo span {
  color: var(--text-cream);
}

.invoice-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.invoice-itinerary {
  margin-bottom: 35px;
}

.invoice-itinerary h3 {
  font-size: 1.4rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.itinerary-timeline {
  position: relative;
  padding-left: 20px;
  border-left: 1px solid rgba(240, 192, 64, 0.4);
}

.timeline-day {
  position: relative;
  margin-bottom: 25px;
}

.timeline-day::before {
  content: '';
  position: absolute;
  top: 5px;
  left: -25px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-gold);
  box-shadow: 0 0 8px var(--primary-gold);
}

.timeline-day h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.timeline-day h4 span {
  color: var(--primary-gold);
}

.timeline-day p {
  font-size: 0.88rem;
  color: var(--text-cream);
  margin-bottom: 4px;
}

.timeline-day ul {
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Assigned Tour Guide Card in Invoice */
.invoice-guide-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(240, 192, 64, 0.05);
  border: var(--border-glass);
  border-radius: 12px;
  margin-bottom: 30px;
}

.invoice-guide-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary-gold);
}

.invoice-guide-info h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.invoice-guide-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.invoice-guide-info .languages {
  font-size: 0.75rem;
  color: var(--text-gold);
}

.invoice-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 25px;
}

.invoice-total-row h2 {
  font-size: 1.5rem;
}

.invoice-total-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-shadow: 0 0 15px rgba(240,192,64,0.25);
}

/* --- REVIEWS SECTION --- */
#reviews-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.review-form-panel {
  padding: 30px;
}

.review-form h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.04);
  border: var(--border-glass);
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Star Rating Selector */
.star-rating-selector {
  display: flex;
  gap: 10px;
  font-size: 1.8rem;
  color: var(--text-muted);
}

.star-rating-selector i {
  cursor: pointer;
  transition: var(--transition-fast);
}

.star-rating-selector i:hover,
.star-rating-selector i.active {
  color: #FFD700;
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Review Feed List */
.reviews-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  padding: 25px;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-author h4 {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.review-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-stars {
  color: #FFD700;
  display: flex;
  gap: 3px;
  font-size: 0.85rem;
}

.review-category {
  background: rgba(240, 192, 64, 0.15);
  color: var(--primary-gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.review-comment {
  font-size: 0.95rem;
  color: var(--text-cream);
  line-height: 1.5;
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4caf50;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

.review-memory-highlight {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--primary-gold);
  background: rgba(240, 192, 64, 0.1);
  border-left: 2px solid var(--primary-gold);
  padding: 6px 10px;
  border-radius: 0 6px 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.review-memory-highlight i {
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- AI TRAVEL ASSISTANT --- */
.ai-toggle-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #C9920A 100%);
  color: #1A1A1A;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--gold-shadow-strong), 0 10px 20px rgba(0,0,0,0.3);
  z-index: 1001;
  transition: var(--transition-smooth);
}

.ai-toggle-btn:hover {
  transform: rotate(15deg) scale(1.08);
  box-shadow: 0 0 35px var(--primary-gold);
}

.ai-toggle-btn .badge-ai {
  position: absolute;
  top: 0;
  right: -2px;
  background: #E53E3E;
  color: white;
  font-size: 0.6rem;
  padding: 2px 5px;
  border-radius: 10px;
  font-weight: 700;
}

/* AI Assistant Panel Side-drawer */
.ai-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: var(--border-gold);
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.ai-panel.open {
  right: 0;
}

.ai-panel-header {
  padding: 25px;
  border-bottom: var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-panel-title i {
  color: var(--primary-gold);
  font-size: 1.4rem;
}

.ai-panel-title h3 {
  font-size: 1.35rem;
}

.ai-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ai-close-btn:hover {
  color: var(--primary-gold);
}

/* Chat History / Messages */
.ai-chat-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  animation: slideIn 0.3s ease;
}

.ai-message.user {
  background: rgba(240, 192, 64, 0.15);
  color: var(--text-white);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  border: var(--border-gold);
}

.ai-message.assistant {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-cream);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: var(--border-glass);
}

/* AI Dynamic Interactive Itinerary Bubble */
.ai-itinerary-bubble {
  border: 1px solid var(--primary-gold);
  border-radius: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.95);
  align-self: flex-start;
  width: 100%;
  box-shadow: var(--gold-shadow);
  margin-top: 10px;
  animation: fadeIn 0.4s ease;
}

.ai-itinerary-bubble h4 {
  color: var(--primary-gold);
  margin-bottom: 8px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-itinerary-bubble .day-plan {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 8px 0;
  font-size: 0.82rem;
}

.ai-itinerary-bubble .day-plan:last-child {
  border-bottom: none;
}

.ai-itinerary-bubble .day-title {
  font-weight: 600;
  color: var(--text-gold);
  margin-bottom: 3px;
}

/* AI Assistant Input Box */
.ai-panel-input-container {
  padding: 20px;
  border-top: var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(248, 248, 245, 0.98);
}

.ai-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-text-input {
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.04);
  border: var(--border-glass);
  border-radius: 30px;
  padding: 12px 20px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.ai-text-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(0, 0, 0, 0.06);
}

.ai-mic-btn {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.05);
  border: var(--border-glass);
  color: var(--text-cream);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.ai-mic-btn.recording {
  background: #E53E3E;
  border-color: #FF5A5F;
  color: white;
  animation: pulseMic 1.5s infinite ease-in-out;
}

@keyframes pulseMic {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); box-shadow: 0 0 15px rgba(229, 62, 62, 0.6); }
  100% { transform: scale(1); }
}

.ai-send-btn {
  width: 44px;
  height: 44px;
  background: var(--primary-gold);
  border: none;
  color: #1A1A1A;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.ai-send-btn:hover {
  background: var(--secondary-gold);
  transform: scale(1.05);
}

/* Sound Waveform Visualizer for Recording */
.voice-wave-container {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 30px;
  margin-top: 5px;
}

.voice-wave-container.active {
  display: flex;
}

.wave-bar {
  width: 3px;
  height: 10px;
  background: var(--primary-gold);
  border-radius: 3px;
  animation: bounceWave 0.8s ease-in-out infinite alternate;
}

.wave-bar:nth-child(1) { animation-delay: 0.1s; }
.wave-bar:nth-child(2) { animation-delay: 0.4s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.6s; }
.wave-bar:nth-child(5) { animation-delay: 0.3s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }

@keyframes bounceWave {
  0% { height: 4px; }
  100% { height: 26px; }
}

/* AI Input Quick Tags */
.ai-quick-tags {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 5px;
}

.ai-quick-tags::-webkit-scrollbar {
  display: none;
}

.ai-tag {
  background: rgba(0, 0, 0, 0.04);
  border: var(--border-glass);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.ai-tag:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .basket-layout { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 4%; }
  .nav-links { display: none; } /* On a real mobile, we'd have a menu icon, but here we can keep links in a drawer or rely on headers */
  .hero-title { font-size: 2.2rem; }
  .region-hero h1 { font-size: 2.5rem; }
  .ai-panel { width: 100%; right: -100%; }
  .carousel-container { padding: 0 10px; }
}

/* --- LIGHT MODE OVERRIDES (same as default now) --- */
:root[data-theme="light"] {
  --bg-deep-navy: #FFFFFF;
  --bg-navy-solid: #FAFAF8;
  --bg-navy-card: rgba(255, 253, 242, 0.92);
  --primary-gold: #F0C040;
  --secondary-gold: #FFD060;
  --text-white: #1A1A2E;
  --text-cream: #2D3748;
  --text-gold: #C9A400;
  --text-muted: #718096;
  --border-glass: 1px solid rgba(0, 0, 0, 0.08);
  --border-gold: 1px solid rgba(240, 192, 64, 0.4);
  --border-gold-hover: 1px solid rgba(240, 192, 64, 0.8);
  --glass-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.06);
  --gold-shadow: 0 0 20px rgba(240, 192, 64, 0.15);
  --gold-glow: rgba(240, 192, 64, 0.3);
}

:root[data-theme="light"] body {
  background-color: var(--bg-deep-navy);
  color: var(--text-white);
}

:root[data-theme="light"] h1, 
:root[data-theme="light"] h2, 
:root[data-theme="light"] h3, 
:root[data-theme="light"] h4,
:root[data-theme="light"] h5 {
  color: var(--text-cream);
}

:root[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: var(--border-glass);
}

:root[data-theme="light"] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: rgba(240, 192, 64, 0.3) 1px solid;
}

:root[data-theme="light"] .logo-text {
  color: #1A1A2E;
}

:root[data-theme="light"] .btn-gold {
  color: #1A1A1A;
}

:root[data-theme="light"] .btn-outline {
  color: var(--text-cream);
  border-color: rgba(0, 0, 0, 0.15);
}

:root[data-theme="light"] .ai-panel {
  background: rgba(255, 255, 255, 0.98);
  border-left: var(--border-gold);
}

:root[data-theme="light"] .ai-message.assistant {
  background: rgba(0, 0, 0, 0.04);
  border: var(--border-glass);
  color: var(--text-cream);
}

:root[data-theme="light"] .ai-itinerary-bubble {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

:root[data-theme="light"] .modal-overlay {
  background: rgba(0, 0, 0, 0.4) !important;
}

:root[data-theme="light"] .lang-dropdown {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(240, 192, 64, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .lang-opt {
  color: var(--text-cream);
}

:root[data-theme="light"] .lang-opt:hover {
  background: rgba(240, 192, 64, 0.12);
  color: var(--text-white);
}

:root[data-theme="light"] #email-simulator-alert {
  background: #FFFFFF !important;
  border-color: var(--primary-gold) !important;
}

:root[data-theme="light"] .form-control {
  background: rgba(0, 0, 0, 0.04);
  border: var(--border-glass);
  color: var(--text-white);
}

:root[data-theme="light"] .form-control:focus {
  background: rgba(0, 0, 0, 0.06);
  border-color: var(--primary-gold);
}

:root[data-theme="light"] .basket-item-remove {
  color: var(--text-muted);
}

:root[data-theme="light"] .invoice-card {
  background: radial-gradient(circle at 100% 0%, rgba(240, 192, 64, 0.1) 0%, transparent 50%), #FFFFFF;
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

:root[data-theme="light"] .invoice-guide-card {
  background: rgba(0, 0, 0, 0.02);
  border: var(--border-glass);
}

:root[data-theme="light"] .invoice-total-row {
  border-top: 1px solid rgba(0,0,0,0.06);
}

:root[data-theme="light"] .invoice-total-row h2 {
  color: var(--text-white);
}

/* ===== HERO IMAGE CAROUSEL ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--bg-deep-navy);
}

.hero-slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 12, 26, 0.45) 0%,
    rgba(5, 12, 26, 0.2) 35%,
    rgba(5, 12, 26, 0.55) 70%,
    rgba(5, 12, 26, 0.88) 100%
  );
}

/* Arrow buttons */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.hero-arrow:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #1A1A1A;
  box-shadow: var(--gold-shadow);
}

.hero-arrow-prev { left: 3%; }
.hero-arrow-next { right: 3%; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}

.hero-dot.active {
  background: var(--primary-gold);
  width: 26px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(240, 192, 64, 0.5);
}

/* Central search overlay */
.hero-search-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 92%;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240, 192, 64, 0.85);
  margin-bottom: 12px;
}

.hero-main-title {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-main-title span {
  color: var(--primary-gold);
  text-shadow: 0 0 35px rgba(240, 192, 64, 0.5);
}

.hero-main-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* Search box */
.hero-search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 8px 8px 8px 22px;
  margin-bottom: 22px;
  transition: var(--transition-fast);
}

.hero-search-box:focus-within {
  border-color: rgba(240, 192, 64, 0.6);
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.15);
}

.hero-search-icon {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.hero-search-submit {
  background: linear-gradient(135deg, var(--primary-gold), #C9920A);
  color: #1A1A1A;
  border: none;
  border-radius: 40px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.hero-search-submit:hover {
  transform: scale(1.04);
  box-shadow: var(--gold-shadow);
}

/* Category pills */
.hero-cat-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.72);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  letter-spacing: 0.3px;
}

.hero-cat:hover {
  border-color: rgba(240, 192, 64, 0.6);
  color: var(--primary-gold);
  background: rgba(240, 192, 64, 0.1);
}

.hero-cat.active {
  background: var(--primary-gold);
  color: #1A1A1A;
  border-color: var(--primary-gold);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(240, 192, 64, 0.3);
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero-carousel { height: 92vh; }
  .hero-main-title { font-size: 2.5rem; }
  .hero-main-sub { font-size: 0.72rem; }
  .hero-arrow { display: none; }
  .hero-cat-pills { gap: 6px; }
  .hero-cat { padding: 7px 12px; font-size: 0.72rem; }
}

/* =============================================
   MEGA MENU NAV
   ============================================= */
.mega-li { position: relative; }

.mega-chevron {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform 0.2s;
  vertical-align: middle;
}
.mega-li:hover .mega-chevron,
.mega-li.open .mega-chevron { transform: rotate(180deg); }

.mega-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(240, 192, 64, 0.25);
  border-radius: 14px;
  padding: 18px 20px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 500;
  animation: megaFadeIn 0.18s ease;
}
.mega-li:hover .mega-panel,
.mega-li.open .mega-panel { display: block; }

@keyframes megaFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-panel::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: rgba(255,255,255,0.97);
  border-left: 1px solid rgba(240,192,64,0.25);
  border-top: 1px solid rgba(240,192,64,0.25);
  transform: translateX(-50%) rotate(45deg);
}

.mega-col-head {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-cream);
  transition: background 0.15s;
  cursor: pointer;
}
.mega-item:hover { background: rgba(240,192,64,0.1); }

.mega-thumb {
  width: 38px; height: 38px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(240,192,64,0.3);
}

.mega-icon-box {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(240,192,64,0.12);
  border: 1px solid rgba(240,192,64,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary-gold);
  font-size: 0.95rem;
}

.mega-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
}
.mega-sub {
  font-size: 0.70rem;
  color: var(--text-muted);
  margin-top: 1px;
}

@media (max-width: 900px) {
  .mega-panel { display: none !important; }
  .mega-chevron { display: none; }
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-switcher { position: relative; }

.lang-btn {
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.lang-btn:hover,
.lang-switcher.open .lang-btn {
  border-color: rgba(240,192,64,0.5);
  background: rgba(240,192,64,0.1);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(240,192,64,0.25);
  border-radius: 12px;
  padding: 6px;
  min-width: 148px;
  z-index: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  animation: langFadeIn 0.15s ease;
}
.lang-switcher.open .lang-dropdown { display: block; }

@keyframes langFadeIn {
  from { opacity:0; transform:translateY(-5px); }
  to   { opacity:1; transform:translateY(0); }
}

.lang-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-cream);
  font-size: 0.83rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.lang-opt:hover { background: rgba(240,192,64,0.12); color: var(--text-white); }
.lang-opt.active { color: var(--primary-gold); background: rgba(240,192,64,0.1); font-weight: 600; }

/* Modals & Code Inputs Styles */
.modal-overlay {
  transition: opacity 0.3s ease;
}

.modal-card {
  border-radius: 16px;
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.code-input:focus {
  border-color: var(--primary-gold) !important;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Status Badges */
.status-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  display: inline-block;
}

.status-badge.confirmed {
  background: rgba(72, 187, 120, 0.15);
  color: #48BB78;
  border: 1px solid rgba(72, 187, 120, 0.3);
}

.status-badge.cancelled {
  background: rgba(229, 62, 62, 0.15);
  color: #F56565;
  border: 1px solid rgba(229, 62, 62, 0.3);
}

:root[data-theme="light"] .status-badge.confirmed {
  background: rgba(72, 187, 120, 0.12);
  color: #2F855A;
  border-color: rgba(72, 187, 120, 0.2);
}

:root[data-theme="light"] .status-badge.cancelled {
  background: rgba(229, 62, 62, 0.12);
  color: #C53030;
  border-color: rgba(229, 62, 62, 0.2);
}

/* Booking actions buttons */
.booking-actions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.booking-actions button {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.78rem;
}

.btn-danger-outline {
  background: transparent;
  color: #F56565;
  border: 1px solid rgba(245, 101, 101, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-danger-outline:hover:not(:disabled) {
  background: rgba(245, 101, 101, 0.1);
  border-color: #F56565;
  box-shadow: 0 0 10px rgba(245, 101, 101, 0.15);
}

.btn-danger-outline:disabled {
  color: var(--text-muted);
  border-color: var(--border-glass);
  cursor: not-allowed;
  opacity: 0.55;
}

/* ============================================================
   HERO — NEW 2-COLUMN LAYOUT
   Left: title + search | Right: 3D globe ring carousel
   ============================================================ */
.hero-new {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(160deg, #FFFDF5 0%, #FFFFFF 55%, #FFFBF0 100%);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-new-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 50%, rgba(255, 193, 7, 0.11) 0%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 15% 85%, rgba(255, 193, 7, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-new-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  padding-top: var(--nav-height, 70px);
  align-items: center;
}

/* ---- LEFT column ---- */
.hero-new-left {
  flex: 0 0 46%;
  padding: 60px 4% 60px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-new-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E6AC00;
}

.hero-new-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 3.8vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: #111827;
  margin: 0;
}

.hero-new-title span {
  color: #FFC107;
}

.hero-new-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #9CA3AF;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0;
}

/* Search zone */
.hero-new-search-zone {
  position: relative;
}

.hero-new-search-row {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 50px;
  padding: 7px 7px 7px 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-new-search-row:focus-within {
  border-color: #FFC107;
  box-shadow: 0 4px 24px rgba(255, 193, 7, 0.18), 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.hero-new-search-row > i {
  color: #9CA3AF;
  font-size: 0.95rem;
  margin-right: 10px;
  flex-shrink: 0;
}

.hero-new-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #111827;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  min-width: 0;
}

.hero-new-search-input::placeholder { color: #D1D5DB; }

.hero-new-search-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFC107 0%, #F59E0B 100%);
  color: #111827;
  border: none;
  border-radius: 40px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.hero-new-search-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
}

/* Category pills dropdown — hidden by default, lifts up on search focus */
.hero-new-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.28s ease, margin 0.28s ease;
  margin-top: 0;
  pointer-events: none;
}

.hero-new-cats.open {
  max-height: 90px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
  pointer-events: auto;
}

.hero-new-cats .hero-cat {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  color: #6B7280;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.hero-new-cats .hero-cat:hover,
.hero-new-cats .hero-cat.active {
  background: #FFC107;
  border-color: #FFC107;
  color: #111827;
  font-weight: 700;
}

/* Stats row */
.hero-new-stats {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.hero-stat-lbl {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9CA3AF;
  margin-top: 3px;
}

.hero-stat-div {
  width: 1px;
  height: 34px;
  background: #E5E7EB;
  flex-shrink: 0;
}

/* ---- RIGHT column ---- */
.hero-new-right {
  flex: 0 0 54%;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-globe-stage {
  width: 100%;
  height: 580px;
  perspective: 880px;
  perspective-origin: 50% 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Floating "12 Destinations" tag */
.hero-globe-floating-tag {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  white-space: nowrap;
}

.hero-globe-floating-tag i { color: #FFC107; }

/* ============================================================
   3D GLOBE RING — core animation
   ============================================================ */
.globe-ring {
  width: 1px;
  height: 1px;
  position: relative;
  transform-style: preserve-3d;
  animation: globeRingSpin 30s linear infinite;
}

.globe-ring:hover { animation-play-state: paused; }

@keyframes globeRingSpin {
  from { transform: rotateX(-10deg) rotateY(0deg); }
  to   { transform: rotateX(-10deg) rotateY(360deg); }
}

/* ---- Globe ring card: image + info body ---- */
.globe-ring-card {
  position: absolute;
  width: 155px;
  height: 210px;
  top: -105px;
  left: -77.5px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.globe-ring-card:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22), 0 0 0 2.5px #FFC107;
}

.globe-ring-card img {
  width: 100%;
  height: 115px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.globe-ring-card-body {
  padding: 8px 10px 7px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.globe-ring-card-name {
  font-size: 0.69rem;
  font-weight: 700;
  color: #111827;
  font-family: var(--font-sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.globe-ring-card-stats {
  display: flex;
  gap: 6px;
  font-size: 0.59rem;
  color: #6B7280;
  font-family: var(--font-sans);
}

.globe-ring-card-stats span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.globe-ring-card-stats i {
  color: #FFC107;
  font-size: 0.54rem;
}

.globe-ring-card-status {
  font-size: 0.59rem;
  font-weight: 700;
  color: #10B981;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 4px;
}

.globe-ring-card-status::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
}

/* Mobile search nav icon — desktop da yashirin */
.mobile-search-nav-btn { display: none; }

/* ============================================================
   MOBILE  ≤ 900px
   ============================================================ */
@media (max-width: 900px) {

  /* ---------- Navbar search icon ---------- */
  .mobile-search-nav-btn {
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: none; color: #374151;
    font-size: 1.1rem; cursor: pointer; padding: 6px 8px;
    transition: color 0.15s;
  }
  .mobile-search-nav-btn:hover { color: #FFC107; }

  /* ---------- Hero: CSS grid, full screen ---------- */
  .hero-new { height: 100svh; min-height: 100svh; overflow: hidden; }
  .hero-new-inner {
    display: grid !important;
    grid-template-rows: auto 1fr !important;
    width: 100% !important; height: 100svh !important;
    padding-top: 0 !important; align-items: unset !important;
  }
  .hero-new-left {
    display: flex !important; flex-direction: column;
    padding: calc(var(--nav-height, 80px) + 12px) 20px 10px !important;
    gap: 7px !important; justify-content: flex-start !important;
    grid-row: 1 !important; align-self: start !important;
  }
  .hero-new-right {
    display: flex !important; flex-direction: column !important;
    grid-row: 2 !important;
    min-height: 0 !important; overflow: visible !important;
  }

  /* Compact text */
  .hero-new-eyebrow { font-size: 0.63rem; }
  .hero-new-title   { font-size: 1.85rem !important; line-height: 1.1 !important; }
  .hero-new-sub     { font-size: 0.66rem; }
  .hero-new-search-row { height: 40px; border-radius: 10px; }
  .hero-new-search-btn { padding: 7px 13px; font-size: 0.72rem; border-radius: 7px; }
  .hero-new-stats { gap: 10px !important; margin-top: 0 !important; }
  .hero-stat-num  { font-size: 0.95rem; }
  .hero-stat-lbl  { font-size: 0.54rem; }
  .hero-stat-div  { height: 24px; }

  /* ---------- Stage: fills grid row 2 ---------- */
  .hero-globe-stage {
    width: 100% !important; height: 100% !important; flex: 1 !important;
    min-height: unset !important; margin-top: 0 !important;
    padding-top: 20px !important; display: flex !important;
    flex-direction: column !important; align-items: center !important;
    justify-content: flex-start !important; gap: 0 !important;
    perspective: none !important; overflow: visible !important;
  }

  /* ---------- 3-card carousel ---------- */
  .mobile-carousel {
    display: flex; flex-direction: column;
    align-items: center; width: 100%; gap: 14px;
  }
  .mc-track {
    position: relative; width: 100%; height: 215px;
    perspective: 720px; perspective-origin: 50% 50%;
  }
  .mc-card {
    position: absolute; top: 0;
    left: 50%; margin-left: -77px;
    width: 155px; height: 215px;
    border-radius: 16px; overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    cursor: pointer;
    transition: transform 0.42s cubic-bezier(0.4,0,0.2,1), opacity 0.42s;
  }
  .mc-card img       { width: 100%; height: 118px; object-fit: cover; display: block; }
  .mc-card-body      { padding: 9px 11px; }
  .mc-card-name      { font-size: 0.74rem; font-weight: 700; color: #111827; line-height: 1.3; }
  .mc-card-stats     { display: flex; gap: 6px; font-size: 0.6rem; color: #6B7280; margin-top: 3px; }
  .mc-card-stats i   { color: #FFC107; }
  .mc-card-status    { font-size: 0.62rem; color: #10B981; display: flex; align-items: center; gap: 4px; margin-top: 4px; }
  .mc-status-dot     { width: 6px; height: 6px; border-radius: 50%; background: #10B981; display: inline-block; flex-shrink: 0; }

  .mc-active { transform: translateX(0);                               z-index: 3; }
  .mc-prev   { transform: translateX(-130px) rotateY(32deg) scale(0.82); z-index: 2; opacity: 0.88; }
  .mc-next   { transform: translateX(130px) rotateY(-32deg) scale(0.82); z-index: 2; opacity: 0.88; }

  /* Dots */
  .mc-dots { display: flex; gap: 5px; align-items: center; }
  .mc-dot  { width: 6px; height: 6px; border-radius: 50%; background: #D1D5DB; cursor: pointer; transition: all 0.25s; }
  .mc-dot.active { background: #FFC107; width: 18px; border-radius: 3px; }

  /* ---------- Recommended packages — centered ---------- */
  .section-header       { text-align: center !important; align-items: center !important; }
  .tier-filter-tabs     { justify-content: center !important; }
  .packages-grid        { justify-content: center !important; }

  /* ---------- Package detail modal — mobile ---------- */
  .pkg-detail-card { flex-direction: column; max-height: 95vh; overflow-y: auto; }
  .pkg-detail-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; }
}

/* ===================== PACKAGE DETAIL MODAL ===================== */
.pkg-detail-card {
  display: flex;
  width: 95%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  background: #0D1B2A;
  border: var(--border-gold);
  border-radius: 18px;
  box-shadow: 0 0 60px rgba(212,175,55,0.15);
  position: relative;
  margin: 30px auto;
}

.pkg-detail-left {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.pkg-detail-right {
  width: 300px;
  flex-shrink: 0;
  padding: 28px 24px;
  border-left: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
}

.pkg-detail-img-wrap { position: relative; border-radius: 12px; overflow: hidden; height: 220px; }
.pkg-detail-img { width: 100%; height: 100%; object-fit: cover; }
.pkg-detail-tier {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary-gold); color: #0D1B2A;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 3px 10px; border-radius: 20px;
}

.pkg-detail-cities { font-size: 0.75rem; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 1px; }
.pkg-detail-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-cream); margin: 0; }
.pkg-detail-duration { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.pkg-detail-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.pkg-detail-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pkg-detail-perks li {
  font-size: 0.78rem; color: var(--text-cream);
  background: rgba(212,175,55,0.08); border: var(--border-gold);
  border-radius: 20px; padding: 4px 12px;
  display: flex; align-items: center; gap: 5px;
}
.pkg-detail-perks li i { color: var(--primary-gold); font-size: 0.7rem; }

/* Tabs */
.pkg-detail-tabs {
  display: flex; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pkg-tab-btn {
  background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--text-muted); font-family: var(--font-sans); font-size: 0.85rem;
  padding: 10px 16px; cursor: pointer; transition: all 0.2s; margin-bottom: -1px;
}
.pkg-tab-btn.active { color: var(--primary-gold); border-bottom-color: var(--primary-gold); }
.pkg-tab-btn:hover { color: var(--text-cream); }

/* Accordion */
.pkg-accordion { border-bottom: 1px solid rgba(255,255,255,0.06); }
.pkg-accordion-btn {
  width: 100%; background: none; border: none; display: flex; justify-content: space-between;
  align-items: center; padding: 16px 0; color: var(--text-cream);
  font-family: var(--font-sans); font-size: 0.95rem; cursor: pointer;
}
.pkg-accordion-btn i { color: var(--text-muted); font-size: 0.75rem; transition: transform 0.2s; }
.pkg-accordion-btn.open i { transform: rotate(180deg); }
.pkg-accordion-body {
  padding: 0 0 16px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
}

/* Booking widget */
.pkg-booking-widget { display: flex; flex-direction: column; gap: 0; }
.pkg-booking-price {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px;
}
.pkg-price-from { font-size: 0.8rem; color: var(--text-muted); }
.pkg-price-amount { font-size: 1.8rem; font-weight: 700; color: var(--primary-gold); font-family: var(--font-serif); }
.pkg-price-per { font-size: 0.78rem; color: var(--text-muted); }

.pkg-booking-field { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 0; }
.pkg-booking-label {
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}
.pkg-booking-input-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.95rem; color: var(--text-cream);
}
.pkg-booking-date-input {
  background: none; border: none; outline: none;
  color: var(--text-cream); font-family: var(--font-sans); font-size: 0.95rem;
  cursor: pointer; width: 100%;
  color-scheme: dark;
}
.pkg-booking-date-input::-webkit-calendar-picker-indicator { opacity: 0; cursor: pointer; }
.pkg-booking-cal-icon { color: var(--text-muted); font-size: 1rem; pointer-events: none; }

.pkg-travelers-row { }
.pkg-travelers-controls { display: flex; align-items: center; gap: 8px; }
.pkg-traveler-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); background: transparent;
  color: var(--text-cream); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.pkg-traveler-btn:hover { border-color: var(--primary-gold); color: var(--primary-gold); }

.pkg-booking-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px;
  font-size: 0.9rem; color: var(--text-muted);
}
