/* ============================================
   Visit India – Style Sheet
   Premium Live Board & Indigo Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Work+Sans:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Premium theme variables */
  --indigo:       #1B1F3B;
  --indigo-deep:  #11142A;
  --marigold:     #FF8A3D;
  --fuchsia:      #E8447A;
  --turmeric:     #FFC23C;
  --paper:        #FBF4E8;
  --teal:         #1E6E6E;
  --ink:          #F4EFE6;
  --line:         rgba(244,239,230,0.16);

  /* Legacy mappings to preserve other components */
  --saffron:      var(--marigold);
  --saffron-lt:   var(--turmeric);
  --gold:         var(--turmeric);
  --gold-lt:      var(--turmeric);
  --teal-lt:      #2A7E7E;
  --ivory:        var(--paper);
  --cream:        var(--ink);
  --dark:         var(--indigo-deep);
  --dark2:        var(--indigo);
  --text:         var(--indigo-deep);
  --muted:        rgba(27, 31, 59, 0.65);
  --white:        #FFFFFF;

  /* Font variables */
  --font-display: 'Fraunces', Georgia, serif;
  --font-hindi:   'Fraunces', serif;
  --font-body:    'Work Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

/* ── NAV ── */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
  border-bottom: none;
}
.nav-toggle {
  display: none;
}
.nav-logo-custom {
  display: flex; align-items: center;
  text-decoration: none;
}
.logo-brand-img {
  height: 60px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s;
}
.logo-brand-img:hover {
  transform: scale(1.03);
}
.nav-links { list-style: none; display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.8; }

/* Services Dropdown Menu */
.dropdown {
  position: relative;
}
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dropdown-trigger .arrow {
  font-size: 7px;
  margin-top: 1px;
  opacity: 0.8;
  transition: transform 0.2s;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(20,13,7,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(232,98,26,0.15);
  border-radius: 8px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 300;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}
.dropdown-menu a {
  padding: 10px 24px;
  color: rgba(250,246,238,0.85) !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-align: left;
  white-space: nowrap;
  transition: all 0.2s;
}
.dropdown-menu a:hover {
  background: rgba(232,98,26,0.15);
  color: var(--saffron) !important;
  padding-left: 28px;
}
.dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown:hover .dropdown-trigger .arrow {
  transform: rotate(180deg);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center; justify-content: flex-start;
  text-align: left;
  padding: 140px 10% 80px;
  position: relative;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-sound-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 15;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ivory);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.hero-sound-btn:hover {
  border-color: var(--saffron-lt);
  background: rgba(232, 98, 26, 0.25);
  color: var(--saffron-lt);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(232, 98, 26, 0.25);
}
.hero-sound-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
  transition: transform 0.2s ease;
}
.hero-sound-btn:active {
  transform: scale(0.95);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(26,18,8,0.55) 0%, rgba(26,18,8,0.15) 60%, rgba(26,18,8,0.45) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 40%, rgba(26,18,8,0.8) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  z-index: 5;
  max-width: 600px;
  margin: 0;
}
.hero-welcome {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}
.hero-title-main {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title-main .hero-title-sub {
  font-family: var(--font-display);
  font-size: 0.6em;
  font-weight: 400;
  color: var(--white);
  margin-right: 18px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
  letter-spacing: 0;
}
.hero-title-main .hero-title-brand {
  color: var(--saffron);
}
.hero-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  font-style: italic;
  letter-spacing: 0.02em;
  font-weight: 400;
  transition: opacity 1s ease-in-out;
}
.hero-quote span {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  margin-top: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-btns-custom {
  display: flex;
}
.btn-explore {
  background: #c57089;
  color: var(--white);
  padding: 13px 44px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(197,112,137,0.35);
}
.btn-explore:hover {
  background: #b15d75;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197,112,137,0.5);
}

/* ── STATS BANNER ── */
.stats-banner {
  background: #110904;
  padding: 40px 10%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-bottom: 1px solid rgba(232,98,26,0.12);
  position: relative;
  z-index: 10;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(250,246,238,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 11px; color: rgba(250,246,238,0.4); letter-spacing: 0.1em;
  animation: fadeUpDown 2s infinite;
}
@keyframes fadeUpDown {
  0%,100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.8; transform: translateX(-50%) translateY(-6px); }
}

/* ── SECTION COMMON ── */
.section-label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--saffron); font-weight: 500; margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark); text-align: center; margin-bottom: 14px;
}
.section-sub {
  text-align: center; color: var(--muted); font-size: 15px;
  max-width: 600px; margin: 0 auto 56px;
}

/* ── STATES SECTION ── */
.states-section {
  padding: 100px 48px;
  background: var(--paper);
  color: var(--indigo-deep);
}
.states-section .section-title { color: var(--indigo-deep); }
.states-section .section-sub   { color: rgba(27, 31, 59, 0.65); }
.states-section .section-label { color: var(--fuchsia); }

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.state-card {
  position: relative; height: 320px; border-radius: 8px; overflow: hidden;
  background: var(--img) center/cover no-repeat;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}
.state-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(17,20,42,0.3); }
.state-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Ccircle cx='13' cy='13' r='7' fill='none' stroke='rgba(251,244,232,0.22)' stroke-width='1.4'/%3E%3C/svg%3E");
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
  transition: opacity 0.3s;
}
.state-card:hover::after {
  opacity: 0.6;
}
.state-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,20,42,0.92) 0%, rgba(17,20,42,0.25) 55%, transparent 85%);
  transition: background 0.4s;
  z-index: 2;
}
.state-card:hover .state-overlay {
  background: linear-gradient(to top, rgba(17,20,42,0.95) 0%, rgba(17,20,42,0.4) 65%, transparent 90%);
}
.state-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 20px;
  z-index: 3;
}
.state-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--ink); margin-bottom: 6px;
}
.state-info p { font-size: 13px; color: rgba(244,239,230,0.8); margin-bottom: 12px; line-height: 1.5; }
.state-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.state-tags span {
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(255,138,61,0.15); border: 1px solid rgba(255,138,61,0.3);
  color: var(--marigold); padding: 2px 8px; border-radius: 4px;
}
.state-highlights {
  font-family: var(--font-mono);
  font-size: 11.5px; color: rgba(244,239,230,0.55);
  border-top: 1px dashed rgba(244,239,230,0.12);
  padding-top: 10px;
  margin-top: 8px;
}
.state-card .explore-hint {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--turmeric); opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  margin-top: 12px;
}
.state-card:hover .explore-hint { opacity: 1; transform: translateY(0); }

.states-dropdown {
  max-width: 1200px;
  margin: 18px auto 0;
}

.states-dropdown-ut {
  margin-top: 14px;
}

/* ── DESTINATIONS ── */
.destinations {
  padding: 100px 48px;
  background: var(--cream);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px; max-width: 1200px; margin: 0 auto;
}
.dest-card {
  background: var(--indigo-deep);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(17,20,42,0.15);
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(255,138,61,0.25);
  border-color: rgba(255,138,61,0.35);
}
.dest-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.dest-card:hover .dest-img {
  transform: scale(1.04);
}
.ticket-perf {
  border-top: 1px dashed var(--line);
  position: relative;
  height: 0;
  margin: 0;
}
.ticket-perf::before, .ticket-perf::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  top: -8px;
  z-index: 2;
  transition: border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ticket-perf::before {
  left: -8px;
}
.ticket-perf::after {
  right: -8px;
}
.dest-card:hover .ticket-perf::before,
.dest-card:hover .ticket-perf::after {
  border-color: rgba(255,138,61,0.35);
}
.dest-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--indigo-deep);
}
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(244,239,230,0.45);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.ticket-route {
  color: var(--turmeric);
  font-weight: 700;
}
.dest-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(17,20,42,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--marigold);
  border: 1px solid rgba(255,138,61,0.25);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dest-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.dest-body p {
  font-size: 13px;
  color: rgba(244,239,230,0.65);
  margin: 0 0 18px;
  line-height: 1.6;
  flex: 1;
}
.dest-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--turmeric);
  font-weight: 600;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.dest-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dest-card .explore-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--marigold);
  margin-top: 14px;
  font-weight: 700;
  transition: gap 0.2s ease;
}
.dest-card:hover .explore-hint {
  gap: 10px;
}

/* Premium Boarding Pass Additional Styles */
.ticket-details {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
}
.detail-item {
  display: flex;
  flex-direction: column;
}
.detail-label {
  font-size: 8px;
  color: rgba(244,239,230,0.45);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.detail-val {
  font-size: 11px;
  color: var(--turmeric);
  font-weight: 700;
}
.ticket-barcode {
  display: flex;
  height: 24px;
  gap: 2.5px;
  align-items: stretch;
  opacity: 0.45;
  margin-top: 16px;
  justify-content: center;
}
.ticket-barcode .bar {
  width: 2px;
  background: var(--ink);
}
.ticket-barcode .bar.thin {
  width: 1px;
}
.ticket-barcode .bar.thick {
  width: 4px;
}


/* Destinations Filter Tabs */
.dest-filter-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.filter-tab {
  background: var(--white);
  border: 1px solid rgba(232,98,26,0.15);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  outline: none;
}
.filter-tab:hover {
  background: rgba(232,98,26,0.05);
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-1px);
}
.filter-tab.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(232,98,26,0.25);
}

/* ── EXPERIENCES ── */
.experiences {
  padding: 100px 48px;
  background: var(--dark2);
  position: relative; overflow: hidden;
}
.experiences::before {
  content: 'भारत';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-hindi); font-size: 18rem; color: rgba(255,255,255,0.015);
  line-height: 1; pointer-events: none;
}
.experiences .section-title { color: var(--paper); }
.experiences .section-label { color: var(--turmeric); }
.experiences .section-sub   { color: rgba(244,239,230,0.5); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px; max-width: 1200px; margin: 0 auto;
}
.exp-card {
  background: var(--indigo-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.exp-card:hover {
  border-color: var(--marigold);
  background: rgba(255, 138, 61, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(17, 20, 42, 0.4);
}
.exp-card span {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}
.exp-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.exp-card p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.65);
  margin: 0;
}

.exp-dropdown,
.states-dropdown {
  max-width: 1200px;
  border: 1px solid rgba(243, 196, 135, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
    rgba(24, 19, 13, 0.7);
  box-shadow: 0 16px 38px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.exp-dropdown:hover,
.states-dropdown:hover {
  border-color: rgba(232,98,26,0.55);
  box-shadow: 0 22px 44px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.exp-dropdown > summary,
.states-dropdown > summary {
  cursor: pointer;
  padding: 17px 22px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gold-lt);
  font-size: 0.95rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
}

.exp-dropdown > summary::-webkit-details-marker,
.states-dropdown > summary::-webkit-details-marker {
  display: none;
}

.exp-dropdown > summary::before,
.states-dropdown > summary::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(243, 196, 135, 0.45);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.28), rgba(255,255,255,0.05));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.exp-dropdown > summary::after,
.states-dropdown > summary::after {
  content: '▾';
  color: var(--saffron);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

.exp-dropdown[open] > summary::after,
.states-dropdown[open] > summary::after {
  transform: rotate(180deg);
  color: var(--gold);
}

.exp-dropdown > .exp-grid-more,
.states-dropdown > .states-grid-more {
  padding: 18px;
  border-top: 1px solid rgba(243, 196, 135, 0.15);
  background: linear-gradient(180deg, rgba(13,10,7,0.22), rgba(13,10,7,0.05));
}

.exp-grid-more {
  padding: 18px;
}

.states-grid-more {
  padding: 18px;
}

/* ── VISA HELP ── */
.visa-section {
  position: relative;
  padding: 100px 48px;
  background: linear-gradient(180deg, #151108 0%, #21160b 100%);
  overflow: hidden;
}

.visa-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 15% 20%, var(--gold) 0, transparent 26%),
    radial-gradient(circle at 85% 80%, var(--saffron) 0, transparent 26%);
}

.visa-section .section-title { color: var(--ivory); }
.visa-section .section-label { color: var(--gold-lt); }
.visa-section .section-sub   { color: rgba(250,246,238,0.6); max-width: 760px; margin: 0 auto 30px; }

.visa-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.visa-steps,
.visa-side {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
  padding: 24px;
}

.visa-steps h3 {
  font-family: var(--font-display);
  color: var(--gold-lt);
  margin-bottom: 14px;
}

.visa-step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visa-step {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(0,0,0,0.2);
  padding: 14px;
}

.visa-step span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232,98,26,0.2);
  border: 1px solid rgba(232,98,26,0.55);
  color: var(--gold-lt);
  font-weight: 700;
  margin-bottom: 8px;
}

.visa-step h4 {
  color: var(--gold-lt);
  margin-bottom: 6px;
}

.visa-step p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250,246,238,0.78);
}

.visa-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(0,0,0,0.18);
  padding: 14px;
  margin-bottom: 12px;
}

.visa-card h4 {
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.visa-card p,
.visa-card li {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250,246,238,0.82);
}

.visa-card ul {
  margin-left: 16px;
}

.visa-actions {
  display: grid;
  gap: 10px;
}

.visa-actions a {
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(232,98,26,0.45);
  border-radius: 10px;
  padding: 11px 12px;
  color: var(--gold-lt);
  background: rgba(232,98,26,0.14);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.visa-actions a:hover {
  transform: translateY(-2px);
  background: rgba(232,98,26,0.25);
  border-color: var(--saffron);
}

.visa-note {
  max-width: 1200px;
  margin: 18px auto 0;
  font-size: 12px;
  color: rgba(250,246,238,0.68);
  text-align: center;
  position: relative;
  z-index: 1;
}

.visa-team-cta {
  max-width: 1200px;
  margin: 16px auto 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.visa-team-cta p {
  color: var(--ivory);
  font-weight: 500;
}

.visa-team-cta button {
  border: 1px solid rgba(232,98,26,0.55);
  background: rgba(232,98,26,0.18);
  color: var(--gold-lt);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.visa-team-cta button:hover {
  transform: translateY(-1px);
  background: rgba(232,98,26,0.28);
  border-color: var(--saffron);
}

/* ── EXPERIENCE DETAIL PAGE ── */
body.experience-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #120f0a 0%, #1b140b 40%, #24170d 100%);
  color: var(--ivory);
}

.experience-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.experience-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 24px;
}

.experience-back-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--saffron);
  transform: translateX(-4px);
  box-shadow: 0 4px 15px rgba(232,98,26,0.15);
}

/* Immersive Hero */
.experience-hero {
  min-height: 480px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(232,98,26,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  margin-bottom: 40px;
}

.experience-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.experience-hero:hover .experience-hero-bg {
  transform: scale(1.03);
}

.experience-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,15,10,0.15) 0%,
    rgba(18,15,10,0.4) 40%,
    rgba(18,15,10,0.85) 75%,
    rgba(18,15,10,0.98) 100%
  );
  z-index: 1;
}

.experience-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  text-align: left;
}

.experience-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--saffron-lt);
  background: rgba(232,98,26,0.12);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(232,98,26,0.2);
}

.experience-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin: 0 0 12px;
  line-height: 1.15;
}

.experience-tagline {
  color: rgba(250,246,238,0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 750px;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Layout */
.experience-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.experience-story,
.experience-practical {
  background: rgba(26,18,8,0.45);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(232,98,26,0.15);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.experience-story {
  border-top: 4px solid var(--saffron);
}

.experience-practical {
  border-top: 4px solid var(--gold);
}

.experience-story h2,
.experience-practical h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.experience-story h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(232,98,26,0.15);
  margin-left: 10px;
}

.experience-practical h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(212,175,55,0.15);
  margin-left: 10px;
}

.experience-story p {
  color: rgba(250,246,238,0.88);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.experience-story p:first-of-type {
  font-size: 18px;
  line-height: 1.75;
  color: var(--white);
}

/* Practical Details */
.detail-list {
  display: grid;
  gap: 16px;
}

.detail-item {
  padding: 16px;
  border-radius: 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(0,0,0,0.4);
  border-color: rgba(232,98,26,0.2);
  transform: translateY(-2px);
}

.detail-item strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron-lt);
}

.detail-item span {
  font-size: 14px;
  color: rgba(250,246,238,0.92);
  line-height: 1.5;
}

/* Related Experiences */
.related-experiences {
  background: rgba(26,18,8,0.45);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(232,98,26,0.10);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  margin-top: 40px;
}

.related-experiences h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--saffron);
  box-shadow: 0 10px 25px rgba(232,98,26,0.15);
}

.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.related-card:hover img {
  transform: scale(1.05);
}

.related-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.related-card-body h3 {
  font-size: 1.05rem;
  color: var(--gold-lt);
  margin: 0 0 8px;
  font-family: var(--font-display);
}

.related-card-body p {
  color: rgba(250,246,238,0.72);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 880px) {
  .experience-wrap {
    padding: 100px 16px 40px;
  }

  .experience-hero {
    min-height: 320px;
    margin-bottom: 24px;
  }

  .experience-hero-content {
    padding: 24px;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-story,
  .experience-practical {
    padding: 24px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .visa-wrap {
    grid-template-columns: 1fr;
  }

  .visa-step-grid {
    grid-template-columns: 1fr;
  }

  .visa-team-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── ANA CHATBOT ── */
.ana-section {
  padding: 100px 48px;
  background: var(--ivory);
  position: relative; overflow: hidden;
}
.ana-bg-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, var(--saffron) 0, var(--saffron) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

.chat-wrap { max-width: 760px; margin: 0 auto; }

.chat-box {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,18,8,0.15), 0 0 0 1px rgba(232,98,26,0.1);
}

/* Ana Header */
.chat-head {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-bottom: 2px solid var(--saffron);
}
.ana-avatar {
  position: relative; width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hindi); font-size: 1.4rem; color: var(--white);
  flex-shrink: 0;
}
.ana-glow {
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  z-index: -1; opacity: 0.4;
  animation: glowPulse 2.5s infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.2); opacity: 0.1; }
}
.chat-head-info { flex: 1; }
.chat-name {
  font-weight: 600; font-size: 16px; color: var(--ivory);
  display: flex; align-items: center; gap: 8px;
}
.badge-ai {
  font-size: 10px; background: var(--saffron); color: var(--white);
  padding: 1px 6px; border-radius: 4px; letter-spacing: 0.08em;
  font-weight: 700;
}
.chat-online { font-size: 12px; color: rgba(250,246,238,0.55); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.live-dot {
  width: 7px; height: 7px; background: #4caf72;
  border-radius: 50%; display: inline-block;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}
.chat-flag { font-size: 1.8rem; }

/* Messages */
.chat-messages {
  height: 400px; overflow-y: auto;
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
  background: var(--ivory);
  scrollbar-width: thin; scrollbar-color: var(--saffron) transparent;
}
.msg { display: flex; }
.msg.bot  { justify-content: flex-start; }
.msg.user { justify-content: flex-end; }
.msg-bubble {
  max-width: 80%; padding: 13px 18px; border-radius: 14px;
  font-size: 14px; line-height: 1.65;
  white-space: pre-wrap;
}
.msg-bubble ul {
  margin: 6px 0 6px 20px;
  padding: 0;
  list-style-type: disc;
}
.msg-bubble li {
  margin-bottom: 4px;
}
.msg.bot .msg-bubble {
  background: var(--white);
  border: 1px solid rgba(232,98,26,0.12);
  color: var(--text);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.msg.user .msg-bubble {
  background: var(--saffron);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

/* Typing */
.typing-bubble { display: flex; gap: 5px; align-items: center; padding: 14px 18px !important; }
.typing-bubble span {
  width: 7px; height: 7px; background: var(--muted);
  border-radius: 50%; animation: typeBounce 1.2s infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typeBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); background: var(--saffron); }
}

/* Pills */
.chat-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 20px 14px;
  background: var(--ivory);
}
.chat-pills button {
  background: var(--white); border: 1px solid rgba(232,98,26,0.25);
  color: var(--saffron); padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-family: var(--font-body); cursor: pointer;
  transition: all 0.2s;
}
.chat-pills button:hover { background: var(--saffron); color: var(--white); border-color: var(--saffron); }

/* Input */
.chat-input-row {
  display: flex; gap: 10px; align-items: center;
  padding: 16px 20px;
  border-top: 1px solid rgba(232,98,26,0.1);
  background: var(--white);
}
#chatInput {
  flex: 1; background: var(--ivory); border: 1px solid rgba(232,98,26,0.2);
  border-radius: 10px; padding: 12px 16px;
  color: var(--text); font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color 0.2s;
}
#chatInput:focus { border-color: var(--saffron); }
#chatInput::placeholder { color: var(--muted); }
.send-btn {
  width: 46px; height: 46px; background: var(--saffron);
  border: none; border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s; flex-shrink: 0;
}
.send-btn:hover { background: var(--saffron-lt); transform: scale(1.05); }
.send-btn svg { width: 18px; height: 18px; stroke: white; }

/* ── FOOTER ── */
.footer { background: var(--indigo-deep); border-top: 1px solid var(--line); }
.footer-inner {
  display: flex; gap: 60px; padding: 60px 48px;
  flex-wrap: wrap;
}
.footer-brand { flex: 2; min-width: 220px; }
.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--ink); margin-bottom: 12px;
}
.footer-logo strong { color: var(--marigold); }
.footer-brand p { color: rgba(244, 239, 230, 0.55); font-size: 13px; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5 { color: var(--turmeric); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.footer-links a { color: rgba(244, 239, 230, 0.70); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--marigold); }
.footer-bottom {
  text-align: center; padding: 20px 48px;
  border-top: 1px solid var(--line);
  color: rgba(244, 239, 230, 0.45); font-size: 12px;
}

/* ── APP PROMO SECTION ── */
.app-promo {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.app-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 98, 26, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.app-promo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.app-promo-content {
  flex: 1.2;
  max-width: 650px;
}
.app-promo-tag {
  background: rgba(232, 98, 26, 0.1);
  border: 1px solid rgba(232, 98, 26, 0.25);
  color: var(--saffron-lt);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(232, 98, 26, 0.05);
}
.app-promo-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--ivory);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.app-promo-desc {
  color: rgba(250, 246, 238, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.app-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.app-badge {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ivory);
  padding: 10px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
}
.app-badge:hover {
  border-color: var(--saffron-lt);
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232, 98, 26, 0.2);
}
.badge-icon {
  width: 26px;
  height: 26px;
  color: var(--ivory);
  flex-shrink: 0;
  transition: color 0.3s, transform 0.3s;
}
.app-badge:hover .badge-icon {
  color: var(--saffron-lt);
  transform: scale(1.1);
}
.badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.badge-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(250, 246, 238, 0.5);
  line-height: 1.2;
}
.badge-main {
  font-size: 14px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.3;
}
.app-promo-mockup {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mockup-img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.65));
  animation: floatAppMockup 6s ease-in-out infinite;
}
@keyframes floatAppMockup {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@media (max-width: 992px) {
  .app-promo-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .app-promo-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .app-badges {
    justify-content: center;
  }
  .mockup-img {
    max-height: 400px;
  }
}
@media (max-width: 576px) {
  .app-promo {
    padding: 60px 20px;
  }
  .app-promo-title {
    font-size: 2.2rem;
  }
  .app-badges {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .app-badge {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  
  /* Mobile Menu Toggle (Hamburger) */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1000;
  }
  
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--saffron);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--saffron);
  }

  /* Sliding Drawer for Mobile Nav Links */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 18, 8, 0.96);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(232, 98, 26, 0.15);
    padding: 100px 30px 40px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    align-items: flex-start;
  }
  
  .nav-links.active {
    right: 0;
  }

  /* Adjust Dropdown inside drawer */
  .nav-links .dropdown {
    width: 100%;
    position: relative;
  }
  
  .nav-links .dropdown-menu {
    display: none;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 15px;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    width: 100%;
  }
  
  .nav-links .dropdown-menu.active {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .nav-links .dropdown-trigger .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .nav-links .dropdown-trigger .arrow.rotate {
    transform: rotate(180deg);
  }

  .hero-stats { gap: 24px; }
  .states-section, .destinations, .experiences, .ana-section { padding: 60px 20px; }
  .dest-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 40px 20px; gap: 32px; }
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 5%;
    gap: 24px;
  }
}

/* ── BOOKING SECTION ── */
.booking-section {
  padding: 100px 48px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.booking-bg-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(232,98,26,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(14,107,107,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.booking-section .section-title { color: var(--ivory); }
.booking-section .section-label { color: var(--gold-lt); }
.booking-section .section-sub   { color: rgba(250,246,238,0.5); margin-bottom: 40px; }

/* ── Tabs ── */
.booking-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 5px;
}

.booking-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 20px;
  background: transparent;
  border: none;
  border-radius: 46px;
  color: rgba(250,246,238,0.5);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.booking-tab:hover {
  color: var(--ivory);
  background: rgba(255,255,255,0.07);
}

.booking-tab.active {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-lt));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,98,26,0.4);
}

.tab-icon { font-size: 1rem; }

/* ── Widget Wrap ── */
.booking-widget-wrap {
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.booking-widget-panel {
  display: none;
}

.booking-widget-panel.active {
  display: block;
  animation: fadeInPanel 0.35s ease;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.widget-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(232,98,26,0.15), rgba(14,107,107,0.1));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.widget-header-icon {
  font-size: 2rem;
  line-height: 1;
}

.widget-header-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 4px;
}

.widget-header-sub {
  font-size: 12px;
  color: rgba(250,246,238,0.5);
  letter-spacing: 0.04em;
}

/* Skyscanner widget container */
.widget-inner [data-skyscanner-widget] {
  min-height: 80px;
  padding: 16px;
}

/* Fallback CTA (shown below widget always as backup) */
.booking-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 12px;
}

.booking-fallback p {
  font-size: 13px;
  color: rgba(250,246,238,0.45);
}

.booking-fallback-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-lt));
  color: var(--white);
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,98,26,0.35);
}

.booking-fallback-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,98,26,0.5);
}

/* ── Quick Destination Links ── */
.booking-quick-links {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bql-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.35);
  margin-bottom: 14px;
}

.bql-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.bql-pills a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  color: rgba(250,246,238,0.65);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.bql-pills a:hover {
  background: rgba(232,98,26,0.15);
  border-color: var(--saffron);
  color: var(--saffron-lt);
  transform: translateY(-2px);
}

/* ── Trust Badges ── */
.booking-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-badge span {
  font-size: 1.4rem;
}

.trust-badge p {
  font-size: 12px;
  color: rgba(250,246,238,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Responsive additions ── */
@media (max-width: 768px) {
  .booking-section { padding: 60px 20px; }
  .booking-tabs { max-width: 100%; }
  .booking-tab { font-size: 12px; padding: 10px 14px; }
  .booking-trust { gap: 20px; }
  .widget-header { padding: 18px 20px; }
}


/* ── LOGO STYLES ── */

/* Navbar logo */
.nav-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(212,160,23,0.5));
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo-img:hover {
  filter: drop-shadow(0 4px 16px rgba(212,160,23,0.7));
  transform: scale(1.04);
}

/* Hero logo */
.hero-logo-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  animation: heroLogoFadeIn 1.2s ease forwards;
}
@keyframes heroLogoFadeIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-logo-img {
  height: 170px;
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 50px rgba(212,160,23,0.7))
    drop-shadow(0 6px 24px rgba(0,0,0,0.4));
}

/* Footer logo */
.footer-logo {
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 12px rgba(212,160,23,0.4))
    brightness(0.95);
  transition: filter 0.3s;
}
.footer-logo-img:hover {
  filter:
    drop-shadow(0 4px 20px rgba(212,160,23,0.6))
    brightness(1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-logo-img { height: 120px; }
  .nav-logo-img  { height: 36px; }
  .footer-logo-img { height: 52px; }
}


/* ══════════════════════════════════════════
   ROME2RIO SECTION
══════════════════════════════════════════ */
.rome2rio-section {
  padding: 100px 48px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.rome2rio-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(14,107,107,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(232,98,26,0.05) 0%, transparent 70%);
}
.rome2rio-section .section-title { color: var(--dark); }
.rome2rio-section .section-label { color: var(--saffron); }
.rome2rio-section .section-sub   { color: var(--muted); }

.rome2rio-wrap {
  max-width: 860px;
  margin: 0 auto 48px;
  position: relative; z-index: 1;
}

.rome2rio-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,18,8,0.1), 0 0 0 1px rgba(14,107,107,0.08);
}

.rome2rio-header {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--teal) 0%, #0a5252 100%);
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.r2r-icon { font-size: 2rem; line-height: 1; }
.r2r-title {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--ivory); margin-bottom: 3px;
}
.r2r-sub { font-size: 12px; color: rgba(250,246,238,0.55); letter-spacing: 0.03em; }
.r2r-badge {
  margin-left: auto;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--ivory); font-size: 11px;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.08em; font-weight: 500;
}

.rome2rio-widget-box {
  padding: 0;
  background: var(--white);
}
.rome2rio-widget-box iframe {
  display: block;
  width: 100%;
  min-height: 380px;
}

.r2r-fallback {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  padding: 18px 28px;
  border-top: 1px solid rgba(14,107,107,0.1);
  background: rgba(14,107,107,0.03);
}
.r2r-fallback p { font-size: 13px; color: var(--muted); }
.r2r-fallback-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-lt));
  color: var(--white);
  padding: 10px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(14,107,107,0.3);
}
.r2r-fallback-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,107,107,0.45); }

/* Transport strip */
.transport-strip {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.transport-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(14,107,107,0.12);
  border-radius: 14px;
  min-width: 80px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.transport-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(14,107,107,0.15);
  border-color: var(--teal);
}
.transport-item span { font-size: 1.8rem; }
.transport-item p { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }


/* ══════════════════════════════════════════
   CURRENCY CONVERTER SECTION
══════════════════════════════════════════ */
.currency-section {
  padding: 100px 48px;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.currency-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 15% 50%, rgba(212,160,23,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 40% at 85% 30%, rgba(232,98,26,0.06) 0%, transparent 70%);
}
.currency-section .section-title { color: var(--ivory); }
.currency-section .section-label { color: var(--gold-lt); }
.currency-section .section-sub   { color: rgba(250,246,238,0.5); }

.currency-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.currency-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.currency-header {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(232,98,26,0.15));
  border-bottom: 1px solid rgba(212,160,23,0.2);
}
.curr-icon { font-size: 2rem; }
.curr-title {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--ivory); margin-bottom: 3px;
}
.curr-sub { font-size: 12px; color: rgba(250,246,238,0.5); letter-spacing: 0.03em; }

.converter-body { padding: 28px; }

.converter-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto 1.4fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.converter-field { display: flex; flex-direction: column; gap: 8px; }
.conv-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,246,238,0.4); font-weight: 500;
}

.conv-input, .conv-select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.conv-input:focus, .conv-select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.conv-select option { background: #2B1F0E; color: var(--ivory); }

.converter-arrow {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; padding-bottom: 4px;
}
.converter-arrow span {
  font-size: 1.5rem; color: var(--gold-lt);
  animation: arrowPulse 1.8s infinite;
}
@keyframes arrowPulse {
  0%,100% { transform: translateX(0); opacity: 0.7; }
  50%      { transform: translateX(4px); opacity: 1; }
}
.converter-arrow small {
  font-size: 10px; color: rgba(250,246,238,0.4);
  letter-spacing: 0.08em; text-transform: uppercase;
}

.converter-result-box { display: flex; flex-direction: column; gap: 8px; }
.conv-result {
  display: flex; align-items: baseline; gap: 8px;
  background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(232,98,26,0.1));
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 10px;
  padding: 10px 16px;
  min-height: 50px;
}
.conv-result-num {
  font-family: var(--font-display);
  font-size: 1.7rem; color: var(--gold-lt);
  line-height: 1;
  transition: all 0.3s;
}
.conv-result-sym {
  font-size: 1rem; color: var(--gold);
  font-weight: 600;
}

.conv-rate-line {
  font-size: 12px; color: rgba(250,246,238,0.4);
  letter-spacing: 0.04em; margin-bottom: 28px;
  padding-left: 2px;
}

/* Quick rates grid */
.quick-rates { }
.qr-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,246,238,0.35); margin-bottom: 14px;
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.qr-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.2s, background 0.2s;
}
.qr-item:hover {
  border-color: rgba(212,160,23,0.3);
  background: rgba(212,160,23,0.07);
}
.qr-flag { font-size: 1.1rem; }
.qr-code { font-size: 11px; color: rgba(250,246,238,0.5); font-weight: 500; flex: 1; }
.qr-val  { font-size: 13px; color: var(--gold-lt); font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
  .rome2rio-section, .currency-section { padding: 60px 20px; }
  .converter-row { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .converter-arrow { display: none; }
  .qr-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .transport-strip { gap: 12px; }
  .transport-item { min-width: 64px; padding: 12px 14px; }
}


/* ── ROUTE FINDER UI ── */
.route-inputs {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(14,107,107,0.1);
  background: rgba(14,107,107,0.03);
}

.route-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.route-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid rgba(14,107,107,0.2);
  border-radius: 10px;
  padding: 0 14px;
  transition: border-color 0.2s;
}
.route-field:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,107,107,0.08);
}

.route-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
  letter-spacing: 0;
}
.from-dot { background: var(--teal); color: white; }
.to-dot   { background: var(--saffron); color: white; }

.route-input {
  flex: 1;
  border: none; outline: none;
  padding: 13px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: transparent;
}
.route-input::placeholder { color: var(--muted); }

.route-swap-btn {
  width: 36px; height: 36px;
  background: var(--cream);
  border: 1.5px solid rgba(14,107,107,0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  transition: all 0.2s;
}
.route-swap-btn:hover {
  background: var(--teal);
  color: white;
  transform: rotate(180deg);
}

.route-mode-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.route-mode-label {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500; flex-shrink: 0;
}

.route-modes {
  display: flex; gap: 8px; flex-wrap: wrap; flex: 1;
}

.mode-btn {
  padding: 7px 14px;
  background: var(--white);
  border: 1.5px solid rgba(14,107,107,0.2);
  border-radius: 20px;
  font-size: 12px; font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.mode-btn:hover { border-color: var(--teal); color: var(--teal); }
.mode-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.route-search-btn {
  margin-left: auto;
  background: linear-gradient(135deg, var(--teal), var(--teal-lt));
  color: white;
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  font-size: 14px; font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(14,107,107,0.3);
  flex-shrink: 0;
}
.route-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,107,107,0.45);
}

/* Map display box */
.route-map-box {
  width: 100%;
  height: 420px;
  background: var(--cream);
  position: relative;
}

.route-map-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(14,107,107,0.04), rgba(232,98,26,0.03));
}
.placeholder-icon { font-size: 3.5rem; opacity: 0.4; }
.route-map-placeholder p {
  font-size: 14px; color: var(--muted);
  text-align: center; max-width: 340px; line-height: 1.6;
}

.route-map-iframe {
  width: 100%; height: 100%;
  border: none;
}

/* Popular routes */
.popular-routes {
  padding: 20px 28px 24px;
  border-top: 1px solid rgba(14,107,107,0.1);
  background: rgba(14,107,107,0.02);
}
.pr-label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px; font-weight: 500;
}
.pr-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pr-pills button {
  background: var(--white);
  border: 1.5px solid rgba(14,107,107,0.15);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 12px; color: var(--teal);
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.pr-pills button:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14,107,107,0.2);
}

@media (max-width: 768px) {
  .route-input-group { flex-direction: column; }
  .route-swap-btn { transform: rotate(90deg); }
  .route-swap-btn:hover { transform: rotate(270deg); }
  .route-mode-row { gap: 8px; }
  .route-search-btn { width: 100%; justify-content: center; margin-left: 0; }
  .route-map-box { height: 300px; }
}

/* ── FESTIVAL CALENDAR ── */
.festivals-section {
  padding: 100px 48px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.festivals-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(232,98,26,0.03) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(14,107,107,0.03) 0%, transparent 50%);
}

.fest-controls {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Horizontal month timeline */
.month-timeline {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 4px;
  scrollbar-width: none; /* Firefox */
}
.month-timeline::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.month-btn {
  padding: 8px 18px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid rgba(232,98,26,0.15);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: all 0.25s ease;
}

.month-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-1px);
}

.month-btn.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(232,98,26,0.25);
}

/* Filters Row */
.fest-filters-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

#festSearch {
  flex: 1;
  min-width: 260px;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(232,98,26,0.2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

#festSearch:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.1);
}

#festRegionSelect {
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(232,98,26,0.2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s;
}

#festRegionSelect:focus {
  border-color: var(--saffron);
}

/* Festival Grid */
.fest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fest-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26,18,8,0.04), 0 0 0 1px rgba(232,98,26,0.05);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.fest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26,18,8,0.08), 0 0 0 1px rgba(232,98,26,0.15);
}

.fest-img-container {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.fest-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.fest-card:hover .fest-img-container img {
  transform: scale(1.05);
}

.fest-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.7) 0%, transparent 60%);
}

.fest-meta-badges {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.fest-badge-date {
  background: var(--saffron);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.fest-badge-region {
  background: rgba(14,107,107,0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
}

.fest-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fest-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.fest-title-row h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  line-height: 1.25;
}

.fest-location-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.fest-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.fest-tags span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(232,98,26,0.06);
  border: 1px solid rgba(232,98,26,0.15);
  color: var(--saffron);
  padding: 3px 8px;
  border-radius: 12px;
}

.fest-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* Accordion Drawer */
.fest-details {
  border-top: 1px solid rgba(232,98,26,0.1);
  background: var(--cream);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.fest-details.open {
  max-height: 500px; /* high enough to contain content */
}

.fest-details-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fest-detail-block h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saffron);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fest-detail-block p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.fest-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 16px;
}

.fest-btn-details {
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(232,98,26,0.3);
  color: var(--saffron);
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.fest-btn-details:hover {
  background: rgba(232,98,26,0.05);
  border-color: var(--saffron);
}

.fest-btn-details.open-btn {
  background: rgba(232,98,26,0.1);
  border-color: var(--saffron);
}

.fest-btn-ana {
  background: var(--saffron);
  border: none;
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s;
}

.fest-btn-ana:hover {
  background: var(--saffron-lt);
}

@media (max-width: 768px) {
  .festivals-section {
    padding: 80px 24px;
  }
  .fest-grid {
    grid-template-columns: 1fr;
  }
}

/* Festivals & Destinations Dropdown styling */
.fest-dropdown,
.dest-dropdown {
  max-width: 1200px;
  margin: 40px auto 0;
  border: 1px solid rgba(232,98,26,0.15);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(26,18,8,0.03), inset 0 1px 0 rgba(255,255,255,0.6);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.fest-dropdown:hover,
.dest-dropdown:hover {
  border-color: var(--saffron);
  box-shadow: 0 16px 38px rgba(26,18,8,0.06);
  transform: translateY(-1px);
}

.fest-dropdown > summary,
.dest-dropdown > summary {
  cursor: pointer;
  padding: 18px 24px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--saffron);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: linear-gradient(180deg, rgba(232,98,26,0.02), rgba(232,98,26,0.05));
}

.fest-dropdown > summary::-webkit-details-marker,
.dest-dropdown > summary::-webkit-details-marker {
  display: none;
}

.fest-dropdown > summary::before,
.dest-dropdown > summary::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(232,98,26,0.3);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}

.fest-dropdown > summary::after,
.dest-dropdown > summary::after {
  content: '▾';
  color: var(--saffron);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

.fest-dropdown[open] > summary::after,
.dest-dropdown[open] > summary::after {
  transform: rotate(180deg);
  color: var(--saffron-lt);
}

.dest-dropdown > .dest-grid-more {
  padding: 24px;
  border-top: 1px solid rgba(232,98,26,0.1);
  background: var(--cream);
}

.fest-dropdown-grid {
  padding: 24px;
  border-top: 1px solid rgba(232,98,26,0.1);
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .fest-dropdown-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}

/* ── FLOATING CHAT DRAWER & FAB ── */
.chat-drawer {
  position: fixed; inset: 0; z-index: 10000;
  pointer-events: none;
  overflow: hidden;
  font-family: var(--font-body);
}

.chat-drawer.active {
  pointer-events: all;
}

.chat-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,18,8,0.65);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.chat-drawer.active .chat-drawer-backdrop {
  opacity: 1;
}

.chat-drawer-content {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 460px; max-width: 100%;
  background: var(--ivory);
  box-shadow: -15px 0 50px rgba(0,0,0,0.3);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-drawer.active .chat-drawer-content {
  transform: translateX(0);
}

/* Drawer Header */
.chat-drawer-header {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 24px 20px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-bottom: 2px solid var(--saffron);
  color: var(--ivory);
  position: relative;
}

.chat-drawer-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hindi); font-size: 1.2rem; color: var(--white);
}

.chat-drawer-close {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  background: transparent; border: none;
  color: var(--muted); font-size: 24px; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.chat-drawer-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--saffron);
}

/* Chat Messages inside Drawer */
.chat-drawer-messages.chat-messages {
  flex: 1; height: auto;
  background: rgba(250,246,238,0.4);
}

/* Floating Action Buttons (FAB) */
.floating-actions {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}

.fab-btn {
  border: none; border-radius: 50px;
  padding: 12px 24px 12px 14px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(26,18,8,0.25), 0 0 0 1px rgba(232,98,26,0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative; overflow: hidden;
}

.fab-ana {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-bottom: 2px solid var(--saffron);
}

.fab-team {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-bottom: 2px solid var(--gold);
}
.fab-team .fab-avatar {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
}

.fab-avatar {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hindi); font-size: 1rem; color: var(--white);
}

.fab-label {
  font-weight: 600; font-size: 13px; color: var(--ivory);
  letter-spacing: 0.04em;
}

.fab-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(232,98,26,0.15) 0%, transparent 70%);
  opacity: 0.5;
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.fab-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(232,98,26,0.3);
}

@media (max-width: 480px) {
  .chat-drawer-content {
    width: 100%;
  }
}

.ana-cta-btn {
  background: var(--saffron);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.ana-cta-btn:hover {
  background: var(--saffron-lt);
  transform: translateY(-2px);
}

/* ── FESTIVAL DETAIL MODAL ── */
.fest-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.fest-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.fest-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 15, 10, 0.75);
  backdrop-filter: blur(8px);
}

.fest-modal-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 680px;
  background: rgba(26, 18, 8, 0.95);
  border: 1px solid rgba(232, 98, 26, 0.25);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.fest-modal.active .fest-modal-content {
  transform: scale(1);
}

.fest-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.fest-modal-close:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: rotate(90deg);
}

/* Modal Hero */
.fest-modal-hero {
  position: relative;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
}

.fest-modal-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.fest-modal-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 15, 10, 0.1) 0%,
    rgba(18, 15, 10, 0.5) 50%,
    rgba(18, 15, 10, 0.95) 100%
  );
  z-index: 1;
}

.fest-modal-hero-content {
  position: relative;
  z-index: 2;
}

.fest-modal-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--saffron-lt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fest-modal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin: 6px 0;
}

.fest-modal-location {
  font-size: 13px;
  color: rgba(250, 246, 238, 0.8);
}

/* Modal Body */
.fest-modal-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}

/* Modal Tabs */
.fest-modal-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.fest-modal-tabs::-webkit-scrollbar {
  display: none;
}

.fm-tab-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(250, 246, 238, 0.6);
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.fm-tab-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.fm-tab-btn.active {
  color: var(--white);
  background: rgba(232, 98, 26, 0.15);
  border-color: rgba(232, 98, 26, 0.3);
}

/* Tab Content */
.fm-tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.fm-tab-content.active {
  display: block;
}

.fm-info-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
}

.fm-info-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saffron-lt);
  margin-top: 0;
  margin-bottom: 12px;
}

.fm-info-card p {
  color: rgba(250, 246, 238, 0.88);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* Footer Button */
.fest-modal-footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.fest-modal-ana-btn {
  width: 100%;
  background: var(--saffron);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(232, 98, 26, 0.3);
}

.fest-modal-ana-btn:hover {
  background: var(--saffron-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 98, 26, 0.45);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .fest-modal-hero {
    height: 180px;
    padding: 20px;
  }
  .fest-modal-title {
    font-size: 1.7rem;
  }
  .fest-modal-body {
    padding: 20px;
  }
  .fm-tab-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Consolidated Mobile Overrides at bottom to guarantee priority */
@media (max-width: 768px) {
  /* Prevent simulated hover state on touch devices from breaking dropdown menu formatting */
  .dropdown:hover .dropdown-menu {
    display: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .dropdown:hover .dropdown-menu.active {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .stats-banner {
    grid-template-columns: 1fr;
  }
  .converter-row {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
}

/* ==========================================================================
   3D VISUAL UPGRADES & GLASSMORPHISM DESIGN SYSTEM
   ========================================================================== */

/* ── Glassmorphism System ── */
.glass-panel {
  background: rgba(26, 18, 8, 0.45) !important;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(250, 246, 238, 0.08) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(232, 98, 26, 0.3) !important;
  box-shadow: 0 20px 48px rgba(232, 98, 26, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ── 3D Card Hover & Shine Tilt Engine ── */
.state-card, .dest-card, .exp-card, .place-card, .food-card-link, .souvenir-card, .timing-card, .tip-card {
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}

/* Shine overlay inserted dynamically by script.js */
.card-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 200px at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.18), transparent 85%);
  z-index: 5;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: inherit;
}

/* Translate inner text components slightly on Z axis for deep 3D effect */
.state-card h3, .dest-body h3, .exp-card h4, .place-body h4, .food-card h4, .souvenir-card h4 {
  transform: translateZ(25px);
  transition: transform 0.3s ease;
}

.state-card p, .dest-body p, .exp-card p, .place-body p, .food-card p, .souvenir-card p {
  transform: translateZ(15px);
  transition: transform 0.3s ease;
}

.state-tags, .dest-badge, .souvenir-where, .place-img-badge {
  transform: translateZ(35px);
  transition: transform 0.3s ease;
}

/* ── 3D Isometric Stats Banner ── */
.stats-banner {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.stat-item {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 30px 20px;
  transform: translateZ(0px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, background 0.4s ease;
  transform-style: preserve-3d;
}

.stat-item:hover {
  background: rgba(232, 98, 26, 0.04);
  border-color: rgba(232, 98, 26, 0.25);
  transform: translateZ(30px) translateY(-8px) rotateX(6deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Isometric ground shadow */
.stat-item::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 10%;
  width: 80%;
  height: 6px;
  background: rgba(0, 0, 0, 0.6);
  filter: blur(5px);
  border-radius: 50%;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.stat-item:hover::after {
  opacity: 0.4;
  transform: translateY(12px) scale(0.95);
  filter: blur(8px);
}

.stat-number {
  transform: translateZ(20px);
  text-shadow: 0 4px 15px rgba(232, 98, 26, 0.2);
}

.stat-label {
  transform: translateZ(10px);
}

/* ── Holographic 3D Globe Section ── */
.globe-3d-section {
  position: relative;
  background: linear-gradient(180deg, #1A1208 0%, #0d0804 100%);
  padding: 100px 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(232, 98, 26, 0.1);
}

.globe-3d-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 600px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  z-index: 10;
}

.globe-canvas-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

#globe-3d-canvas {
  width: 100%;
  height: 100%;
  cursor: grab;
}

#globe-3d-canvas:active {
  cursor: grabbing;
}

/* Glassmorphic Globe details card */
.globe-info-card {
  padding: 40px;
  border-radius: 20px;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.globe-info-card h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-lt);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(212, 160, 23, 0.2);
}

.globe-info-card p {
  color: rgba(250, 246, 238, 0.75);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.globe-dest-preview {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.globe-dest-preview.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.globe-dest-preview h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--saffron-lt);
  margin-bottom: 6px;
}

.globe-dest-preview p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.globe-dest-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  text-decoration: none;
  font-weight: 700;
  transition: gap 0.2s;
}

.globe-dest-link:hover {
  gap: 10px;
}

/* ── 3D Step Transitions for Multi-Step Form ── */
.form-panel {
  transform-origin: center center -150px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes slideIn3D {
  0% {
    opacity: 0;
    transform: perspective(1000px) translate3d(0, 30px, -80px) rotateX(-8deg);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) translate3d(0, 0, 0) rotateX(0);
  }
}

.form-panel.active {
  display: block;
  animation: slideIn3D 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .globe-3d-container {
    grid-template-columns: 1fr;
    height: auto;
  }
  .globe-canvas-wrap {
    height: 400px;
  }
  .globe-info-card {
    padding: 20px 0;
    height: auto;
  }
}

@media (max-width: 480px) {
  .globe-3d-section {
    padding: 60px 20px;
  }
  .globe-canvas-wrap {
    height: 320px;
  }
  .globe-info-card h3 {
    font-size: 2rem;
  }
}


/* ── Souvenir Shop – Coming Soon Section ── */
.souvenir-shop-section {
  position: relative;
  padding: 100px 48px 110px;
  background: linear-gradient(168deg, #0d0804 0%, #1A1208 40%, #0E1A1A 100%);
  overflow: hidden;
  text-align: center;
}

.souvenir-shop-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 15% 80%, rgba(212, 160, 23, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 45% 40% at 85% 20%, rgba(14, 107, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.souvenir-shop-section .section-label {
  color: var(--gold-lt);
}
.souvenir-shop-section .section-title {
  color: var(--ivory);
  margin-bottom: 6px;
}
.souvenir-shop-section .section-sub {
  color: rgba(250, 246, 238, 0.5);
  max-width: 680px;
  margin: 0 auto 12px;
}

.souvenir-shop-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.souvenir-shop-brand span {
  font-size: 1.6rem;
}

/* Hero Image Banner */
.souvenir-hero-img {
  position: relative;
  max-width: 900px;
  margin: 0 auto 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.12);
}
.souvenir-hero-img img,
.souvenir-hero-img video {
  width: 100%;
  display: block;
  filter: brightness(0.92) contrast(1.05);
  object-fit: cover;
  min-height: 320px;
  max-height: 520px;
  transition: filter 0.6s ease;
}
.souvenir-hero-img img {
  animation: souvenir-kenburns 35s ease-in-out infinite;
}
.souvenir-hero-img:hover img,
.souvenir-hero-img:hover video {
  filter: brightness(1.0) contrast(1.08);
}
@keyframes souvenir-kenburns {
  0% {
    transform: scale(1.0) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-1%, -0.5%);
  }
  100% {
    transform: scale(1.0) translate(0, 0);
  }
}
.souvenir-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 8, 4, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
}
.souvenir-hero-overlay .coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50px;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 160, 23, 0.15); }
  50%      { box-shadow: 0 0 40px rgba(212, 160, 23, 0.35), 0 0 10px rgba(240, 192, 64, 0.2); }
}
.coming-soon-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-lt);
  animation: dotBlink 1.4s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

.souvenir-sound-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 15;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ivory);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.souvenir-sound-btn:hover {
  border-color: var(--saffron-lt);
  background: rgba(232, 98, 26, 0.25);
  color: var(--saffron-lt);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(232, 98, 26, 0.25);
}
.souvenir-sound-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
  transition: transform 0.2s ease;
}
.souvenir-sound-btn:active {
  transform: scale(0.95);
}

/* Perfume Product Cards Grid */
.perfume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}

.perfume-card {
  background: rgba(26, 18, 8, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: 18px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.perfume-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 160, 23, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.perfume-card:hover::before {
  opacity: 1;
}
.perfume-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.25);
}

.perfume-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(212, 160, 23, 0.2));
}

.perfume-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 4px;
}
.perfume-card .perfume-city {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.perfume-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.55);
}
.perfume-card .perfume-notes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
.perfume-note-tag {
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.72rem;
  color: var(--gold-lt);
  font-family: var(--font-body);
  font-weight: 500;
}

/* Notify CTA */
.souvenir-notify-wrap {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.souvenir-notify-wrap p {
  color: rgba(250, 246, 238, 0.4);
  font-family: var(--font-body);
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.souvenir-notify-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.2);
  background: rgba(26, 18, 8, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.souvenir-notify-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.15);
}
.souvenir-notify-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ivory);
}
.souvenir-notify-form input::placeholder {
  color: rgba(250, 246, 238, 0.3);
}
.souvenir-notify-form button {
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.2s ease;
}
.souvenir-notify-form button:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .souvenir-shop-section {
    padding: 70px 20px 80px;
  }
  .perfume-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .perfume-card {
    padding: 24px 16px 20px;
  }
  .souvenir-hero-img {
    margin-bottom: 36px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .perfume-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== REDESIGNED HERO GRID & SPLIT-FLAP BOARD ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-welcome {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turmeric);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.hero-welcome::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--marigold);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.2);
}
.hero-title-main {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 10px 0 24px;
}
.hero-title-main em {
  font-style: normal;
  font-weight: 300;
  color: var(--marigold);
}
.hero-quote {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.75);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-btns-custom {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--marigold);
  color: var(--indigo-deep);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  font-family: var(--font-body);
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--turmeric);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--font-body);
  display: inline-block;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--ink);
}

/* ===== SPLIT-FLAP BOARD ===== */
.board {
  background: var(--indigo-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px 20px;
  font-family: var(--font-mono);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.board-head {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1.6fr;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.45);
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.board-row {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1.6fr;
  align-items: center;
  padding: 10px 0;
  gap: 6px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.06);
}
.board-row:last-child {
  border-bottom: none;
}
.flap-cell {
  display: flex;
  gap: 3px;
}
.flap {
  position: relative;
  width: 19px;
  height: 25px;
  background: linear-gradient(to bottom, #252a55 0%, #1c2044 49%, #0f1128 51%, #090a18 100%);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  border: 1px solid #05060f;
}
.flap span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
  font-family: var(--font-mono);
}
.flap.flipping span {
  animation: flipchar 0.28s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
@keyframes flipchar {
  0% { transform: rotateX(0deg); filter: brightness(1); }
  50% { transform: rotateX(90deg); filter: brightness(0.4); }
  50.1% { transform: rotateX(-90deg); filter: brightness(0.4); }
  100% { transform: rotateX(0deg); filter: brightness(1); }
}
/* Hinge Axel split line */
.flap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-50%);
  z-index: 10;
}
/* Side axle notches */
.flap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%);
  box-shadow: 17px 0 0 rgba(255,255,255,0.25); /* right hinge pin representation */
  z-index: 12;
}

.code-cell {
  color: var(--marigold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
}
.status-cell {
  font-size: 11px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
}
.status-cell.boarding { color: var(--turmeric); }
.status-cell.ontime { color: #7fd6c2; }
.status-cell.now { color: var(--fuchsia); }

/* ── LED Status Lamps ── */
.led-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}
.led-dot.ontime {
  background-color: #7fd6c2;
  box-shadow: 0 0 6px #7fd6c2, 0 0 12px #7fd6c2;
  animation: led-pulse-green 2.0s infinite ease-in-out;
}
.led-dot.boarding {
  background-color: var(--turmeric);
  box-shadow: 0 0 6px var(--turmeric), 0 0 12px var(--turmeric);
  animation: led-blink-amber 1.0s infinite steps(2, start);
}
.led-dot.now {
  background-color: var(--fuchsia);
  box-shadow: 0 0 6px var(--fuchsia), 0 0 12px var(--fuchsia);
  animation: led-blink-red 0.5s infinite steps(2, start);
}

@keyframes led-pulse-green {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1.0; transform: scale(1.15); }
}
@keyframes led-blink-amber {
  0%, 100% { opacity: 1.0; filter: brightness(1.2); }
  50% { opacity: 0.2; }
}
@keyframes led-blink-red {
  0%, 100% { opacity: 1.0; filter: brightness(1.3); }
  50% { opacity: 0.15; }
}

.board-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 10.5px;
  color: rgba(244, 239, 230, 0.4);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 990px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .board-head, .board-row {
    grid-template-columns: 1.4fr 0.6fr 1.2fr;
  }
  .flap {
    width: 14px;
    height: 20px;
  }
  .flap span {
    font-size: 10px;
  }
}


/* ============================================
   Interactive 2D Map Styles
   ============================================ */

.map-view-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px auto 40px auto;
  max-width: 500px;
  background: rgba(17, 20, 42, 0.4);
  padding: 6px;
  border-radius: 30px;
  border: 1px solid rgba(244, 239, 230, 0.08);
}

.map-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(244, 239, 230, 0.6);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.map-tab-btn:hover {
  color: var(--white);
  background: rgba(244, 239, 230, 0.05);
}

.map-tab-btn.active {
  background: var(--marigold);
  color: var(--indigo-deep);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 138, 61, 0.25);
}

.map-view-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.map-view-content.active {
  display: block;
}

.map-2d-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.map-svg-wrap {
  flex: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 20, 42, 0.35);
  border-radius: 12px;
  border: 1px solid rgba(244, 239, 230, 0.06);
  padding: 24px;
  min-height: 480px;
  max-height: 600px;
  position: relative;
}

.map-svg-wrap svg {
  width: 100%;
  height: auto;
  max-height: 520px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.map-state-path {
  fill: rgba(244, 239, 230, 0.08);
  stroke: rgba(244, 239, 230, 0.22);
  stroke-width: 1.2px;
  stroke-linejoin: round;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-state-path:hover,
.map-state-path.hovered-active {
  fill: var(--turmeric);
  stroke: var(--white);
  stroke-width: 1.8px;
  filter: drop-shadow(0 0 10px rgba(255, 194, 60, 0.75));
  z-index: 10;
}

.map-details-card {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  padding: 24px;
  border-radius: 12px;
  background: rgba(17, 20, 42, 0.5);
  border: 1px solid rgba(244, 239, 230, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.map-details-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 30px 10px;
  color: rgba(244, 239, 230, 0.5);
}

.placeholder-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
  animation: float 3s ease-in-out infinite;
}

.map-details-placeholder h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-lt);
}

.map-details-placeholder p {
  font-size: 13.5px;
  line-height: 1.6;
}

.map-details-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: fadeIn 0.3s ease-in-out;
}

.map-details-image {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(244, 239, 230, 0.08);
  transition: background-image 0.3s ease;
}

.map-details-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.map-details-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.map-details-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.map-details-tags span {
  font-size: 10.5px;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(255, 138, 61, 0.12);
  border: 1px solid rgba(255, 138, 61, 0.25);
  color: var(--marigold);
  font-weight: 500;
}

.map-details-desc {
  font-size: 13.5px;
  color: rgba(244, 239, 230, 0.85);
  line-height: 1.6;
  margin-bottom: 16px;
}

.map-details-highlights {
  font-size: 13px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(27, 31, 59, 0.4);
  border: 1px solid rgba(244, 239, 230, 0.04);
  margin-bottom: 24px;
}

.map-details-highlights strong {
  display: block;
  color: var(--gold-lt);
  margin-bottom: 4px;
}

.map-details-highlights span {
  color: rgba(244, 239, 230, 0.9);
}

.map-details-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  background: var(--marigold);
  color: var(--indigo-deep);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(255, 138, 61, 0.2);
}

.map-details-link:hover {
  background: var(--turmeric);
  box-shadow: 0 6px 16px rgba(255, 194, 60, 0.45);
  transform: translateY(-1px);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* Media Queries */
@media (max-width: 990px) {
  .map-2d-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .map-svg-wrap {
    min-height: 380px;
    padding: 12px;
  }
  
  .map-details-card {
    flex: 1;
    min-height: 380px;
    padding: 20px;
  }
}





/* ============================================
   Union Territories Interactive Map Markers Styles
   ============================================ */
.map-ut-marker-group {
  cursor: pointer;
}

.map-ut-marker-glow {
  fill: var(--marigold);
  fill-opacity: 0.2;
  stroke: var(--marigold);
  stroke-width: 1px;
  stroke-opacity: 0.4;
  animation: pulseMarker 2s infinite;
  transform-origin: center;
}

.map-ut-marker-dot {
  fill: var(--turmeric);
  stroke: var(--white);
  stroke-width: 1px;
  transition: all 0.2s ease;
}

.map-ut-marker-label {
  fill: rgba(244, 239, 230, 0.95);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-anchor: middle;
  pointer-events: none; /* Let clicks pass through label to group */
  text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 0 2px rgba(0,0,0,0.9);
  transition: all 0.2s ease;
}

/* Hover effects for UT markers */
.map-ut-marker-group:hover .map-ut-marker-dot {
  fill: var(--white);
  stroke: var(--marigold);
  stroke-width: 1.5px;
  r: 6px; /* slightly enlarge */
}

.map-ut-marker-group:hover .map-ut-marker-glow {
  fill: var(--white);
  fill-opacity: 0.35;
  stroke: var(--white);
  r: 14px;
}

.map-ut-marker-group:hover .map-ut-marker-label {
  fill: var(--turmeric);
  font-weight: 600;
  font-size: 10.5px;
}

@keyframes pulseMarker {
  0% {
    r: 6px;
    stroke-opacity: 0.8;
    fill-opacity: 0.3;
  }
  50% {
    r: 13px;
    stroke-opacity: 0.1;
    fill-opacity: 0.05;
  }
  100% {
    r: 6px;
    stroke-opacity: 0.8;
    fill-opacity: 0.3;
  }
}

/* ===== MOBILE HORIZONTAL SCROLL CAROUSELS ===== */
@media (max-width: 768px) {
  .states-grid,
  .dest-grid,
  .exp-grid,
  .fest-grid,
  .fest-dropdown-grid,
  .perfume-grid,
  .related-grid,
  .places-grid,
  .food-grid,
  .souvenir-grid,
  .timing-grid,
  .tips-grid,
  .hubs-grid,
  .where-spots-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding-top: 10px !important;
    padding-bottom: 20px !important;
    scrollbar-width: none !important; /* Hide scrollbar for Firefox */
  }

  .states-grid::-webkit-scrollbar,
  .dest-grid::-webkit-scrollbar,
  .exp-grid::-webkit-scrollbar,
  .fest-grid::-webkit-scrollbar,
  .fest-dropdown-grid::-webkit-scrollbar,
  .perfume-grid::-webkit-scrollbar,
  .related-grid::-webkit-scrollbar,
  .places-grid::-webkit-scrollbar,
  .food-grid::-webkit-scrollbar,
  .souvenir-grid::-webkit-scrollbar,
  .timing-grid::-webkit-scrollbar,
  .tips-grid::-webkit-scrollbar,
  .hubs-grid::-webkit-scrollbar,
  .where-spots-grid::-webkit-scrollbar {
    display: none !important; /* Hide scrollbar for Chrome/Safari */
  }

  /* Make cards not shrink and set appropriate mobile widths */
  .states-grid > .state-card {
    flex: 0 0 280px !important;
    scroll-snap-align: start !important;
  }
  .dest-grid > .dest-card {
    flex: 0 0 310px !important;
    scroll-snap-align: start !important;
  }
  .exp-grid > .exp-card {
    flex: 0 0 270px !important;
    scroll-snap-align: start !important;
  }
  .fest-grid > .fest-card,
  .fest-dropdown-grid > .fest-card {
    flex: 0 0 310px !important;
    scroll-snap-align: start !important;
  }
  .perfume-grid > .perfume-card {
    flex: 0 0 260px !important;
    scroll-snap-align: start !important;
  }
  .related-grid > .related-card {
    flex: 0 0 270px !important;
    scroll-snap-align: start !important;
  }
  .places-grid > .place-card {
    flex: 0 0 260px !important;
    scroll-snap-align: start !important;
  }
  .food-grid > .food-card {
    flex: 0 0 220px !important;
    scroll-snap-align: start !important;
  }
  .souvenir-grid > .souvenir-card {
    flex: 0 0 240px !important;
    scroll-snap-align: start !important;
  }
  .timing-grid > .timing-card {
    flex: 0 0 260px !important;
    scroll-snap-align: start !important;
  }
  .tips-grid > .tip-card {
    flex: 0 0 280px !important;
    scroll-snap-align: start !important;
  }
  .hubs-grid > .hub-ticket-card {
    flex: 0 0 300px !important;
    scroll-snap-align: start !important;
  }
  .where-spots-grid > .where-spot-card {
    flex: 0 0 280px !important;
    scroll-snap-align: start !important;
  }
}
