/* ═══════════════════════════════════════════════════════════════════════════
   VIRTUAL TOURISM – Design System & Styles
   A premium digital atlas of immersive 360° virtual tours across India
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ──────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ─── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg: #0F1115;
  --color-bg-elevated: #16181D;
  --color-bg-card: #1A1D24;
  --color-bg-hover: #22252E;
  --color-surface: #2A2D35;
  --color-border: #2E3139;
  --color-text-primary: #F7F7F5;
  --color-text-secondary: #8A8F9C;
  --color-text-muted: #5A5F6B;
  --color-gold: #C5A45C;
  --color-gold-light: #D4B86A;
  --color-gold-dark: #A88B45;
  --color-gold-glow: rgba(197, 164, 92, 0.15);
  --color-white: #F7F7F5;
  --color-overlay: rgba(15, 17, 21, 0.7);
  --color-overlay-heavy: rgba(15, 17, 21, 0.85);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 72px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ─── Utility Classes ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: 48px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: var(--space-xl);
}

/* ─── Reveal Animations ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-smooth);
}

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

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

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

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

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

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

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--color-gold-glow);
  }

  50% {
    box-shadow: 0 0 20px 4px var(--color-gold-glow);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth),
    backdrop-filter var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--color-border);
}

/* On destination pages, the navbar should have a solid background immediately due to the VR viewer underneath. */
.navbar-solid {
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--color-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: 0.5px;
}

.nav-brand .brand-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.nav-brand .brand-accent {
  color: var(--color-gold);
}

.nav-logo {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.nav-brand:hover .nav-logo {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--duration-fast) var(--ease-smooth);
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--duration-normal) var(--ease-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-primary);
}

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

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-gold);
  padding: 10px 24px;
  border-radius: 4px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--duration-fast) var(--ease-smooth);
  border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-smooth);
}

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

.hero-slide-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 12s var(--ease-smooth) forwards;
}

.hero-slide-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(15, 17, 21, 0.3) 0%,
      rgba(15, 17, 21, 0.1) 30%,
      rgba(15, 17, 21, 0.4) 70%,
      rgba(15, 17, 21, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--nav-height);
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-gold);
  padding: 14px 32px;
  border-radius: 4px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 164, 92, 0.25);
}

.btn-primary[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

/* Hero Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.hero-dots {
  display: flex;
  gap: var(--space-sm);
}

.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(247, 247, 245, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
  overflow: hidden;
  position: relative;
}

.hero-dot.active {
  background: rgba(247, 247, 245, 0.2);
}

.hero-dot.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--color-gold);
  animation: dotProgress 6s linear forwards;
}

@keyframes dotProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.hero-slide-info {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 20;
}

.hero-slide-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-secondary);
  opacity: 0.7;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0.5;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s var(--ease-smooth) infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTENT BLOCK – "Experience the World"
   ═══════════════════════════════════════════════════════════════════════════ */
.content-block {
  text-align: center;
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
  position: relative;
}

.content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-border));
}

.content-block .section-title {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.content-block-text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.content-block-tagline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-gold);
  margin-top: var(--space-2xl);
}

/* ═══════════════════════════════════════════════════════════════════════════
   EXPLORE BY CATEGORY – Horizontal Scroll
   ═══════════════════════════════════════════════════════════════════════════ */
.categories-section {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-elevated);
  overflow: hidden;
}

.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-3xl);
}

.categories-nav {
  display: flex;
  gap: var(--space-sm);
}

.categories-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.categories-nav button:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-glow);
}

.categories-nav button svg {
  width: 18px;
  height: 18px;
}

.categories-scroll-wrapper {
  position: relative;
}

.categories-track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--space-sm) 0;
  cursor: grab;
}

.categories-track:active {
  cursor: grabbing;
}

.categories-track::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 0 0 auto;
  width: 160px;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-gold-glow), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.category-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--color-gold);
  position: relative;
  z-index: 1;
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.category-card:hover .category-card-icon {
  transform: scale(1.1);
}

.category-card-icon svg {
  width: 100%;
  height: 100%;
}

.category-card-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  transition: color var(--duration-fast);
}

.category-card:hover .category-card-name {
  color: var(--color-text-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURED DESTINATIONS – Card Grid
   ═══════════════════════════════════════════════════════════════════════════ */
.destinations-section {
  padding: var(--space-5xl) 0;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.destination-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
}

.destination-card:hover {
  border-color: var(--color-gold-dark);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.destination-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.destination-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.destination-card:hover .destination-card-image img {
  transform: scale(1.06);
}

.destination-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--color-bg-card), transparent);
}

.destination-card-body {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.destination-card-location {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.destination-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.destination-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--color-surface);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.destination-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.destination-card-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.destination-card:hover .destination-card-cta svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.how-section {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-elevated);
}

.how-section .section-title,
.how-section .section-label {
  text-align: center;
}

.how-section .gold-line {
  margin: 0 auto var(--space-xl);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-xl);
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-gold);
  background: var(--color-bg-elevated);
  position: relative;
  z-index: 1;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.how-step:hover .how-step-number {
  background: var(--color-gold);
  color: var(--color-bg);
  box-shadow: 0 0 24px var(--color-gold-glow);
}

.how-step-icon {
  width: 28px;
  height: 28px;
  color: var(--color-gold);
}

.how-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.how-step-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

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

.footer-brand-link {
  display: inline-block;
  margin-bottom: var(--space-md);
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.footer-brand-link:hover {
  opacity: 0.8;
}

.footer-logo {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  transition: color var(--duration-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-copy a {
  color: var(--color-gold);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all var(--duration-fast);
}

.footer-socials a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-glow);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIRTUAL TOURISM PAGE – Filter + Grid
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-elevated) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--color-gold-glow), transparent 60%);
  opacity: 0.5;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

/* ─── Page Hero Background Image ─────────────────────────────────────────── */
.page-hero--about {
  background: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  filter: brightness(0.35) saturate(1.1);
  transition: transform 8s ease-out;
}

.page-hero--about::before {
  background: linear-gradient(180deg,
      rgba(15, 17, 21, 0.6) 0%,
      rgba(15, 17, 21, 0.3) 40%,
      rgba(15, 17, 21, 0.7) 100%);
  z-index: 1;
}

.page-hero--about .page-hero-content {
  z-index: 2;
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(15, 17, 21, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(197, 164, 92, 0.12);
}

/* ─── FAQ Section ──────────────────────────────────────────────────────── */
.faq-section {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
}

.faq-group {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.faq-group-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-xs);
  overflow: hidden;
  background: var(--color-bg-card);
  transition: border-color var(--duration-fast) var(--ease-smooth),
    box-shadow var(--duration-fast) var(--ease-smooth);
}

.faq-item:hover {
  border-color: rgba(197, 164, 92, 0.3);
}

.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: 0 4px 24px rgba(197, 164, 92, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: color var(--duration-fast);
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-item.active .faq-question {
  color: var(--color-gold);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
  padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-xl) var(--space-xl);
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.faq-answer em {
  color: var(--color-gold);
  font-style: italic;
}

.faq-answer a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast);
}

.faq-answer a:hover {
  color: var(--color-gold-light);
}

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 var(--space-md);
}

.faq-answer ul li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xs);
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.faq-answer ul li::before {
  content: '›';
  position: absolute;
  left: 4px;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIRTUAL TOURISM – MAP HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.vt-map-hero {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
}

.vt-hero-map {
  width: 100%;
  height: 100%;
}

.vt-map-hero-overlay {
  display: none;
}

.vt-map-hero-title {
  display: none;
}

.vt-map-hero-overlay .section-label {
  display: none;
}

/* ─── Search + Filter Row ────────────────────────────────────────────────── */
.vt-filter-row {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.vt-filter-row .search-box {
  width: 48px;
  max-width: 48px;
  margin: 0;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 40px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease;
  cursor: pointer;
}

.vt-filter-row .search-box:hover,
.vt-filter-row .search-box:focus-within {
  width: 280px;
  max-width: 280px;
  border-color: var(--color-gold);
}

.vt-filter-row .search-box input {
  opacity: 0;
  padding-left: 48px;
  background: transparent;
  border: none;
  transition: opacity 0.3s ease 0.1s;
}

.vt-filter-row .search-box input:focus {
  border: none;
  outline: none;
}

.vt-filter-row .search-box:hover input,
.vt-filter-row .search-box:focus-within input {
  opacity: 1;
}

.vt-filter-row .search-box .search-icon {
  pointer-events: none;
}

.vt-filter-row .filter-bar {
  flex: 1;
  min-width: 0;
  padding: 0;
  justify-content: flex-start;
}

.filter-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-sm);
  justify-content: flex-start;
  padding: var(--space-2xl) 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  background: transparent;
  transition: all var(--duration-fast) var(--ease-smooth);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-glow);
}

/* ─── View on Map Link ────────────────────────────────────────────────────── */
.view-map-link {
  margin-bottom: var(--space-xl);
}

.view-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  background: transparent;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.view-toggle-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-glow);
}

.view-toggle-btn svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FULL PAGE MAP (map.html)
   ═══════════════════════════════════════════════════════════════════════════ */
.map-page {
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── Map Header ──────────────────────────────────────────────────────────── */
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  flex-shrink: 0;
}

.map-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
}

.map-header-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.map-header-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.map-header-back:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-glow);
}

.map-header-back svg {
  width: 14px;
  height: 14px;
}

/* ─── Full-Page Map ───────────────────────────────────────────────────────── */
.fullpage-map {
  flex: 1;
  width: 100%;
  min-height: 0;
}

/* ─── Dark Leaflet Overrides ──────────────────────────────────────────────── */
.leaflet-container {
  background: #1a1c22;
  font-family: var(--font-body);
}

.leaflet-popup-content-wrapper {
  background: var(--color-bg-elevated);
  color: var(--color-text-primary);
  border-radius: var(--border-radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-border);
  padding: 0;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0;
  min-width: 220px;
}

.leaflet-popup-tip {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.leaflet-control-zoom a {
  background: var(--color-bg-elevated) !important;
  color: var(--color-text-primary) !important;
  border-color: var(--color-border) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--color-bg-card) !important;
}

.leaflet-control-attribution {
  background: rgba(15, 17, 21, 0.8) !important;
  color: var(--color-text-tertiary) !important;
  font-size: 0.6rem !important;
}

.leaflet-control-attribution a {
  color: var(--color-gold) !important;
}

/* ─── Map Popup Card ──────────────────────────────────────────────────────── */
.map-popup-card {
  width: 240px;
}

.map-popup-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.map-popup-body {
  padding: 12px 16px;
}

.map-popup-category {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.map-popup-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.map-popup-location {
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
}

.map-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  background: var(--color-gold);
  color: var(--color-bg);
  transition: all var(--duration-fast);
}

.map-popup-btn:hover {
  background: var(--color-gold-light);
}

/* ─── Bottom Category Bar ─────────────────────────────────────────────────── */
.map-category-bar {
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(15, 17, 21, 0.95), var(--color-bg));
  border-top: 1px solid rgba(197, 164, 92, 0.15);
  padding: 10px 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 0;
}

.map-cat-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  border-radius: 50%;
}

.map-cat-arrow:hover {
  color: var(--color-gold);
  background: rgba(197, 164, 92, 0.1);
}

.map-cat-arrow svg {
  width: 18px;
  height: 18px;
}

.map-category-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 4px;
  flex: 1;
  min-width: 0;
  scroll-behavior: smooth;
}

.map-category-track::-webkit-scrollbar {
  display: none;
}

.map-cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 64px;
  padding: 8px 8px 6px;
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  flex-shrink: 0;
}

.map-cat-btn:hover {
  background: rgba(197, 164, 92, 0.08);
  border-color: rgba(197, 164, 92, 0.2);
}

.map-cat-btn.active {
  background: var(--color-gold-glow);
  border-color: var(--color-gold);
  box-shadow: 0 0 12px rgba(197, 164, 92, 0.15);
}

.map-cat-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-cat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text-secondary);
  transition: stroke var(--duration-fast);
}

.map-cat-btn:hover .map-cat-icon svg,
.map-cat-btn.active .map-cat-icon svg {
  stroke: var(--color-gold);
}

.map-cat-label {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--color-text-tertiary);
  white-space: nowrap;
  transition: color var(--duration-fast);
  text-align: center;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-cat-btn:hover .map-cat-label,
.map-cat-btn.active .map-cat-label {
  color: var(--color-gold);
}

.all-destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  padding-bottom: var(--space-5xl);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT & CONTACT PAGES
   ═══════════════════════════════════════════════════════════════════════════ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: 0;
}

.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
}

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

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-gold-dark);
  border-radius: var(--border-radius-lg);
  z-index: 1;
  pointer-events: none;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.about-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  padding: var(--space-4xl) 0;
}

.value-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.value-card:hover {
  border-color: var(--color-gold-dark);
  transform: translateY(-4px);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-lg);
  color: var(--color-gold);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.value-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  padding: var(--space-4xl) 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-status {
  min-height: 1.2em;
  margin-top: calc(var(--space-sm) * -1);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.contact-form-status.success {
  color: #2d8c4e;
}

.contact-form-status.error {
  color: #d95f5f;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  color: var(--color-text-primary);
  transition: border-color var(--duration-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-card {
  padding: var(--space-2xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  height: fit-content;
}

.contact-info-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

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

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-elevated);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl);
    gap: var(--space-xl);
    transition: right var(--duration-normal) var(--ease-smooth);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--color-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: var(--nav-height) var(--space-md) 0;
  }

  .hero-controls {
    right: 20px;
    bottom: 24px;
  }

  .hero-slide-info {
    left: 20px;
    bottom: 24px;
    display: none;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .how-steps::before {
    display: none;
  }

  .destinations-grid,
  .all-destinations-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .section {
    padding: 48px 0;
  }

  .container {
    padding: 0 var(--space-md);
  }

  /* ─── Map page mobile ─────────────────────────────── */
  .map-header {
    padding: 10px 16px;
  }

  .map-header-logo span {
    display: none;
  }

  .map-header-title {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .map-cat-btn {
    min-width: 56px;
    padding: 6px 6px 4px;
  }

  .map-cat-icon {
    width: 22px;
    height: 22px;
  }

  .map-cat-icon svg {
    width: 18px;
    height: 18px;
  }

  .map-cat-label {
    font-size: 0.5rem;
    max-width: 56px;
  }

  .map-category-bar {
    padding: 8px 12px 10px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .category-card {
    width: 140px;
    padding: var(--space-lg) var(--space-md);
  }

  .filter-btn {
    font-size: 0.72rem;
    padding: 6px 14px;
  }
}

/* ─── Mobile nav overlay ────────────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ─── Search box for Virtual Tourism page ──────────────────────────────── */
.search-box {
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  position: relative;
}

.search-box input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 20px 14px 48px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 40px;
  color: var(--color-text-primary);
  outline: none;
  transition: border-color var(--duration-fast);
}

.search-box input:focus {
  border-color: var(--color-gold);
}

.search-box input::placeholder {
  color: var(--color-text-muted);
}

.search-box .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  width: 18px;
  height: 18px;
}

/* ─── No results ────────────────────────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: var(--space-4xl);
  color: var(--color-text-muted);
  font-size: 1.05rem;
  grid-column: 1 / -1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE DESTINATION PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Destination Info Bar ────────────────────────────────────────────────── */
.dest-info-bar {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--color-bg);
}

.dest-info-row {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.dest-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.dest-hero-location {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  letter-spacing: 1px;
  margin-bottom: 0;
}

.dest-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.dest-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.dest-breadcrumb a {
  color: var(--color-text-secondary);
  transition: color var(--duration-fast);
}

.dest-breadcrumb a:hover {
  color: var(--color-gold);
}

.dest-breadcrumb-sep {
  color: var(--color-gold);
  opacity: 0.5;
}

.dest-breadcrumb-current {
  color: var(--color-gold);
  font-weight: 500;
}

/* ─── KRPano Viewer Hero ─────────────────────────────────────────────────── */
.dest-viewer-section {
  padding: 0;
  padding-top: var(--nav-height);
  padding-bottom: 48px;
}

.dest-viewer-section>.container {
  max-width: 100%;
  padding: 0;
}

.tour-viewer-container {
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 1000px;
  background: var(--color-bg-card);
  border: none;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

/* ─── Mobile Fullscreen Fallback & Rotate Prompt ─────────────────────────── */
.tour-viewer-container.fullscreen-mobile {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-height: none !important;
  z-index: 9999 !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.rotate-prompt {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color-bg-card);
  z-index: 999;
  color: var(--color-text-primary);
  text-align: center;
  padding: var(--space-xl);
}

.rotate-prompt svg {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  animation: rotatePhone 2s infinite ease-in-out;
}

@keyframes rotatePhone {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-90deg); }
  100% { transform: rotate(0deg); }
}

.tour-viewer-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--color-text-muted);
  background: radial-gradient(ellipse at center, var(--color-bg-hover), var(--color-bg-card));
}

.tour-viewer-placeholder svg {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

.tour-viewer-placeholder p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text-secondary);
}

.tour-viewer-placeholder span {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ─── Viewer States & Overlay ───────────────────────────────────────────── */

/* Full-panel overlay for Loading & Error states */
.tour-state-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color-bg-elevated);
  z-index: 10;
  text-align: center;
  /* Hidden by default, JS toggles 'display: flex' or 'display: none' */
}

.tour-state-panel p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-md);
}

.tour-state-panel svg {
  color: var(--color-text-muted);
  opacity: 0.5;
}

/* Simple Loading Spinner */
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Overlay Bottom Bar */
.tour-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: flex;
  /* Flex set by JS */
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  pointer-events: none;
  /* Let clicks pass through except on inner buttons */
  background: linear-gradient(to top, rgba(15, 17, 21, 0.8) 0%, transparent 100%);
}

.tour-overlay-bottom>* {
  pointer-events: auto;
  /* Re-enable clicks for items inside */
}

.tour-overlay-left,
.tour-overlay-right {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Expandable Language Menu */
.tour-lang-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.tour-lang-list {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 100%;
  left: 0;
}

.tour-lang-list.active {
  display: flex;
}

.tour-lang-list .tour-btn {
  margin-bottom: -1px;
  /* overlap borders seamlessly */
}

/* Glassmorphism Language Dropdown */
.tour-lang-btn {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tour-lang-btn.active {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}


/* Viewer Buttons (Mute, Share, Fullscreen) */
.tour-btn {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: rgba(42, 45, 53, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.tour-btn:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.tour-btn svg {
  width: 24px;
  height: 24px;
}

/* VR Ready Indicator */
.tour-vr-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(197, 164, 92, 0.15);
  border: 1px solid rgba(197, 164, 92, 0.3);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 var(--space-xs);
}

/* ─── SEO Content ────────────────────────────────────────────────────────── */
.dest-content {
  background: var(--color-bg);
}

.dest-content-body {
  max-width: 800px;
}

.dest-content-section {
  margin-bottom: var(--space-3xl);
}

.dest-content-section:last-child {
  margin-bottom: 0;
}

.dest-content-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.dest-content-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}

.dest-content-text:last-child {
  margin-bottom: 0;
}

.dest-content-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-sm);
}

.dest-content-link {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.dest-content-link:hover {
  color: var(--color-gold-light);
}

.dest-faq {
  background: var(--color-bg-elevated);
}

.dest-faq .faq-group {
  margin-top: var(--space-2xl);
  margin-bottom: 0;
}

/* ─── Image Gallery ──────────────────────────────────────────────────────── */
.dest-gallery {
  background: var(--color-bg-elevated);
}

.dest-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.dest-gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.dest-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.dest-gallery-item:hover img {
  transform: scale(1.08);
}

.dest-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 17, 21, 0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.dest-gallery-item:hover .dest-gallery-overlay {
  opacity: 1;
}

.dest-gallery-overlay svg {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  color: var(--color-gold);
  opacity: 0.8;
}

.dest-gallery-caption {
  font-size: 0.78rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* ─── Lightbox ───────────────────────────────────────────────────────────── */
.dest-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.dest-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.dest-lightbox-img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.dest-lightbox-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  cursor: pointer;
  background: var(--color-bg-card);
  transition: all var(--duration-fast);
  z-index: 10;
}

.dest-lightbox-close:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.dest-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  cursor: pointer;
  background: var(--color-bg-card);
  transition: all var(--duration-fast);
  z-index: 10;
}

.dest-lightbox-nav:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-bg-hover);
}

.dest-lightbox-prev {
  left: var(--space-xl);
}

.dest-lightbox-next {
  right: var(--space-xl);
}

.dest-lightbox-caption {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  text-align: center;
  white-space: nowrap;
}

/* ─── Video Section ──────────────────────────────────────────────────────── */
.dest-videos {
  background: var(--color-bg);
}

.dest-video-wrapper {
  margin-top: var(--space-2xl);
}

.dest-video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  /* Center horizontal */
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
}

.dest-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ─── Stay & Travel ──────────────────────────────────────────────────────── */
.dest-travel {
  background: var(--color-bg-elevated);
}

.dest-travel-subsection {
  margin-bottom: var(--space-3xl);
}

.dest-travel-subsection:last-child {
  margin-bottom: 0;
}

.dest-subsection-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

/* Hotel Cards */
.dest-hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.dest-hotel-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.dest-hotel-card:hover {
  border-color: var(--color-gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.dest-hotel-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold);
}

.dest-hotel-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.dest-hotel-desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.dest-hotel-price {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: auto;
}

.dest-hotel-price strong {
  font-size: 1.1rem;
  color: var(--color-text-primary);
  font-weight: 600;
}

.dest-hotel-btn {
  font-size: 0.75rem;
  padding: 10px 20px;
  align-self: flex-start;
}

/* Travel Tips */
.dest-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.dest-tip-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.dest-tip-card:hover {
  border-color: rgba(197, 164, 92, 0.3);
}

.dest-tip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.dest-tip-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.dest-tip-card p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Explore More Links */
.dest-explore-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.dest-explore-link {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.dest-explore-link:hover {
  border-color: var(--color-gold);
  background: var(--color-bg-hover);
}

.dest-explore-link img {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius);
  object-fit: cover;
  flex-shrink: 0;
}

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

.dest-explore-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.dest-explore-cat {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

.dest-explore-link svg {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: all var(--duration-fast);
}

.dest-explore-link:hover svg {
  color: var(--color-gold);
  transform: translateX(4px);
}

/* ─── Related Destinations ───────────────────────────────────────────────── */
.dest-related {
  background: var(--color-bg);
}

/* ─── Destination Page Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dest-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .tour-viewer-container {
    height: 60vh;
    min-height: 400px;
  }

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

  .tour-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .tour-controls-right {
    width: 100%;
  }



  .dest-hotel-grid {
    grid-template-columns: 1fr;
  }

  .dest-tips-grid {
    grid-template-columns: 1fr;
  }

  .dest-map-container {
    height: 350px;
  }

  .dest-map-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .tour-viewer-container {
    height: 50vh;
    min-height: 320px;
  }

  .dest-lightbox-prev {
    left: var(--space-sm);
  }

  .dest-lightbox-next {
    right: var(--space-sm);
  }

  .dest-lightbox-img {
    max-width: 95vw;
  }
}

@media (max-width: 480px) {
  .dest-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .dest-breadcrumb {
    font-size: 0.7rem;
    flex-wrap: wrap;
  }

  .tour-controls-right {
    flex-wrap: wrap;
  }


}
