/*
 * Sai Vihaar Inn & Suites - Premium Luxury Modern Stylesheet
 * Elegant South Indian Hospitality aesthetic.
 */

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

:root {
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Colors (Light Mode) */
  --bg-primary: #FAF8F5; /* Warm Silk Ivory */
  --bg-secondary: #F4F0E6;
  --bg-tertiary: #ECE5D5;
  --bg-glass: rgba(250, 248, 245, 0.90); /* Higher contrast ivory glass backdrop */
  --border-glass: rgba(197, 160, 40, 0.16);
  --text-primary: #0A0A0B; /* Obsidian dark text */
  --text-secondary: #3A3530;
  --text-light: #706B63;
  
  --accent-gold: #D4AF37; /* Rich Gold */
  --accent-gold-dark: #BF953F;
  --accent-gold-light: #FCF6BA;
  --accent-gold-glow: rgba(212, 175, 55, 0.1);
  --accent-brown: #4A352F;
  --accent-blue: #1C3D5A;
  --accent-green: #1B5E20;
  
  /* System colors */
  --white: #FFFFFF;
  --black: #0A0A0B; /* Obsidian Black */
  
  /* Shadow tokens (Muted and understated) */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 72px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.08);
  
  /* Spacing Scale (Unified Layout Spacer Tokens) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;

  /* Spacing & Transitions */
  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 30px; 
  --border-radius-md: 16px;
  --border-radius-lg: 24px;

  /* Theme-specific navbar backgrounds */
  --bg-nav: rgba(250, 248, 245, 0.90);
  --bg-nav-shrunk: rgba(250, 248, 245, 0.98);
}

[data-theme="dark"] {
  /* Colors (Dark Mode) */
  --bg-primary: #0A0A0B; /* Matte Obsidian Black */
  --bg-secondary: #121213;
  --bg-tertiary: #1A1A1C;
  --bg-glass: rgba(10, 10, 11, 0.82); /* Higher contrast obsidian glass backdrop */
  --border-glass: rgba(212, 175, 55, 0.18);
  --text-primary: #FAF8F5; /* Silk Ivory text */
  --text-secondary: #E1DDD5;
  --text-light: #9A958C;
  
  --accent-gold: #D4AF37; 
  --accent-gold-dark: #BF953F;
  --accent-gold-light: #FCF6BA;
  --accent-gold-glow: rgba(212, 175, 55, 0.12);
  --accent-brown: #BCAAA4;
  --accent-blue: #4299E1;
  --accent-green: #4CAF50;
  
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.9);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.1);

  /* Theme-specific navbar backgrounds */
  --bg-nav: rgba(10, 10, 11, 0.65);
  --bg-nav-shrunk: rgba(10, 10, 11, 0.92);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-sans);
  background-color: transparent;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s, color 0.4s;
  padding-bottom: 60px; /* space for mobile bottom bar */
}

@media(min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-left: 1px solid var(--border-glass);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));
  border-radius: 20px;
  border: 2px solid var(--bg-primary);
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.4);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
  border: 1.5px solid var(--bg-primary);
}


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

p {
  font-weight: 400;
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button, .btn {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: var(--transition-fast);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--accent-gold) !important;
}

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

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}

/* Buttons */
.btn-primary {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  box-shadow: 0 0 0 transparent;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary:hover {
  color: #050505 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--accent-gold-glow);
  border-color: var(--accent-gold);
}

.btn-secondary {
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--accent-gold-glow);
}

.btn-outline {
  border: 1px solid var(--border-glass);
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Background Effects (Tesla/SaaS inspired luxury blobs) */
body {
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 8%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(80px);
}

body::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(212, 175, 55, 0) 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(100px);
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(30px) saturate(180%) contrast(1.05);
  -webkit-backdrop-filter: blur(30px) saturate(180%) contrast(1.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Add a premium pseudo-element light-refraction glare to all glass panels */
.glass-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 60%);
  transform: rotate(30deg);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

.glass-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35), 0 0 25px var(--accent-gold-glow);
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.glass-panel:hover::before {
  transform: rotate(30deg) translate(20%, 20%);
}

/* Crystal Card Styling (Premium highlight for key cards) */
.crystal-card {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(40px) saturate(220%) contrast(1.1) !important;
  -webkit-backdrop-filter: blur(40px) saturate(220%) contrast(1.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2) !important;
  transition: var(--transition-smooth);
}
.crystal-card:hover {
  border-color: rgba(255, 255, 255, 0.55) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-8px);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  padding: 0 24px;
}

/* Scroll Animation Timeline (CSS Native support) */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  @keyframes header-shrink {
    to {
      background: var(--bg-nav-shrunk);
      border-color: rgba(212, 175, 55, 0.25);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(20px) saturate(120%);
      -webkit-backdrop-filter: blur(20px) saturate(120%);
      padding: 8px 28px;
    }
  }
  header {
    height: 80px;
  }
  header .nav-container {
    animation: header-shrink auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 80px;
  }
}

/* Shrunk helper class applied via JS as fallback */
header.shrunk .nav-container {
  background: var(--bg-nav-shrunk);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  padding: 8px 28px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  background: var(--bg-nav);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1.25rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-top: 2px;
}

.nav-links {
  display: none;
  gap: 24px;
}

@media(min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  color: var(--text-primary);
}

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-weather {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}

@media(min-width: 640px) {
  .header-weather {
    display: flex;
  }
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.theme-toggle:hover {
  background: var(--accent-gold);
  color: var(--white);
  transform: rotate(15deg);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 38px;
  justify-content: center;
  align-items: flex-end;
}

@media(min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.hamburger span:nth-child(1) { width: 28px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 24px; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
  width: 24px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 24px;
}

/* Mobile Nav Menu Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  padding: 120px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  border-left: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

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

.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-primary);
}

/* SPA Page Transitions */
.page-view {
  min-height: 100vh;
  padding-top: 100px; /* prevent overlap by fixed header */
  opacity: 1;
  display: none;
}

/* Premium Glassmorphic Page Backdrop for non-home pages */
.page-view:not(#home-view) {
  background: rgba(5, 5, 5, 0.65) !important;
  backdrop-filter: blur(15px) saturate(135%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(135%) !important;
}

[data-theme="light"] .page-view:not(#home-view) {
  background: rgba(253, 251, 247, 0.75) !important;
  backdrop-filter: blur(15px) saturate(135%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(135%) !important;
}

.page-view.active {
  display: block;
  animation: fadeInPage 0.5s ease-out forwards;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Reveals */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes scroll-fade {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .scroll-reveal {
      animation: scroll-fade auto linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 35%;
    }
  }
}

/* Fallback for scroll reveals when animation-timeline is not supported */
.scroll-reveal.reveal-fallback {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Native CSS Scroll-driven Parallax for Hero Background */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  @keyframes hero-parallax {
    to {
      transform: translateY(200px);
    }
  }
  .hero-slider {
    animation: hero-parallax linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 100vh;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  margin-top: -100px; /* Bleed behind transparent header */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.hero-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  animation: none !important;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 7s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1%, -0.5%);
  }
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(15, 14, 13, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  margin-top: 60px;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  animation: slideDown 1s ease-out forwards;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: var(--font-serif);
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease-out forwards;
}

@media(min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 1.2s ease-out forwards;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1.4s ease-out forwards;
}

@media(min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Quick Search Booking Bar (Sticky or top of home) */
.booking-quick-bar {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding: 0 24px;
}

.booking-form-wrapper {
  padding: 30px;
  grid-template-columns: 1fr;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

@media(min-width: 768px) {
  .booking-form-wrapper {
    grid-template-columns: repeat(4, 1fr) auto;
    align-items: flex-end;
  }
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.input-group select, .input-group input {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  outline: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.input-group select:focus, .input-group input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
  background: var(--bg-primary);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4) sepia(1) saturate(6) hue-rotate(5deg);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

[data-theme="dark"] input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(6) hue-rotate(10deg);
}

/* Sections General */
.section {
  padding: 80px 0;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

@media(min-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 16px auto 0;
}

/* Home Page Specifics */
.home-welcome {
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media(min-width: 1024px) {
  .home-welcome {
    grid-template-columns: 1fr 1fr;
  }
}

.welcome-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.welcome-img-large {
  grid-column: span 2;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-img-large:hover img {
  transform: scale(1.04);
}

.welcome-img-large:hover {
  box-shadow: 0 15px 35px var(--accent-gold-glow);
  border-color: var(--accent-gold);
}

.welcome-img-small {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 180px;
}

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

.welcome-img-small:hover img {
  transform: scale(1.05);
}

.welcome-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 700;
  line-height: 1;
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

/* Rooms Page */
.rooms-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

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

.rooms-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

@media(min-width: 768px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.room-card {
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-image-wrapper, .room-image-slider {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.room-card:hover .room-image-wrapper img {
  transform: scale(1.08);
}

/* Room slider styling */
.room-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-slider-track img {
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.room-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.room-image-slider:hover .room-slider-btn {
  opacity: 1;
}

.room-slider-btn:hover {
  background: var(--accent-gold);
  color: var(--white);
  border-color: var(--accent-gold);
}

.room-slider-btn.prev-btn {
  left: 12px;
}

.room-slider-btn.next-btn {
  right: 12px;
}

.room-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  background: rgba(15, 14, 13, 0.4);
  padding: 4px 8px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.room-slider-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.room-slider-dots .dot.active {
  background: var(--accent-gold);
  width: 16px;
  border-radius: 3px;
}

/* Ensure room badge and price tag stay above track */
.room-image-slider .room-badge {
  z-index: 6;
}

.room-image-slider .room-price-tag {
  z-index: 6;
}

.room-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.room-price-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-top-right-radius: var(--border-radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-gold);
  border-top: 1px solid var(--border-glass);
  border-right: 1px solid var(--border-glass);
}

.room-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.room-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.room-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px dashed var(--border-glass);
  border-bottom: 1px dashed var(--border-glass);
  font-size: 0.8rem;
  color: var(--text-light);
}

.room-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.room-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.room-actions {
  display: flex;
  gap: 12px;
}

.room-actions .btn {
  flex: 1;
  justify-content: center;
}

/* Dining Page */
.dining-hero {
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media(min-width: 1024px) {
  .dining-hero {
    grid-template-columns: 1fr 1.2fr;
  }
}

.veg-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.veg-box {
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.veg-circle {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
}

.menu-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  height: 350px;
  box-shadow: var(--shadow-lg);
}

@media(min-width: 768px) {
  .menu-carousel {
    height: 450px;
  }
}

.menu-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.menu-slide img,
.menu-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: var(--white);
  padding: 30px;
}

.menu-slide-title {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.menu-slide-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 5;
}

.carousel-btn:hover {
  background: var(--accent-gold);
  color: var(--white);
}

.carousel-btn-prev { left: 16px; }
.carousel-btn-next { right: 16px; }

/* Menu List Grid */
.menu-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
}

@media(min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-item {
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
}

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

.menu-item-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1.5px dotted var(--border-glass);
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
}

.menu-item-price {
  color: var(--accent-gold);
  font-weight: 700;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Gallery Section */
.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media(min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(93, 64, 55, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  color: var(--white);
}

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

.gallery-overlay svg {
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  
  /* Modern discrete transition setup */
  opacity: 0;
  transition:
    display 0.4s,
    opacity 0.4s ease-out,
    backdrop-filter 0.4s ease-out;
  transition-behavior: allow-discrete;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

@starting-style {
  .lightbox.active {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1);
  opacity: 1;
}

.lightbox-content img.fade-slide-out {
  opacity: 0;
  transform: scale(0.96);
}

.lightbox-content img.fade-slide-in {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 2.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg) scale(1.1);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.lightbox-nav {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
}

.lightbox-nav:hover {
  background: var(--accent-gold);
  color: black;
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-nav.prev-btn {
  left: 40px;
}

.lightbox-nav.next-btn {
  right: 40px;
}

.lightbox-caption {
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

@media (max-width: 767px) {
  .lightbox {
    padding: 20px;
  }
  .lightbox-content {
    max-width: 95%;
  }
  .lightbox-nav {
    padding: 10px;
  }
  .lightbox-nav.prev-btn {
    left: 12px;
  }
  .lightbox-nav.next-btn {
    right: 12px;
  }
  .lightbox-close {
    top: -38px;
    right: 8px;
  }
  .lightbox-caption {
    font-size: 0.75rem;
    bottom: -38px;
  }
}

/* Accommodation Comparison Modal Custom CSS */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  
  /* Modern discrete transition setup */
  display: none;
  opacity: 0;
  pointer-events: none;
  transition:
    display 0.4s,
    opacity 0.4s ease-out,
    backdrop-filter 0.4s ease-out;
  transition-behavior: allow-discrete;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

@starting-style {
  .modal-overlay.active {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
}

/* Inner panel zoom entry/exit */
.modal-overlay .glass-panel {
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .glass-panel {
  transform: scale(1);
}

#room-compare-modal table th,
#room-compare-modal table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#room-compare-modal table tr:last-child td {
  border-bottom: none;
}

#room-compare-modal .select-compare-btn {
  transition: all 0.2s ease-in-out;
}

#room-compare-modal .select-compare-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Compare trigger button outline style integration */
.compare-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.compare-trigger-btn:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

/* Sightseeing Itinerary Route Planner enhancements */
.route-diagram::-webkit-scrollbar {
  height: 4px;
}
.route-diagram::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
.route-diagram::-webkit-scrollbar-thumb {
  background: var(--border-glass);
  border-radius: 4px;
}

.transit-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  padding: 2px 8px;
  border-radius: 20px;
  color: var(--accent-gold);
  font-weight: 600;
  white-space: nowrap;
}

.route-step {
  transition: var(--transition-fast);
}

.route-step:hover {
  transform: translateY(-2px);
}



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

/* Explore Mysuru Page */
.explore-layout {
  grid-template-columns: 1fr;
  gap: 40px;
}

@media(min-width: 1024px) {
  .explore-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}

.attractions-list-wrapper {
  max-height: 800px;
  overflow-y: auto;
  padding-right: 10px;
}

.attractions-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width: 640px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.attraction-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.attraction-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.attraction-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: var(--bg-secondary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attraction-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  flex-grow: 1;
  padding-left: 12px;
}

.attraction-dist {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-brown);
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.attraction-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px dashed var(--border-glass);
}

.attraction-category {
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
}

/* AI Itinerary Planner Widget */
.itinerary-planner {
  padding: 30px;
  height: fit-content;
}

.itinerary-planner h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.itinerary-planner p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.planner-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.planner-result {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1.5px solid var(--border-glass);
  display: none;
}

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

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.timeline-item {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--accent-gold);
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 4px;
  left: -6px;
  width: 10px;
  height: 10px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.timeline-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.timeline-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Reviews Page Testimonials */
.reviews-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

@media(min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

.reviews-summary {
  padding: 30px;
  text-align: center;
}

.rating-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.stars {
  color: var(--accent-gold);
  margin: 12px 0;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.ratings-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.rating-bar-bg {
  flex-grow: 1;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--accent-gold);
  border-radius: 4px;
}

/* Slider testimonials */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 30px;
  flex-shrink: 0;
}

@media(min-width: 768px) {
  .testimonial-card {
    min-width: 50%;
  }
}

.testimonial-card-inner {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.guest-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-serif);
}

.guest-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.guest-info p {
  font-size: 0.75rem;
  color: var(--text-light);
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.8rem;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  gap: 2px;
}

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

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-glass);
}

.slider-dot.active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 4px;
}

/* FAQ Accordion */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--bg-primary);
}

.faq-answer-inner {
  padding: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-glass);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Contact Page Styles */
.contact-layout {
  grid-template-columns: 1fr;
  gap: 40px;
}

@media(min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}

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

.contact-info-card {
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

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

.contact-card-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card-content p, .contact-card-content a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.map-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-glass);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  background: var(--bg-secondary);
}

.map-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1.5px rgba(212, 175, 55, 0.1);
  pointer-events: none;
  z-index: 2;
  transition: box-shadow 0.4s;
}

.map-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 12px 30px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
}

.map-wrapper:hover::before {
  box-shadow: inset 0 0 0 2px var(--accent-gold);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: sepia(15%) contrast(1.02) saturate(0.9) brightness(0.98);
}

.map-wrapper:hover iframe {
  transform: scale(1.02);
}

.footer-map-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 110px;
  border: 1px solid var(--border-glass);
  position: relative;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.footer-map-wrapper:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.footer-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: filter 0.4s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: sepia(15%) contrast(1.02) saturate(0.9) brightness(0.98);
}

.footer-map-wrapper:hover iframe {
  transform: scale(1.04);
}

/* Dark mode overrides for map elegance */
[data-theme="dark"] .map-wrapper iframe,
[data-theme="dark"] .footer-map-wrapper iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(0.95) contrast(1.15) saturate(0.8) !important;
}

/* Interactive Map & Concierge Widget Styling */
/* Interactive Unified Luxury Map Console Styling */
.map-console-container {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-glass);
}

.map-console-iframe-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-console-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(15%) contrast(1.02) saturate(0.9) brightness(0.98);
  transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .map-console-iframe-wrapper iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(0.95) contrast(1.15) saturate(0.8) !important;
}

/* Floating Glass Console panel */
.map-floating-console {
  position: absolute;
  top: 24px;
  left: 24px;
  bottom: 24px;
  width: 380px;
  z-index: 5;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
  background: rgba(253, 251, 247, 0.9); /* Luxury Light glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}

[data-theme="dark"] .map-floating-console {
  background: rgba(10, 10, 10, 0.88); /* Luxury dark glass */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.map-floating-console::-webkit-scrollbar {
  width: 4px;
}
.map-floating-console::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 2px;
}

.map-console-container:hover .map-floating-console {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1), 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Hub Header */
.hub-header {
  margin-bottom: 18px;
}

.hub-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-brown);
  margin-top: 6px;
  margin-bottom: 4px;
}

[data-theme="dark"] .hub-header h4 {
  color: var(--accent-gold);
}

.hub-header p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Chips / Buttons */
.landmark-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.landmark-chip {
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-glass);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.landmark-chip:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

.landmark-chip.active {
  background: var(--accent-gold);
  color: var(--black);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Mini Info elements */
.hotel-mini-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  background: var(--bg-tertiary);
  padding: 2px 8px;
  border-radius: 10px;
}

[data-theme="dark"] .hotel-mini-badge {
  color: var(--accent-gold-light);
  background: rgba(212, 175, 55, 0.1);
}

.btn-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  background: var(--bg-secondary);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-mini:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent-gold);
}

.btn-mini-gold {
  background: var(--accent-gold);
  color: var(--black) !important;
  border-color: var(--accent-gold);
}

.btn-mini-gold:hover {
  background: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
}

/* Details Display Panel */
.landmark-info-details {
  border-top: 1px dashed var(--border-glass);
  padding-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.landmark-info-details.active {
  opacity: 1;
  transform: translateY(0);
}

.landmark-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.landmark-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--accent-gold-glow);
  color: var(--accent-gold-dark);
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

[data-theme="dark"] .landmark-badge {
  color: var(--accent-gold-light);
}

.landmark-description {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Transit grid styling */
.transit-times-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-glass);
  margin-bottom: 8px;
}

.transit-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.transit-icon {
  font-size: 1.2rem;
  opacity: 0.95;
}

.transit-info label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

.transit-info strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Sub-Tabs Console Styling */
.console-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-secondary);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  margin-bottom: 16px;
}

.console-tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.console-tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.console-tab-btn.active {
  background: var(--accent-gold);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}

/* Tab contents */
.console-tab-panel {
  display: none;
}

.console-tab-panel.active {
  display: block;
  animation: tabFadeIn 0.3s ease forwards;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Landmark Image Preview */
.landmark-preview-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  margin-bottom: 12px;
  display: block;
  transition: transform 0.4s;
}

.landmark-preview-img:hover {
  transform: scale(1.02);
}

/* Tip Card block */
.landmark-tip-card {
  background: var(--accent-gold-glow);
  border-left: 3.5px solid var(--accent-gold);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.45;
}

/* Directions steps */
.nav-steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.nav-step-item {
  position: relative;
  padding-left: 24px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.nav-step-item::before {
  content: '•';
  position: absolute;
  left: 6px;
  font-weight: 900;
  color: var(--accent-gold);
  font-size: 1.1rem;
  top: -2px;
}

/* Journey Steps Tracker */
.journey-tracker {
  position: relative;
  padding-left: 20px;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journey-tracker::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 6px;
  bottom: 8px;
  width: 2px;
  border-left: 2px dashed var(--accent-gold);
  opacity: 0.5;
}

.journey-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.journey-step-bullet {
  position: absolute;
  left: -20px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-gold);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  transition: all 0.3s;
}

.journey-step.active .journey-step-bullet {
  background: var(--accent-gold);
  color: var(--black);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.journey-step-content {
  padding-left: 12px;
}

.journey-step-title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.journey-step-desc {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Transit Speed Comparison Card */
.transit-comparison-card {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-glass);
}

.transit-comparison-title {
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

[data-theme="dark"] .transit-comparison-title {
  color: var(--accent-gold);
}

.transit-comparison-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.transit-bar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.transit-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.transit-bar-track {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.transit-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
}

.fill-walk {
  background: #E57373; /* Red indicator for slow walk */
  box-shadow: 0 0 4px rgba(229, 115, 115, 0.2);
}

.fill-rickshaw {
  background: #FFB74D; /* Amber for moderate rickshaw */
  box-shadow: 0 0 4px rgba(255, 183, 77, 0.2);
}

.fill-car {
  background: #81C784; /* Green for fast car */
  box-shadow: 0 0 4px rgba(129, 199, 132, 0.2);
}

/* Responsive Overrides */
@media (max-width: 1023px) {
  .map-console-container {
    height: auto;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  .map-console-iframe-wrapper {
    position: relative;
    height: 380px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-md);
    order: 1;
  }
  
  .map-floating-console {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    order: 2;
    background: var(--bg-secondary);
  }
}


/* Booking Page Form */
.booking-page-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
}

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

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

@media(min-width: 640px) {
  .form-group-row {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-form select, .booking-form input, .booking-form textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  outline: none;
  font-size: 0.9rem;
}

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

.policy-note {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.chatbot-launcher-container {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 72px;
  height: 72px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-launcher-container:hover {
  transform: scale(1.08);
}

.chatbot-orbit-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed var(--accent-gold);
  animation: orbit-rotate 12s linear infinite;
  opacity: 0.6;
  pointer-events: none;
  transition: inset 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, border-color 0.3s ease;
  z-index: 999;
}

.chatbot-launcher-container:hover .chatbot-orbit-ring {
  inset: -9px;
  opacity: 0.95;
  border-color: var(--accent-gold-light);
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.chatbot-launcher {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c1c1c 0%, #050505 100%);
  border: 1.5px solid var(--accent-gold);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.85), 0 0 20px rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  z-index: 1000;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* Prevent scaled tree logo from spilling over circular bounds */
}

/* Luxury Expanding Pulse Ring */
.chatbot-launcher::after {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  opacity: 0;
  pointer-events: none;
  animation: launcher-ripple-pulse 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  z-index: -1;
}

@keyframes launcher-ripple-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    opacity: 0.45;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.chatbot-launcher:hover {
  transform: scale(1.08);
  border-color: var(--accent-gold-light);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.55);
}

.chatbot-launcher img, .launcher-tree-logo {
  --base-scale: 1.15; /* Zoomed out so the entire tree logo is visible and fits inside the circular launcher */
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(var(--base-scale));
  mix-blend-mode: screen;
  animation: launcher-heartbeat 3s ease-in-out infinite;
}

@keyframes launcher-heartbeat {
  0%, 100% {
    transform: scale(var(--base-scale));
    filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
  }
  14% {
    transform: scale(calc(var(--base-scale) * 1.15));
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.85)) brightness(1.25);
  }
  28% {
    transform: scale(var(--base-scale));
    filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
  }
  42% {
    transform: scale(calc(var(--base-scale) * 1.15));
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.85)) brightness(1.25);
  }
  70% {
    transform: scale(var(--base-scale));
    filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
  }
}

.chatbot-launcher .notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff3b30;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chatbot container redesign (Dark luxury glassmorphism - Kalki AI inspired) */
/* Chatbot container redesign (Dark luxury glassmorphism - Kalki AI inspired) */
.chatbot-container {
  position: fixed;
  bottom: 112px; /* Positioned nicely above the 72px launcher */
  right: 24px;
  width: calc(100vw - 48px);
  max-width: 380px;
  height: 540px;
  z-index: 1000;
  overflow: hidden;
  display: flex !important; /* Keep active in DOM to allow CSS scale/opacity transitions */
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.95), 0 0 40px rgba(212, 175, 55, 0.15);
  border: 1.5px solid rgba(212, 175, 55, 0.30);
  border-top: 3px solid var(--accent-gold); /* Premium top accent bar */
  background: rgba(10, 10, 10, 0.82); /* Advanced translucent glassmorphism */
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 24px;
  
  /* Hardware-accelerated fluid transitions for advanced UI/UX */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(30px) scale(0.94);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.45s;
}

.chatbot-container.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  padding: 16px 20px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.chatbot-avatar {
  width: 48px; /* Increased from 44px */
  height: 48px; /* Increased from 44px */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  overflow: hidden; /* Prevent scaled tree logo from spilling over circular bounds */
}

.chatbot-avatar img, .avatar-tree-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.15); /* Zoomed out to fit the avatar circle perfectly */
  mix-blend-mode: screen;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

/* Custom scrollbars for chat log container */
#actual-chat-log::-webkit-scrollbar {
  width: 6px;
}
#actual-chat-log::-webkit-scrollbar-track {
  background: transparent;
}
#actual-chat-log::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.22);
  border-radius: 3px;
  transition: background 0.3s;
}
#actual-chat-log::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.45);
}

/* Pulsing Status Dot */
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #25D366;
  border-radius: 50%;
  margin-right: 2px;
  box-shadow: 0 0 6px #25D366;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid #25D366;
  animation: pulse-ring-bot 1.8s infinite;
  left: -0.5px;
  top: -0.5px;
}

@keyframes pulse-ring-bot {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}

.chatbot-header-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.chatbot-header-text span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

.chatbot-close {
  color: rgba(255,255,255,0.5);
  font-size: 1.6rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chatbot-close:hover {
  color: var(--accent-gold);
  transform: scale(1.15);
}

.chatbot-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Custom language select stage styling matching reference */
.chatbot-lang-stage {
  background: transparent;
  border: none;
  padding: 0 8px;
  margin-bottom: 12px;
  animation: msgPop 0.4s ease forwards;
  align-self: flex-start;
  width: 100%;
}

.lang-select-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lang-select-row select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: white;
  padding: 0 32px 0 16px;
  height: 38px;
  border-radius: 19px;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  width: 160px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

.btn-confirm-lang {
  background: #FFFFFF;
  color: #000000;
  border: none;
  height: 38px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 19px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-confirm-lang:hover {
  background: #e5e5e7;
}

.chat-msg {
  max-width: 85%;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.45;
  animation: msgPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes msgPop {
  from { transform: translateY(12px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.chat-msg.bot {
  background: rgba(255, 255, 255, 0.035);
  color: #efebe4;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.chat-msg.user {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
  color: #000000;
  font-weight: 600;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.chatbot-quick-replies {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  overflow-x: auto;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: nowrap;
}

.chatbot-quick-replies::-webkit-scrollbar {
  display: none;
}

.reply-pill {
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: #EFEBE4;
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.reply-pill:hover {
  background: var(--accent-gold);
  color: #050505;
  border-color: var(--accent-gold);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Chatbot Social Grid Row matching reference */
.chatbot-social-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 0;
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition-fast);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.social-item:last-child {
  border-right: none;
}

.social-item.whatsapp {
  color: #25D366;
}

.social-item.linkedin {
  color: #0077B5;
}

.social-item.instagram {
  color: #E1306C;
}

.social-item.whatsapp svg {
  color: #25D366;
}

.social-item.linkedin svg {
  color: #0077B5;
}

.social-item.instagram svg {
  color: #E1306C;
}

.social-item.whatsapp:hover {
  background: rgba(37, 211, 102, 0.06);
}

.social-item.linkedin:hover {
  background: rgba(0, 119, 181, 0.06);
}

.social-item.instagram:hover {
  background: rgba(225, 48, 108, 0.06);
}

/* Chat Input Area layout matching reference */
.chatbot-input-area {
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-mic-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  cursor: pointer;
}

.chatbot-mic-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #FFFFFF;
}

.chatbot-mic-btn.recording {
  background: #D32F2F;
  border-color: #D32F2F;
  color: #FFF;
  animation: recordingPulse 1.2s infinite;
}

@keyframes recordingPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(211, 47, 47, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.chat-input-wrapper {
  flex-grow: 1;
}

.chatbot-input-area input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 10px 18px;
  font-family: var(--font-sans);
  color: #FFF;
  outline: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.chatbot-input-area input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.chatbot-send-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
  color: #000000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.chatbot-send-circle:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  color: #000000;
}

/* Custom Interactive Cursors */
.custom-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: none;
}

.custom-cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, border-color 0.3s ease, background-color 0.3s ease, width 0.3s ease, height 0.3s ease;
  display: none;
}

@media(min-width: 1024px) {
  body.has-custom-cursor, body.has-custom-cursor * {
    cursor: none !important;
  }
  .custom-cursor-dot, .custom-cursor-ring {
    display: block;
  }
}

.custom-cursor-ring.custom-cursor-hover {
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-gold-light);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Water Ripple Cursor Trail */
.water-ripple {
  position: fixed;
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10005;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-out 0.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes ripple-out {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
  }
  50% {
    border-color: rgba(0, 210, 255, 0.4); /* Transition to Kingfisher cyan */
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-color: rgba(0, 51, 102, 0);
    box-shadow: 0 0 12px rgba(0, 51, 102, 0);
  }
}

@keyframes ripple-out-large {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
  }
  50% {
    border-color: rgba(0, 210, 255, 0.4); /* Transition to Kingfisher cyan */
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6); /* Large wave */
    opacity: 0;
    border-color: rgba(0, 51, 102, 0);
    box-shadow: 0 0 16px rgba(0, 51, 102, 0);
  }
}

/* VIP Golden Stay Pass Styling */
.stay-ticket-card-wrapper {
  perspective: 1000px;
  width: 100%;
}

.stay-ticket-card {
  position: relative;
  background: #111112;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(212, 175, 55, 0.03);
  overflow: visible; /* Needed for absolute notches to show properly */
  transform-style: preserve-3d;
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

/* Glare shine layer overlaying the card */
.stay-ticket-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 224, 130, 0.15) 0%, rgba(212, 175, 55, 0.04) 50%, transparent 80%);
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stay-ticket-card.is-hovered::before {
  opacity: 1;
}

.ticket-notch {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #080809; /* Matches glass-panel background */
  border-radius: 50%;
  top: 55%;
  transform: translateY(-50%);
  z-index: 5;
}

.ticket-notch.left {
  left: -10px;
  box-shadow: inset -3px 0 5px rgba(0, 0, 0, 0.4), 1px 0 0 rgba(212, 175, 55, 0.25);
}

.ticket-notch.right {
  right: -10px;
  box-shadow: inset 3px 0 5px rgba(0, 0, 0, 0.4), -1px 0 0 rgba(212, 175, 55, 0.25);
}

.ticket-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.ticket-brand-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}

.ticket-badge {
  margin-left: auto;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #000000;
  font-weight: 800;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.ticket-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.ticket-field {
  display: flex;
  flex-direction: column;
}

.ticket-label {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  font-weight: 600;
}

.ticket-val {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 600;
  transition: var(--transition-fast);
}

.ticket-divider {
  border-top: 1px dashed rgba(212, 175, 55, 0.3);
  margin: 16px 0;
  position: relative;
}

.ticket-pricing-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.ticket-benefits {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--accent-gold);
  font-weight: 500;
}

.ticket-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.ticket-val-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--accent-gold);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  transition: var(--transition-fast);
}

.ticket-barcode-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

.ticket-barcode {
  display: flex;
  align-items: stretch;
  height: 28px;
  gap: 2.5px;
  opacity: 0.7;
}

.ticket-barcode .bar {
  background-color: var(--accent-gold);
  border-radius: 1px;
}

.ticket-id {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* Ambient Pulsing Decorative Background Blobs */
.ambient-blobs-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: -5;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  -webkit-filter: blur(140px);
  opacity: 0.15;
  transition: opacity 0.5s ease;
}

[data-theme="dark"] .ambient-blob {
  opacity: 0.22;
}

.blob-1 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-gold) 0%, rgba(212,175,55,0) 70%);
  top: -10vw;
  right: -10vw;
  animation: float-blob 25s infinite alternate ease-in-out;
}

.blob-2 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent-brown) 0%, rgba(93,64,85,0) 70%);
  bottom: 20vh;
  left: -20vw;
  animation: float-blob 35s infinite alternate-reverse ease-in-out;
}

.blob-3 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--accent-gold-dark) 0%, rgba(191,149,63,0) 70%);
  top: 50vh;
  right: 15vw;
  animation: float-blob 30s infinite alternate ease-in-out;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(5%, 8%) scale(1.1) rotate(180deg); }
  100% { transform: translate(-3%, -5%) scale(0.95) rotate(360deg); }
}

/* Ken Burns dynamic slider transition */
.hero-slide {
  transform: scale(1);
}

.hero-slide.active {
  animation: activeSlideFade 1.5s ease-in-out forwards, ken-burns 8s ease-out forwards;
}

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

@keyframes ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

/* Active 3D card tilt reflection glare overlay */
.card-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 80%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.room-card:hover .card-glare,
.itinerary-planner:hover .card-glare,
.explore-layout .glass-panel:hover .card-glare,
.contact-info-card:hover .card-glare {
  opacity: 1;
}

/* Dynamic scroll timeline style */
.explore-timeline-container {
  position: relative;
  padding-left: 30px;
}

.explore-timeline-line-bg {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-glass);
  border-radius: 2px;
}

.explore-timeline-line-fill {
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 2px;
  height: 0%;
  transition: height 0.1s ease-out;
}


/* Float WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Footer Section */
footer {
  background: #050505;
  color: #FDFBF7;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

@media(min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

.footer-logo-desc h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-gold);
}

.footer-logo-desc p {
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 251, 247, 0.7);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--accent-gold);
  color: #050505;
  box-shadow: 0 0 15px var(--accent-gold-glow);
  transform: translateY(-2px);
}

footer .footer-links-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
}

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

footer .footer-links-col a {
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.65);
  transition: var(--transition-fast);
}

footer .footer-links-col a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

footer .footer-map-embed h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
}

footer .footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: rgba(253, 251, 247, 0.45);
  text-align: center;
}

footer .footer-bottom-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

footer .footer-bottom-links a {
  color: rgba(253, 251, 247, 0.5);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Mobile Sticky Booking Bar */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-glass);
  display: flex;
  padding: 10px 16px;
  gap: 12px;
  z-index: 998;
}

@media(min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }
}

.mobile-sticky-cta a, .mobile-sticky-cta button {
  flex: 1;
  justify-content: center;
  font-size: 0.75rem;
  padding: 10px;
}

/* Instagram Grid */
.insta-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media(min-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

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

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

.insta-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 54, 93, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  color: var(--white);
}

.insta-item:hover .insta-hover {
  opacity: 1;
}

/* Custom CSS Grids responsive helper */
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

/* Image slideshow animation */
.slideshow-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  height: 350px;
  box-shadow: var(--shadow-lg);
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slideshow-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

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

/* Header CTA button desktop visibility */
@media(min-width: 1024px) {
  .btn-book-header {
    display: inline-flex !important;
    padding: 8px 20px !important;
    font-size: 0.75rem !important;
  }
}

/* Chatbot Mobile Responsive Styles */
@media (max-width: 767px) {
  .chatbot-launcher-container {
    bottom: 80px; /* Aligned nicely above the mobile sticky booking bar */
    right: 16px;
    width: 60px;
    height: 60px;
  }
  .chatbot-launcher img, .launcher-tree-logo {
    --base-scale: 1.15; /* Zoom scale adjusted to fit container on mobile */
    width: 100%;
    height: 100%;
  }
  
  .chatbot-container {
    bottom: 152px; /* Positions perfectly above the 60px mobile launcher */
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
    height: calc(100vh - 242px); /* Fill screen height minus offsets */
    max-height: 480px; /* Keep it compact and legible */
    border-radius: 20px;
  }
  
  .chatbot-messages {
    padding: 0;
  }
  #actual-chat-log {
    padding: 16px;
  }
  
  .chat-msg {
    max-width: 90%;
    padding: 12px 14px;
    font-size: 0.85rem;
  }
  
  .lang-select-row select {
    width: 130px;
    font-size: 0.8rem;
    height: 36px;
    padding: 0 28px 0 12px;
    background-position: right 10px center;
  }
  
  .btn-confirm-lang {
    height: 36px;
    padding: 0 16px;
    font-size: 0.8rem;
  }
  
  .chatbot-input-area {
    padding: 10px 12px;
    gap: 8px;
  }
  
  .chatbot-mic-btn, .chatbot-send-circle {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================
   13. GOLD TREE LOGO WATERMARK
   ========================================== */
.chatbot-water-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bot-tree-watermark {
  width: 330px;
  height: 330px;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.08;
  filter: brightness(0.85) sepia(1) saturate(3.5) hue-rotate(5deg);
  animation: tree-heartbeat 3.2s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes tree-heartbeat {
  0%, 100% {
    transform: scale(1);
    opacity: 0.08;
    filter: brightness(0.85) sepia(1) saturate(3.5) hue-rotate(5deg) drop-shadow(0 0 0px rgba(212, 175, 55, 0));
  }
  14% {
    transform: scale(1.05);
    opacity: 0.13;
    filter: brightness(1.15) sepia(1) saturate(4.5) hue-rotate(5deg) drop-shadow(0 0 15px rgba(212, 175, 55, 0.55));
  }
  28% {
    transform: scale(1);
    opacity: 0.08;
    filter: brightness(0.85) sepia(1) saturate(3.5) hue-rotate(5deg) drop-shadow(0 0 0px rgba(212, 175, 55, 0));
  }
  42% {
    transform: scale(1.05);
    opacity: 0.13;
    filter: brightness(1.15) sepia(1) saturate(4.5) hue-rotate(5deg) drop-shadow(0 0 15px rgba(212, 175, 55, 0.55));
  }
  70% {
    transform: scale(1);
    opacity: 0.08;
    filter: brightness(0.85) sepia(1) saturate(3.5) hue-rotate(5deg) drop-shadow(0 0 0px rgba(212, 175, 55, 0));
  }
}

/* Water bubbles styling and rise animation */
.water-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 200, 0.95) 0%, rgba(212, 175, 55, 0.7) 45%, rgba(191, 149, 63, 0.1) 95%);
  box-shadow: 0 0 7px rgba(212, 175, 55, 0.75), 0 0 14px rgba(212, 175, 55, 0.35);
  pointer-events: none;
  z-index: 1;
}

@keyframes bubble-rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-480px) translateX(var(--drift, 15px)) scale(0.7);
    opacity: 0;
  }
}

/* Typing indicator dots styling and keyframes */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 18px;
  padding: 4px 0;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: typingPulse 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingPulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.3;
  }
  40% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 4px var(--accent-gold);
  }
}

/* Premium Scroll Reveal Utility */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-on-scroll.stagger-1 { transition-delay: 0.1s; }
.reveal-on-scroll.stagger-2 { transition-delay: 0.2s; }
.reveal-on-scroll.stagger-3 { transition-delay: 0.3s; }
.reveal-on-scroll.stagger-4 { transition-delay: 0.4s; }

/* Native Scroll-Driven View Timelines */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-in {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal-on-scroll {
      animation: reveal-in auto linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 60%;
      transition: none !important;
    }
  }
}

/* Stay Pass Tabs Styling */
.booking-tab {
  background: transparent;
  color: var(--text-light) !important;
  border: 1px solid var(--border-glass);
  cursor: pointer;
}

.booking-tab:hover {
  background: rgba(212, 175, 55, 0.04);
  color: var(--text-primary) !important;
}

.booking-tab.active {
  background: rgba(212, 175, 55, 0.1) !important;
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
}

/* Chatbot Language Button Styles */
.chat-lang-btn {
  cursor: pointer;
}

.chat-lang-btn:hover {
  color: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  background: rgba(212, 175, 55, 0.05) !important;
}

.chat-lang-btn.active {
  color: var(--accent-gold) !important;
  background: rgba(212, 175, 55, 0.1) !important;
  border-color: var(--accent-gold) !important;
}

/* Ticket QR code alignment adjustments */
.ticket-qr-container img {
  display: block;
}

/* Retrieve Stay Pass styling adjustments */
.booking-tab-content {
  animation: fadeInPage 0.4s ease-out forwards;
}

.status-error-msg {
  animation: shakeError 0.4s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shakeError {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* ==========================================
   14. PREMIUM ENHANCEMENT PACK v2.0
   ========================================== */

/* ---- Offer Banner / Marquee ---- */
.offer-banner {
  position: relative;
  z-index: 999;
  overflow: hidden;
  background: linear-gradient(90deg, #1a1200, #2d1e00, #1a1200);
  border-bottom: 1px solid rgba(212,175,55,0.35);
  height: 36px;
  display: flex;
  align-items: center;
}

.offer-banner::before,
.offer-banner::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.offer-banner::before {
  left: 0;
  background: linear-gradient(90deg, #1a1200, transparent);
}

.offer-banner::after {
  right: 0;
  background: linear-gradient(-90deg, #1a1200, transparent);
}

.offer-marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.offer-marquee-track:hover {
  animation-play-state: paused;
}

.offer-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.offer-marquee-item .dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212,175,55,0.4);
  display: inline-block;
  vertical-align: middle;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Hero Title Gold Shimmer Effect ---- */
.hero-title-shimmer {
  background: linear-gradient(
    105deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,1) 35%,
    rgba(212,175,55,1) 50%,
    rgba(255,224,130,1) 55%,
    rgba(255,255,255,1) 65%,
    rgba(255,255,255,1) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 4s linear infinite;
}

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

/* ---- Animated Gradient Border Cards ---- */
.animated-border-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(212,175,55,0.6),
    rgba(212,175,55,0.05),
    rgba(212,175,55,0.6)
  );
  background-size: 200% 200%;
  animation: gradient-border-rotate 4s linear infinite;
}

@keyframes gradient-border-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animated-border-card-inner {
  border-radius: calc(var(--border-radius-lg) - 1px);
  background: var(--bg-primary);
  height: 100%;
  width: 100%;
}

/* ---- Shimmer Loading Skeleton ---- */
.img-shimmer-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.img-shimmer-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,175,55,0.06) 50%,
    transparent 100%
  );
  animation: shimmer-slide 1.8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes shimmer-slide {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ---- Count-Up Number Animation ---- */
.count-up-stat {
  transition: color 0.3s ease;
}

.count-up-stat.counting {
  color: var(--accent-gold);
}

/* ---- Floating Pulse Booking CTA ---- */
.floating-book-fab {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 900;
  display: none;
}

@media(min-width: 768px) {
  .floating-book-fab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    bottom: 32px;
  }
}

.floating-book-fab a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.fab-book {
  background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold), #FFE082);
  color: #050505 !important;
  animation: fab-pulse 2.5s ease-in-out infinite;
  position: relative;
}

.fab-book::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent);
  animation: fab-ring 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes fab-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(212,175,55,0.3); }
  50% { transform: scale(1.06); box-shadow: 0 12px 35px rgba(212,175,55,0.5); }
}

@keyframes fab-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0; }
}

.fab-book svg {
  width: 22px;
  height: 22px;
}

.fab-wa {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: white !important;
}

.fab-wa:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 12px 30px rgba(37,211,102,0.5) !important;
}

.fab-book:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 12px 35px rgba(212,175,55,0.6) !important;
}

/* ---- Stagger card animations ---- */
.stagger-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-card:nth-child(1) { transition-delay: 0.05s; }
.stagger-card:nth-child(2) { transition-delay: 0.15s; }
.stagger-card:nth-child(3) { transition-delay: 0.25s; }
.stagger-card:nth-child(4) { transition-delay: 0.35s; }
.stagger-card:nth-child(5) { transition-delay: 0.45s; }
.stagger-card:nth-child(6) { transition-delay: 0.55s; }

/* ---- Feature Cards Enhanced Hover ---- */
.feature-card-enhanced {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card-enhanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(212,175,55,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card-enhanced:hover::before {
  opacity: 1;
}

.feature-card-enhanced::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card-enhanced:hover::after {
  transform: scaleX(1);
}

/* ---- Room Card Enhanced Hover ---- */
.room-card-enhanced .room-content {
  transition: background 0.4s ease;
}

.room-card-enhanced:hover .room-content {
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.03));
}

.room-card-enhanced .room-title {
  transition: color 0.3s ease;
}

.room-card-enhanced:hover .room-title {
  color: var(--accent-gold);
}

/* ---- Premium Section Divider ---- */
.section-divider-gold {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px auto 0;
  max-width: 200px;
  justify-content: center;
}

.section-divider-gold::before,
.section-divider-gold::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-divider-gold-icon {
  color: var(--accent-gold);
  font-size: 1rem;
  line-height: 1;
}

/* ---- Enhanced Booking Form ---- */
.booking-form-wrapper .btn-primary {
  background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
  color: #050505;
  border: none;
  font-weight: 800;
}

.booking-form-wrapper .btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold), #FFE082);
  color: #050505 !important;
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

.booking-form-wrapper .btn-primary::before {
  display: none;
}

/* ---- Image Hover Zoom Enhancement ---- */
.welcome-img-large,
.welcome-img-small {
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

/* ---- Testimonial Card Enhanced ---- */
.testimonial-card-inner {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.testimonial-card-inner:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(212,175,55,0.35) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,55,0.08) !important;
}

/* ---- Attraction Card Enhanced ---- */
.attraction-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: default;
}

.attraction-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(212,175,55,0.3) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 20px rgba(212,175,55,0.07) !important;
}

/* ---- Gallery Item Enhanced ---- */
.gallery-item {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease !important;
}

.gallery-item:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.1) !important;
  z-index: 2;
}

/* ---- FAQ Enhanced ---- */
.faq-item {
  transition: box-shadow 0.3s ease !important;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(212,175,55,0.06) !important;
}

/* ---- Gold Glow Text on hero ---- */
.hero-gold-glow {
  color: var(--accent-gold);
  text-shadow: 0 0 30px rgba(212,175,55,0.6), 0 0 60px rgba(212,175,55,0.3);
}

/* ---- Ambient Blob Float Animations (enhanced) ---- */
.blob-1 {
  animation: blob-float-1 12s ease-in-out infinite !important;
}

.blob-2 {
  animation: blob-float-2 15s ease-in-out infinite !important;
}

.blob-3 {
  animation: blob-float-3 18s ease-in-out infinite !important;
}

@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-35px, 20px) scale(1.1); }
  70% { transform: translate(25px, -15px) scale(0.9); }
}

@keyframes blob-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(20px, 30px) scale(1.05); }
  60% { transform: translate(-30px, -10px) scale(0.92); }
}

/* ---- Special Offer Badge ---- */
.special-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 50px;
  padding: 4px 14px 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: badge-glow 2.5s ease-in-out infinite;
}

.special-offer-badge .badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: badge-pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(212,175,55,0.8);
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 transparent; border-color: rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 15px rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.65); }
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* ---- WhatsApp CTA Color Enhancement ---- */
.btn-wa-enhanced {
  background: linear-gradient(135deg, #128C7E, #25D366) !important;
  border-color: #25D366 !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-wa-enhanced:hover {
  box-shadow: 0 8px 25px rgba(37,211,102,0.5) !important;
  transform: translateY(-3px) !important;
}

/* ---- Footer Enhancement ---- */
footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* ---- Booking Quick Bar Enhancement ---- */
.booking-quick-bar {
  position: relative;
}

.booking-quick-bar::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

/* ---- Mobile Bottom Nav Enhancement ---- */
.mobile-sticky-cta {
  border-top: 1px solid rgba(212,175,55,0.2) !important;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.3) !important;
}

/* ---- Star Rating Animation ---- */
.testimonial-stars svg {
  animation: star-twinkle 3s ease-in-out infinite;
}

.testimonial-stars svg:nth-child(1) { animation-delay: 0s; }
.testimonial-stars svg:nth-child(2) { animation-delay: 0.3s; }
.testimonial-stars svg:nth-child(3) { animation-delay: 0.6s; }
.testimonial-stars svg:nth-child(4) { animation-delay: 0.9s; }
.testimonial-stars svg:nth-child(5) { animation-delay: 1.2s; }

@keyframes star-twinkle {
  0%, 80%, 100% { filter: drop-shadow(0 0 2.5px rgba(212,175,55,0.5)); }
  40% { filter: drop-shadow(0 0 7px rgba(212,175,55,0.9)); }
}

/* ---- "Why Guests Love Us" section icon enhancement ---- */
.feature-icon-ring {
  position: relative;
}

.feature-icon-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.2);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature-card-enhanced:hover .feature-icon-ring::after {
  opacity: 1;
  transform: scale(1.1);
}

/* ---- Scroll Indicator Progress Bar ---- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold), #FFE082);
  z-index: 1100;
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
  transition: transform 0.1s linear;
}

/* ---- Contact Card hover ---- */
.contact-info-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.contact-info-card:hover {
  transform: translateX(6px) !important;
  border-color: rgba(212,175,55,0.3) !important;
}

/* ---- Price Tag Glow ---- */
.room-price-tag {
  background: linear-gradient(135deg, rgba(5,5,5,0.9), rgba(20,16,0,0.9)) !important;
  border-color: rgba(212,175,55,0.3) !important;
}

/* ---- Room Badge Pulse ---- */
.room-badge {
  background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold)) !important;
}

/* ---- Booking Benefit Pill Tags ---- */
.booking-benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.booking-benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.booking-benefit-tag svg {
  color: var(--accent-gold);
}

/* ---- Instagram Grid Enhancement ---- */
.insta-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease !important;
}

.insta-item:hover {
  transform: scale(1.03) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4) !important;
  z-index: 2 !important;
}

/* ---- Hero slide indicator dots ---- */
.hero-slide-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(212,175,55,0.7);
}

/* ---- Parallax text layers in hero ---- */
@keyframes heroTextFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* ---- Dining section quick stats ---- */
.dining-quick-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.dining-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dining-stat-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.dining-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

/* ---- Mobile Card Touch Enhancement ---- */
@media (max-width: 767px) {
  .room-card:active {
    transform: scale(0.98) !important;
    transition: transform 0.15s ease !important;
  }

  .gallery-item:active {
    transform: scale(0.96) !important;
  }
  
  .hero-title {
    font-size: 2.2rem !important;
  }
}

/* ---- Header "Book Now" button always visible on desktop ---- */
@media(min-width: 768px) {
  .btn-book-header {
    display: inline-flex !important;
    font-size: 0.78rem !important;
    padding: 7px 16px !important;
    letter-spacing: 0.05em !important;
  }
}

/* ---- Enhanced Section Subtitle ---- */
.section-subtitle {
  position: relative;
  display: inline-block;
}

/* ---- Nav link gold glow on hover ---- */
.nav-links a:hover {
  color: var(--accent-gold) !important;
  text-shadow: 0 0 12px rgba(212,175,55,0.4);
}

.nav-links a.active {
  color: var(--accent-gold) !important;
}

/* ---- Compare Room button enhancement ---- */
.compare-trigger-btn {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--accent-gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.compare-trigger-btn:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(212,175,55,0.15);
  transform: translateY(-1px);
}

/* ---- Chatbot launcher pulse ring enhancement ---- */
.chatbot-orbit-ring {
  animation: orbit-spin 6s linear infinite !important;
}

@keyframes orbit-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---- Logo hover effect ---- */
.logo img:hover {
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.5)) !important;
  transform: scale(1.05) !important;
}

/* ---- Room feature item checkmark color ---- */
.room-feature-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ---- Insta grid masonry hover text ---- */
.insta-item {
  position: relative;
}

.insta-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 16px 12px 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insta-item:hover .insta-item-label {
  opacity: 1;
}

/* ---- Booking form input focus glow enhancement ---- */
.input-group select:focus, .input-group input:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15), 0 0 20px rgba(212,175,55,0.08) !important;
}


/* ==========================================================================
   25. ILLUSTRATED NEIGHBORHOOD MAP & DYNAMIC FARE ESTIMATOR STYLES
   ========================================================================== */

/* Vector illustrated map wrapper styling */
.vector-map-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fdfbf7;
  transition: opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.vector-map-wrapper.active {
  opacity: 1;
  pointer-events: auto;
}

[data-theme="dark"] .vector-map-wrapper {
  background: #0d0d0d;
}

/* SVG Neighborhood Map elements */
#svg-neighborhood-map {
  display: block;
}

.map-grid-line {
  stroke: rgba(197, 160, 40, 0.08);
}
[data-theme="dark"] .map-grid-line {
  stroke: rgba(212, 175, 55, 0.04);
}

.map-bg-grid {
  transition: fill 0.4s;
}

.road-path {
  stroke: #efebe4;
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s;
}

[data-theme="dark"] .road-path {
  stroke: #181818;
}

.circle-roundabout-path {
  stroke: #efebe4;
  stroke-width: 6px;
  transition: stroke 0.4s;
}

[data-theme="dark"] .circle-roundabout-path {
  stroke: #181818;
}

/* Glowing active route path styling */
.active-road-path {
  stroke: var(--accent-gold);
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw-path-flow 2.5s linear infinite;
  z-index: 3;
}

@keyframes draw-path-flow {
  to {
    stroke-dashoffset: -1600;
  }
}

/* Map Interactive Nodes */
.map-node {
  cursor: pointer;
  outline: none;
}

.map-node .node-pulse {
  fill: rgba(212, 175, 55, 0.15);
  stroke: var(--accent-gold);
  stroke-width: 1px;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.map-node:hover .node-pulse,
.map-node.active .node-pulse {
  animation: pulse-ring-scale 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  opacity: 1;
}

@keyframes pulse-ring-scale {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.map-node .node-bg {
  fill: #ffffff;
  stroke: var(--accent-gold-dark);
  stroke-width: 2px;
  transition: fill 0.4s, stroke 0.4s;
}

[data-theme="dark"] .map-node .node-bg {
  fill: #151515;
  stroke: var(--accent-gold);
}

.map-node.hotel-node .node-bg {
  stroke: var(--accent-gold-dark);
  fill: #fff7df;
}

[data-theme="dark"] .map-node.hotel-node .node-bg {
  fill: #221d10;
}

.map-node .node-emoji {
  user-select: none;
  pointer-events: none;
  font-size: 1.1rem;
}

.map-node .node-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  fill: var(--text-secondary);
  transition: fill 0.4s;
  paint-order: stroke fill;
  stroke: var(--bg-primary);
  stroke-width: 3.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-theme="dark"] .map-node .node-label {
  fill: #fff;
  stroke: #0a0a0a;
}

.map-node:hover .node-label {
  fill: var(--accent-gold-dark) !important;
}

[data-theme="dark"] .map-node:hover .node-label {
  fill: var(--accent-gold) !important;
}

/* Explorer Fish Mascot Group */
.explorer-fish-group {
  pointer-events: none;
  z-index: 4;
}

.fish-glow-halo {
  fill: rgba(212, 175, 55, 0.45);
  filter: blur(4px);
  transform-box: fill-box;
  transform-origin: center;
  animation: fish-glow-pulse 1s infinite alternate;
}

@keyframes fish-glow-pulse {
  from { transform: scale(0.9); opacity: 0.7; }
  to { transform: scale(1.15); opacity: 1; }
}

.fish-body {
  fill: url(#fish-gradient);
  stroke: #d35400;
  stroke-width: 1px;
}

.fish-tail {
  fill: #d35400;
  transform-origin: -12px 0;
  animation: tail-wag 0.22s infinite alternate ease-in-out;
}

@keyframes tail-wag {
  from { transform: rotate(-10deg); }
  to { transform: rotate(10deg); }
}

.smart-fish-tail {
  fill: #d35400;
  transform-origin: -6px 0;
  animation: smart-tail-wag 0.18s infinite alternate ease-in-out;
}

@keyframes smart-tail-wag {
  from { transform: rotate(-15deg); }
  to { transform: rotate(15deg); }
}

.fish-tag {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 850;
  fill: var(--text-primary);
  text-anchor: middle;
  stroke: var(--bg-primary);
  stroke-width: 2.5px;
  paint-order: stroke fill;
}

[data-theme="dark"] .fish-tag {
  stroke: #050505;
}

/* Map View Type Toggle styling */
.map-view-toggle {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  background: var(--bg-secondary);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
}

[data-theme="dark"] .map-view-toggle {
  background: #121212;
}

.map-toggle-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 6px 10px;
  font-size: 0.65rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.map-toggle-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.map-toggle-btn.active {
  background: var(--accent-gold);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}

/* Dasara Festive Season Toggle switch styles */
.dasara-toggle-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(212, 175, 55, 0.04);
  border: 1.5px solid rgba(212, 175, 55, 0.22);
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.04);
}

.dasara-toggle-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dasara-icon {
  font-size: 1.3rem;
  display: inline-block;
  animation: dasara-lamp-glow 1.5s infinite alternate ease-in-out;
}

@keyframes dasara-lamp-glow {
  from { filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.4)); transform: scale(0.95); }
  to { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.95)); transform: scale(1.1); }
}

.dasara-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme="dark"] .dasara-title {
  color: var(--accent-gold);
}

.dasara-desc {
  font-size: 0.6rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Switch toggle switch (iOS style) */
.switch-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-round {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--bg-tertiary);
  transition: .4s;
  border-radius: 24px;
  border: 1.5px solid var(--border-glass);
}

.slider-round:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 3.5px;
  background-color: var(--text-secondary);
  transition: .4s;
  border-radius: 50%;
}

.switch-toggle input:checked + .slider-round {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.switch-toggle input:checked + .slider-round:before {
  transform: translateX(20px);
  background-color: var(--black);
}

/* Transit Budget Estimator Cards Dashboard */
.transit-budget-estimator {
  margin-top: 10px;
}

.estimator-header {
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-theme="dark"] .estimator-header {
  color: var(--accent-gold);
}

.badge-surge {
  background: #e57373;
  color: #fff;
  font-size: 0.52rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  animation: pulse-badge-surge 1s infinite alternate;
}

@keyframes pulse-badge-surge {
  from { opacity: 0.85; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}

.transit-fare-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.fare-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

[data-theme="light"] .fare-card {
  background: rgba(0, 0, 0, 0.03) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--text-primary) !important;
}

.fare-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.fare-card-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.fare-icon {
  font-size: 1.1rem;
}

.fare-mode {
  font-size: 0.6rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.fare-price-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}

.fare-amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.fare-time {
  font-size: 0.62rem;
  color: var(--text-light);
  font-weight: 600;
}

.fare-card-footer {
  font-size: 0.52rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* Alert notifications during Dasara peak season */
.dasara-alert-box {
  background: rgba(229, 115, 115, 0.08);
  border-left: 3px solid #e57373;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.65rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 10px;
}

[data-theme="dark"] .dasara-alert-box {
  background: rgba(229, 115, 115, 0.12);
  color: #ff8a80;
}

/* Quote Calculator Glow & Pulse Animation */
@keyframes calcPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
  30% {
    transform: scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px var(--accent-gold-glow);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
}

.calc-pulse-anim {
  animation: calcPulse 0.4s ease-out;
}

/* Local Suggestions Sub-tabs and chips */
.chip-prompt {
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  border-radius: 20px;
  padding: 3px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip-prompt:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.itinerary-step {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  border-left: 2px solid var(--accent-gold);
  font-size: 0.7rem;
  align-items: flex-start;
}

.itinerary-step-time {
  font-weight: 700;
  color: var(--accent-gold);
  min-width: 55px;
}

.itinerary-step-detail {
  flex: 1;
  color: var(--text-light);
  line-height: 1.35;
}

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

/* Voice Concierge wave bar animation */
.voice-bar {
  width: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: height 0.15s ease;
  height: 10px;
}
.voice-bar.bar1 { height: 6px; animation: wavePulse 0.5s ease infinite alternate; }
.voice-bar.bar2 { height: 12px; animation: wavePulse 0.4s ease infinite alternate 0.1s; }
.voice-bar.bar3 { height: 8px; animation: wavePulse 0.6s ease infinite alternate 0.2s; }
.voice-bar.bar4 { height: 14px; animation: wavePulse 0.3s ease infinite alternate 0.05s; }
.voice-bar.bar5 { height: 5px; animation: wavePulse 0.5s ease infinite alternate 0.15s; }

@keyframes wavePulse {
  0% { transform: scaleY(0.5); }
  100% { transform: scaleY(1.5); }
}

/* Wizard Selector Cards */
.wizard-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.wizard-card.selected {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

@keyframes sweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Popularity chart styles */
.pop-bar {
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.pop-bar::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(0, 0, 0, 0.9);
  color: var(--accent-gold);
  font-size: 0.55rem;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 10;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.pop-bar:hover {
  background: var(--accent-gold) !important;
}

.pop-bar:hover::after {
  opacity: 1;
}

.pop-bar.dasara-surge {
  background: linear-gradient(to top, rgba(229,115,115,0.4), rgba(229,115,115,0.85)) !important;
}

.pop-bar.dasara-surge:hover {
  background: #ff8a80 !important;
}

/* ==========================================================================
   21. VISUAL DOSA CUSTOMIZER & TRIVIA & MAP ROUTE OPTIMIZER CLASSES
   ========================================================================== */

/* Trivia Challenge Widget styling */
.trivia-option-btn {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.trivia-option-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.trivia-option-btn.selected {
  background: rgba(212, 175, 55, 0.1) !important;
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold);
  font-weight: 700;
}
.trivia-option-btn.correct {
  background: rgba(76, 175, 80, 0.15) !important;
  border-color: #4caf50 !important;
  color: #81c784 !important;
  font-weight: 700;
}
.trivia-option-btn.incorrect {
  background: rgba(244, 67, 54, 0.15) !important;
  border-color: #f44336 !important;
  color: #e57373 !important;
  font-weight: 700;
}

.trivia-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  transition: all 0.2s ease;
}
.trivia-dot.active {
  background: var(--accent-gold) !important;
  box-shadow: 0 0 6px var(--accent-gold-glow);
}
.trivia-dot.correct {
  background: #4caf50 !important;
  box-shadow: 0 0 6px rgba(76,175,80,0.4);
}
.trivia-dot.incorrect {
  background: #f44336 !important;
  box-shadow: 0 0 6px rgba(244,67,54,0.4);
}

/* Route Optimizer Checkboxes styling */
.landmark-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.landmark-chip .route-opt-checkbox {
  width: 13px;
  height: 13px;
  cursor: pointer;
  vertical-align: middle;
}

/* Monsoon Mode styling overrides */
#monsoon-surge-toggle:checked + .slider-round,
#explorer-monsoon-toggle:checked + .slider-round {
  background-color: #5cacee !important;
  border-color: #5cacee !important;
}
#monsoon-surge-toggle:checked + .slider-round:before,
#explorer-monsoon-toggle:checked + .slider-round:before {
  background-color: var(--black) !important;
}

#rain-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.rain-drop {
  position: absolute;
  background: linear-gradient(transparent, rgba(174, 219, 255, 0.45));
  width: 1.5px;
  height: 40px;
  opacity: 0.7;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(-50px) rotate(15deg);
  }
  100% {
    transform: translateY(1000px) rotate(15deg);
  }
}

/* Monsoon Attractions Badges */
.monsoon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.monsoon-badge.indoor {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
}
.monsoon-badge.outdoor {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.05);
}

/* Soundscape range sliders */
#slider-rain-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5cacee;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(92, 172, 238, 0.6);
}
#slider-drone-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}
#slider-rain-vol, #slider-drone-vol {
  -webkit-appearance: none;
  appearance: none;
}

/* 3D Room Virtual Tour Styles */
.room-tour-viewport {
  perspective: 450px !important; /* Enhanced depth perception */
  overflow: hidden;
  user-select: none;
}
.room-tour-cube {
  position: absolute;
  width: 400px;
  height: 400px;
  left: 50%;
  top: 50%;
  margin-left: -200px;
  margin-top: -200px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

/* Cube Face Dimensions & Placement */
.cube-face {
  position: absolute;
  width: 400px;
  height: 400px;
  backface-visibility: hidden;
  user-select: none;
  box-sizing: border-box;
  overflow: hidden;
  /* Ambient Occlusion: realistic room corner shadows */
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cube-face.front { transform: rotateY(0deg) translateZ(-200px); }
.cube-face.back { transform: rotateY(180deg) translateZ(-200px); }
.cube-face.left { transform: rotateY(90deg) translateZ(-200px); }
.cube-face.right { transform: rotateY(-90deg) translateZ(-200px); }
.cube-face.top { transform: rotateX(90deg) translateZ(-200px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(-200px); }

/* --- ROOM WALL COLORS (DYNAMIC BASE) --- */
/* Executive Room: Rich Walnut & Slate Gray */
.room-executive .cube-face.front,
.room-executive .cube-face.back,
.room-executive .cube-face.left,
.room-executive .cube-face.right {
  background: linear-gradient(to bottom, #2d2922, #181613);
}
/* Queen Room: Royal Teal & Warm Gold Tint */
.room-queen .cube-face.front,
.room-queen .cube-face.back,
.room-queen .cube-face.left,
.room-queen .cube-face.right {
  background: linear-gradient(to bottom, #112c2a, #0b1a19);
}
/* Deluxe Room: Luxury Cream & Royal Indigo/Gold */
.room-deluxe .cube-face.front,
.room-deluxe .cube-face.back,
.room-deluxe .cube-face.left,
.room-deluxe .cube-face.right {
  background: linear-gradient(to bottom, #383126, #1c1813);
}

/* --- FRONT WALL: BED STRUCTURE & LIGHTS --- */
.wall-paneling {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  border-bottom: 8px solid rgba(0, 0, 0, 0.3);
}
/* Wallpaper / Trim styling */
.wall-trim {
  position: absolute;
  top: 30px;
  left: 20px;
  right: 20px;
  height: 180px;
  border: 1px dashed rgba(212, 175, 55, 0.2);
}
.room-executive .wall-trim {
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.01), rgba(255,255,255,0.01) 20px, transparent 20px, transparent 40px);
}
.room-queen .wall-trim {
  background: repeating-linear-gradient(90deg, rgba(212, 175, 55, 0.02), rgba(212, 175, 55, 0.02) 10px, transparent 10px, transparent 20px);
}
.room-deluxe .wall-trim {
  background: linear-gradient(to right, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 30px 100%;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
}

/* Bed structure placement */
.bed-structure {
  position: absolute;
  bottom: 0;
  left: 50px;
  width: 300px;
  height: 160px;
  z-index: 5;
}

/* Headboard styling by room type */
.bed-headboard {
  position: absolute;
  bottom: 60px;
  left: 20px;
  width: 260px;
  height: 90px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
/* Executive wood panel board */
.room-executive .bed-headboard {
  background: linear-gradient(to right, #4a3424, #362519, #4a3424);
  border: 2px solid #5a402d;
  border-bottom: none;
}
/* Queen teal fabric board */
.room-queen .bed-headboard {
  background: linear-gradient(to bottom, #1d4d49, #123330);
  border: 2px solid var(--accent-gold);
  border-bottom: none;
}
/* Deluxe imperial gold & velvet tufted */
.room-deluxe .bed-headboard {
  background: radial-gradient(circle, #e2bc53 20%, #b89130 80%);
  border: 3px solid #ffd700;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
}

/* Bed pillows */
.bed-pillows {
  position: absolute;
  bottom: 45px;
  left: 40px;
  right: 40px;
  height: 35px;
  display: flex;
  justify-content: space-around;
  z-index: 6;
}
.pillow {
  width: 85px;
  height: 30px;
  border-radius: 6px;
  background: #f0f0f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  position: relative;
}
.room-deluxe .pillow {
  background: #fff;
  border-top: 3px solid #b89130;
}
.room-executive .pillow {
  background: #e2e2e2;
}

/* Duvet / Blanket folding forward */
.bed-blanket {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 60px;
  background: linear-gradient(to bottom, #d8d8d8, #bfbfbf);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7;
}
.blanket-fold {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0));
  border-bottom: 2px solid rgba(0,0,0,0.15);
}
.room-executive .bed-blanket {
  background: linear-gradient(to bottom, #303036, #1c1c20);
}
.room-queen .bed-blanket {
  background: linear-gradient(to bottom, #ffffff, #eaeaea);
  border-top: 4px solid #112c2a;
}
.room-deluxe .bed-blanket {
  background: linear-gradient(to bottom, #ffffff, #f7f3eb);
  border-top: 4px solid #ffd700;
}
.bed-title-badge {
  text-align: center;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

/* Nightstands & Lamps */
.nightstand {
  position: absolute;
  bottom: 0;
  width: 45px;
  height: 65px;
  background: #1c1815;
  border: 1.5px solid #2d2621;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  z-index: 4;
}
.nightstand-left { left: 10px; }
.nightstand-right { right: 10px; }
.room-deluxe .nightstand {
  background: #2a251e;
  border: 1.5px solid #e2bc53;
}
.room-executive .nightstand {
  background: #222;
  border: 1px solid #333;
}

/* Lamps casting realistic light cones */
.table-lamp {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 32px;
}
.lamp-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 16px;
  background: #eaeaea;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  z-index: 3;
}
.room-executive .lamp-shade {
  background: #bfbfbf;
}
.room-queen .lamp-shade {
  background: #f7e6c4;
  border-radius: 50% 50% 0 0;
}
.room-deluxe .lamp-shade {
  background: #fff;
  border: 1px solid #ffd700;
  box-shadow: 0 0 10px rgba(255,215,0,0.4);
}

.lamp-light-cone {
  position: absolute;
  top: 16px;
  left: -20px;
  width: 60px;
  height: 80px;
  background: radial-gradient(ellipse at top, rgba(255, 214, 90, 0.4), rgba(255, 214, 90, 0) 70%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  opacity: 0.85;
}
.room-executive .lamp-light-cone {
  background: radial-gradient(ellipse at top, rgba(255, 255, 200, 0.35), rgba(255, 255, 200, 0) 70%);
}
.room-deluxe .lamp-light-cone {
  background: radial-gradient(ellipse at top, rgba(255, 225, 120, 0.5), rgba(255, 225, 120, 0) 75%);
}


/* --- BACK WALL: DOOR, WARDROBE, CONSOLE --- */
.wardrobe-cabinet {
  position: absolute;
  left: 15px;
  bottom: 0;
  width: 145px;
  height: 290px;
  background: #181513;
  border: 2px solid #2d2621;
  border-bottom: none;
  display: flex;
  box-shadow: 5px 0 15px rgba(0,0,0,0.4);
}
.wardrobe-door {
  flex: 1;
  border-right: 1px solid rgba(0,0,0,0.4);
  position: relative;
}
.wardrobe-door-left {
  background: linear-gradient(to right, #2b1f1a, #201713);
}
.wardrobe-door-right {
  background: linear-gradient(to right, #201713, #150f0c);
}
.wardrobe-mirror {
  position: absolute;
  top: 20px;
  left: 8px;
  right: 8px;
  bottom: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 50%);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
  backdrop-filter: brightness(1.2);
}
.room-executive .wardrobe-door-left,
.room-executive .wardrobe-door-right {
  background: linear-gradient(to right, #1f1f23, #151517);
  border-color: #2b2b30;
}

/* Door Structure */
.door-structure {
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 130px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.door-frame {
  width: 100%;
  height: 285px;
  border: 4px solid #2a1b14;
  border-bottom: none;
  background: #0f0b09;
  box-shadow: -5px 0 15px rgba(0,0,0,0.4);
  box-sizing: border-box;
}
.door-panel {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #422d22, #2c1e16);
  position: relative;
  border: 1px solid #1a110d;
}
.room-executive .door-panel {
  background: linear-gradient(to bottom, #2b2b2b, #191919);
  border-color: #111;
}
.room-executive .door-frame {
  border-color: #3f3f3f;
}
.door-knob {
  position: absolute;
  top: 140px;
  left: 10px;
  width: 8px;
  height: 16px;
  background: linear-gradient(to bottom, #ffd700, #b89130);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.rfid-lock {
  position: absolute;
  top: 120px;
  left: 8px;
  width: 12px;
  height: 16px;
  background: #111;
  border: 1px solid #333;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rfid-led {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00ff00;
  box-shadow: 0 0 4px #00ff00;
}
.door-label {
  font-size: 0.55rem;
  color: var(--text-light);
  opacity: 0.6;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Wall Console */
.wall-console {
  position: absolute;
  top: 130px;
  right: 175px;
  width: 34px;
  height: 45px;
  background: rgba(18, 18, 18, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.console-screen {
  width: 26px;
  height: 20px;
  background: #050e14;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(0, 220, 255, 0.3);
}
.console-temp {
  font-size: 0.5rem;
  font-family: monospace;
  color: #00d2ff;
  text-shadow: 0 0 3px #00d2ff;
  font-weight: bold;
}
.console-label {
  font-size: 0.35rem;
  color: #fff;
  opacity: 0.8;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}


/* --- LEFT WALL: DYNAMIC FURNITURE CHANGER --- */
.furniture-group {
  display: none; /* Controlled dynamically in CSS */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Show correct furniture groups */
.room-executive .study-workspace { display: block; }
.room-queen .cozy-lounge { display: block; }
.room-deluxe .sofa-lounge { display: block; }

/* 1. Executive Study Workspace */
.study-desk {
  position: absolute;
  bottom: 0;
  left: 80px;
  width: 240px;
  height: 95px;
  background: linear-gradient(to bottom, #442a18, #2c1a0e);
  border: 2px solid #5a3c26;
  border-bottom: none;
  box-shadow: inset 0 20px 30px rgba(0,0,0,0.3), 0 5px 15px rgba(0,0,0,0.5);
}
.desk-drawer {
  position: absolute;
  bottom: 10px;
  left: 15px;
  width: 50px;
  height: 60px;
  border: 1px solid rgba(0,0,0,0.4);
  background: linear-gradient(to bottom, #2f1c0f, #1b0f08);
}
.desk-drawer::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 21px;
  width: 8px;
  height: 4px;
  background: #ffd700;
  border-radius: 1px;
}
.desk-top-items {
  position: absolute;
  top: -24px;
  left: 95px;
  width: 60px;
  height: 24px;
}
.desk-laptop {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 24px;
}
.laptop-screen {
  width: 42px;
  height: 20px;
  background: #0f1c24;
  border: 1px solid #c2c2c2;
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
  position: relative;
}
.laptop-screen::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 32px;
  height: 12px;
  background: linear-gradient(to bottom, #00d2ff, #005a9e);
  opacity: 0.8;
}
.laptop-keyboard {
  width: 44px;
  height: 2px;
  background: #c2c2c2;
  border-radius: 0 0 1px 1px;
}
.desk-cup {
  position: absolute;
  bottom: 0;
  right: -25px;
  width: 8px;
  height: 12px;
  background: #f0f0f0;
  border-radius: 0 0 2px 2px;
}

.ergonomic-chair {
  position: absolute;
  bottom: 0;
  left: 170px;
  width: 60px;
  height: 110px;
  background: linear-gradient(to bottom, #111, #222);
  border-radius: 12px 12px 0 0;
  border: 2px solid #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 6;
}
.ergonomic-chair::before {
  content: '';
  position: absolute;
  top: 45px;
  left: -4px;
  right: -4px;
  height: 10px;
  background: #111;
  border-radius: 4px;
}

.bookshelf {
  position: absolute;
  top: 50px;
  left: 100px;
  width: 200px;
  height: 20px;
  background: #503724;
  border-bottom: 3px solid #3b2819;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}
.book {
  position: absolute;
  bottom: 3px;
  width: 10px;
  height: 22px;
  border-radius: 2px;
}
.book.b1 { left: 20px; background: #a22929; height: 25px; }
.book.b2 { left: 32px; background: #295ca2; }
.book.b3 { left: 44px; background: #c5a059; transform: rotate(15deg); }

/* 2. Queen Cozy Lounge */
.armchair {
  position: absolute;
  bottom: 0;
  width: 90px;
  height: 105px;
  background: linear-gradient(to bottom, #1d4d49, #0e2926);
  border: 2.5px solid var(--accent-gold);
  border-radius: 15px 15px 0 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.armchair-left { left: 30px; }
.armchair-right { right: 90px; }
.tea-table {
  position: absolute;
  bottom: 0;
  left: 135px;
  width: 70px;
  height: 60px;
  background: linear-gradient(to bottom, #4a3319, #201305);
  border-radius: 50% 50% 0 0;
  border: 2px solid #5a3e1e;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.tea-cup {
  position: absolute;
  top: -8px;
  left: 28px;
  width: 14px;
  height: 8px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  border-top: 1px solid rgba(0,0,0,0.2);
}

.lounge-floor-lamp {
  position: absolute;
  bottom: 0;
  right: 25px;
  width: 40px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.floor-lamp-shade {
  width: 40px;
  height: 35px;
  background: radial-gradient(circle at center, #ffd700 30%, #bf9d30 90%);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 0 15px rgba(255,215,0,0.4);
  z-index: 3;
}
.floor-lamp-light {
  position: absolute;
  top: 35px;
  width: 100px;
  height: 135px;
  background: radial-gradient(ellipse at top, rgba(255,215,0,0.3) 0%, rgba(255,215,0,0) 70%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.lounge-floor-lamp::after {
  content: '';
  width: 4px;
  height: 135px;
  background: linear-gradient(to bottom, #d4af37, #8a6f27);
  box-shadow: 1px 0 3px rgba(0,0,0,0.3);
}

/* 3. Deluxe Sofa Lounge */
.wall-painting {
  position: absolute;
  top: 40px;
  left: 90px;
  width: 220px;
  height: 90px;
}
.painting-frame {
  width: 100%;
  height: 100%;
  border: 4px solid #b89130;
  background: #111;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  padding: 3px;
  box-sizing: border-box;
}
.painting-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #ff7e5f, #feb47b); /* Sunset scene */
  position: relative;
  overflow: hidden;
}
.painting-inner::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 160px;
  height: 50px;
  background: #3f1e4a; /* Hill shape */
  border-radius: 50% 50% 0 0;
}

.velvet-sofa {
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 280px;
  height: 115px;
  z-index: 5;
}
.sofa-back {
  width: 100%;
  height: 70px;
  background: linear-gradient(to bottom, #2b336a, #151b40);
  border: 2px solid #ffd700;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}
.sofa-seat {
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 290px;
  height: 48px;
  background: linear-gradient(to bottom, #1d234d, #0f122c);
  border: 2px solid #ffd700;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.sofa-pillow {
  position: absolute;
  bottom: 25px;
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, #e2bc53 20%, #b89130 80%);
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.sofa-pillow.pillow-l { left: 15px; transform: rotate(-15deg); }
.sofa-pillow.pillow-r { right: 15px; transform: rotate(15deg); }

.coffee-table {
  position: absolute;
  bottom: 0;
  left: 140px;
  width: 120px;
  height: 55px;
  z-index: 6;
}
.table-top-marble {
  width: 100%;
  height: 12px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 40%, #ffffff 70%, #d5d5d5 100%);
  border: 2px solid #ffd700;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.coffee-table::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 43px;
  background: transparent;
  border-left: 3px solid #ffd700;
  border-right: 3px solid #ffd700;
  border-bottom: 2px solid #ffd700;
}


/* --- RIGHT WALL: FRENCH WINDOW, CURTAINS, SCENERY --- */
.scenery-viewport {
  position: absolute;
  top: 40px;
  left: 70px;
  width: 260px;
  height: 270px;
  background: #030303;
  overflow: hidden;
  border: 2px solid #111;
  box-shadow: inset 0 0 30px rgba(0,0,0,1);
}
.scenery-view {
  display: none; /* Controlled in CSS based on Room class */
  width: 100%;
  height: 100%;
  position: relative;
}

/* Scenery dynamics based on Room class */
.room-executive .city-scenery { display: block; }
.room-queen .garden-scenery { display: block; }
.room-deluxe .hills-scenery { display: block; }

/* 1. City Twilight (Executive) */
.city-scenery .sky-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0d1b2a, #1b263b, #415a77);
}
.city-scenery .street-lights {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.9));
}
.city-scenery .street-lights::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 60px;
  /* Tiny yellow window stars/dots */
  background-image: radial-gradient(circle, #f9c74f 1.5px, transparent 1.5px),
                    radial-gradient(circle, #ffd166 1.5px, transparent 1.5px);
  background-size: 35px 25px, 45px 35px;
  background-position: 5px 5px, 15px 15px;
  opacity: 0.8;
}

/* 2. Balcony Garden (Queen) */
.garden-scenery .sky-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #aaccff, #eef3ff);
}
.garden-scenery .balcony-plants {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: transparent;
}
.garden-scenery .balcony-plants::before {
  content: '';
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231d4d49'%3E%3Cpath d='M2 22C2 12 10 4 20 4C20 14 12 22 2 22Z'/%3E%3Cpath d='M10 22C10 16 15 11 21 11C21 17 16 22 10 22Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0px;
  left: 10px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}
.garden-scenery .balcony-plants::after {
  content: '';
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231d4d49'%3E%3Cpath d='M12 2C9 5 9 10 9 10s3-2 3-8z'/%3E%3Cpath d='M15 4c-2 2-2 6-2 6s2-1 2-6z'/%3E%3Cpath d='M6 11h12l-1.5 8h-9L6 11z' fill='%238a6f27'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0px;
  right: 20px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

/* 3. Chamundi Hills & Palace Sunset (Deluxe) */
.hills-scenery .sky-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #d94e34, #eb8a44, #f5d47a);
}
.hills-scenery .hills-silhouette {
  position: absolute;
  bottom: 0;
  left: -20px;
  right: -20px;
  height: 110px;
  background: #24142b;
  clip-path: polygon(0 80%, 20% 50%, 45% 75%, 70% 30%, 100% 70%, 100% 100%, 0% 100%);
  opacity: 0.95;
  box-shadow: inset 0 20px 20px rgba(0,0,0,0.3);
}
.hills-scenery .palace-glow {
  position: absolute;
  bottom: 0;
  right: 35px;
  width: 70px;
  height: 48px;
  background: transparent;
}
/* Palace Silhouette & tiny glowing dots */
.hills-scenery .palace-glow::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #391c44;
  clip-path: polygon(20% 100%, 20% 40%, 30% 20%, 40% 40%, 40% 100%, 60% 100%, 60% 10%, 70% 0%, 80% 10%, 80% 100%);
}
.hills-scenery .palace-glow::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  height: 30px;
  background-image: radial-gradient(circle, #ffd700 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.8;
}

/* French Window styling */
.french-window {
  position: absolute;
  top: 35px;
  left: 65px;
  width: 270px;
  height: 275px;
  z-index: 4;
  pointer-events: none;
}
.window-frame {
  width: 100%;
  height: 100%;
  border: 8px solid #eaeaea;
  border-bottom: none;
  box-sizing: border-box;
}
.pane-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.window-pane {
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 15px rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}
.window-sill {
  position: absolute;
  bottom: -8px;
  left: -10px;
  width: 290px;
  height: 8px;
  background: #eaeaea;
  border-radius: 2px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.4);
}
.room-executive .window-frame,
.room-executive .window-sill {
  border-color: #3b2819;
  background: #3b2819;
}
.room-deluxe .window-frame,
.room-deluxe .window-sill {
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* Curtains styling */
.window-curtains {
  position: absolute;
  top: 25px;
  left: 45px;
  right: 45px;
  height: 320px;
  z-index: 5;
  pointer-events: none;
}
.curtain {
  width: 40px;
  height: 100%;
  position: absolute;
  box-shadow: 5px 0 10px rgba(0,0,0,0.3);
}
.curtain-left {
  left: 0;
  border-radius: 0 15px 0 0;
}
.curtain-right {
  right: 0;
  border-radius: 15px 0 0 0;
  box-shadow: -5px 0 10px rgba(0,0,0,0.3);
}

/* Custom curtain folds / color based on Room Type */
.room-executive .curtain {
  background: repeating-linear-gradient(90deg, #5c5c64, #5c5c64 6px, #424247 6px, #424247 12px);
}
.room-queen .curtain {
  background: repeating-linear-gradient(90deg, #d2a15c, #d2a15c 8px, #b2813c 8px, #b2813c 16px);
}
.room-deluxe .curtain {
  background: repeating-linear-gradient(90deg, #8a2336, #8a2336 8px, #601220 8px, #601220 16px);
  border-left: 2px solid #ffd700;
  border-right: 2px solid #ffd700;
}


/* --- CEILING: RECESSED LIGHTS & CHANDELIER --- */
.ceiling-molding {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 12px solid #161513;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.9);
}
.room-deluxe .ceiling-molding {
  border-color: #ffd700;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 0 15px rgba(255,215,0,0.2);
}
.room-queen .ceiling-molding {
  border-color: #2b1f1a;
}

.ceiling-recess {
  position: absolute;
  top: 35px;
  left: 35px;
  right: 35px;
  bottom: 35px;
  background: #0f0d0b;
  border: 2px solid rgba(0,0,0,0.8);
  box-shadow: inset 0 0 30px rgba(0,0,0,1);
}
.cove-lighting {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 25px rgba(255, 220, 130, 0.45);
  pointer-events: none;
}
.room-executive .cove-lighting {
  box-shadow: inset 0 0 25px rgba(0, 210, 255, 0.25);
}
.room-deluxe .cove-lighting {
  box-shadow: inset 0 0 35px rgba(255, 215, 0, 0.65);
}

/* Ceiling Fixtures control */
.ceiling-fixture {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.room-executive .minimal-light { display: block; }
.room-queen .lantern-fixture { display: block; }
.room-deluxe .crystal-chandelier { display: block; }

/* 1. Minimal Spot Light (Executive) */
.recessed-spot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 40%, #c2c2c2 80%);
  box-shadow: 0 0 20px rgba(255,255,255,0.8);
}

/* 2. Traditional Hanging Lantern (Queen) */
.lantern-fixture {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lantern-cord {
  width: 2px;
  height: 120px;
  background: #d4af37;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
}
.lantern-body {
  position: absolute;
  top: 120px;
  width: 40px;
  height: 55px;
  background: radial-gradient(circle, #ff5e3a 30%, #a82308 90%);
  border: 2px solid #d4af37;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(255, 94, 58, 0.6);
  z-index: 3;
}
.lantern-body::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 17px;
  width: 6px;
  height: 8px;
  background: #d4af37;
  border-radius: 1px;
}

/* 3. Luxury Crystal Chandelier (Deluxe) */
.crystal-chandelier {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chandelier-chain {
  width: 4px;
  height: 110px;
  background: repeating-linear-gradient(to bottom, #d4af37, #d4af37 4px, #ffd700 4px, #ffd700 8px);
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -2px;
}
.chandelier-canopy {
  position: absolute;
  top: 100px;
  width: 30px;
  height: 12px;
  background: #d4af37;
  border-radius: 50% 50% 0 0;
}
.chandelier-frame {
  position: absolute;
  top: 110px;
  width: 120px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #ffd700;
  box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}
.chandelier-bulbs {
  position: absolute;
  top: 98px;
  width: 100px;
  height: 16px;
  display: flex;
  justify-content: space-between;
}
.chandelier-bulbs::before,
.chandelier-bulbs::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 15px #ffd700, 0 0 30px #fff;
}
.chandelier-drops {
  position: absolute;
  top: 125px;
  width: 90px;
  height: 35px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  clip-path: polygon(10% 0, 90% 0, 50% 100%);
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(255,255,255,0.4));
}


/* --- BOTTOM: DUSTY RUG & FLOOR TILING --- */
.floor-surface {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Executive: Parquet floor */
.room-executive .floor-surface {
  background: repeating-linear-gradient(45deg, #382417, #382417 12px, #26170d 12px, #26170d 24px);
  border: 3px solid #1a1009;
}
/* Queen: Bamboo-mat / wood floor */
.room-queen .floor-surface {
  background: repeating-linear-gradient(0deg, #422d1a, #422d1a 10px, #2f2012 10px, #2f2012 12px);
}
/* Deluxe: Luxury white marble */
.room-deluxe .floor-surface {
  background: linear-gradient(135deg, #f0f0f0 0%, #d8d8d8 30%, #e8e8e8 70%, #c0c0c0 100%);
  background-image: linear-gradient(rgba(212,175,55,0.06) 1.5px, transparent 1.5px),
                    linear-gradient(90deg, rgba(212,175,55,0.06) 1.5px, transparent 1.5px);
  background-size: 50px 50px;
}

/* Rug / Carpet styling */
.floor-rug {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 300px;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  z-index: 2;
}
.rug-pattern {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.room-executive .floor-rug {
  background: #2b2b30;
  border: 4px solid #c5a059;
}
.room-executive .rug-pattern {
  background: repeating-radial-gradient(circle, transparent, transparent 15px, rgba(197, 160, 89, 0.08) 15px, rgba(197, 160, 89, 0.08) 30px);
}

.room-queen .floor-rug {
  background: #0e2926;
  border: 4px solid #ffd700;
  border-radius: 50%;
}
.room-queen .rug-pattern {
  background: repeating-conic-gradient(#0e2926 0% 25%, #18443f 25% 50%);
  border-radius: 50%;
}

.room-deluxe .floor-rug {
  background: #6c1a29;
  border: 5px double #ffd700;
}
.room-deluxe .rug-pattern {
  background: linear-gradient(45deg, #52101c 25%, transparent 25%),
              linear-gradient(-45deg, #52101c 25%, transparent 25%),
              linear-gradient(45deg, transparent 75%, #52101c 75%),
              linear-gradient(-45deg, transparent 75%, #52101c 75%);
  background-size: 40px 40px;
}


/* --- HOTSPOTS ADVANCED UI REDESIGN --- */
.tour-hotspot {
  position: absolute;
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000; /* Force overlay visibility */
}
.tour-hotspot .hotspot-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 2px solid #fff;
  box-shadow: 0 0 10px var(--accent-gold), inset 0 0 4px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s;
}
.tour-hotspot .hotspot-dot::after {
  content: '+';
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.tour-hotspot:hover .hotspot-dot {
  transform: scale(1.35);
  background: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px #ffffff, 0 0 5px var(--accent-gold);
}
.tour-hotspot:hover .hotspot-dot::after {
  color: var(--accent-gold);
  text-shadow: none;
}
.tour-hotspot .hotspot-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.5);
  animation: hotspot-pulse 1.8s infinite ease-out;
  pointer-events: none;
}
@keyframes hotspot-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* --- CEILING FAN ROTATION ANIMATION --- */
.ceiling-fan {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateZ(1px);
  width: 120px;
  height: 120px;
  z-index: 10;
  pointer-events: none;
}
.room-executive .ceiling-fan,
.room-queen .ceiling-fan {
  display: block;
}
.fan-cap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #333;
  border: 1px solid #444;
  z-index: 3;
}
.fan-blades {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin-fan 3s linear infinite;
  transform-origin: center center;
}
.fan-blade {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 8px;
  height: 50px;
  background: #222;
  border-radius: 4px;
  transform-origin: bottom center;
  margin-left: -4px;
}
.fan-blade.b-1 { transform: rotate(0deg); }
.fan-blade.b-2 { transform: rotate(120deg); }
.fan-blade.b-3 { transform: rotate(240deg); }

@keyframes spin-fan {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- 3D WINDOW SCENERY PARALLAX DEPTH --- */
.cube-face {
  transform-style: preserve-3d;
}
.scenery-viewport {
  transform: translateZ(-35px) scale(1.15) !important;
  transform-style: preserve-3d;
  overflow: hidden;
}

/* --- HOTSPOT FLOATING LABEL BADGES --- */
.tour-hotspot .hotspot-label-badge {
  position: absolute;
  left: 32px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.5;
  transform: scale(0.9);
  transform-origin: left center;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}
.tour-hotspot:hover .hotspot-label-badge {
  opacity: 1;
  transform: scale(1.05);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* --- WINDOW SUNBEAM OVERLAY --- */
.window-sunbeam {
  display: none;
  position: absolute;
  top: 35px;
  left: 65px;
  width: 270px;
  height: 275px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  transform: translateZ(-5px) rotateY(12deg);
  pointer-events: none;
  z-index: 6;
}
html[data-theme="light"] .window-sunbeam {
  display: block;
}

/* --- DAY MODE LIGHTING OVERRIDES (THEME SYNC) --- */
/* Executive Day Mode Colors */
html[data-theme="light"] .room-executive .cube-face.front,
html[data-theme="light"] .room-executive .cube-face.back,
html[data-theme="light"] .room-executive .cube-face.left,
html[data-theme="light"] .room-executive .cube-face.right {
  background: linear-gradient(to bottom, #dcd5c9, #ebe6dc);
}
html[data-theme="light"] .room-executive .wall-paneling {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
html[data-theme="light"] .room-executive .bed-blanket {
  background: linear-gradient(to bottom, #dedede, #cbccce);
}
html[data-theme="light"] .room-executive .city-scenery .sky-gradient {
  background: linear-gradient(to bottom, #8ecae6, #219ebc);
}
html[data-theme="light"] .room-executive .city-scenery .street-lights {
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
}
html[data-theme="light"] .room-executive .city-scenery .street-lights::before {
  /* Hide night street lights */
  display: none;
}

/* Queen Day Mode Colors */
html[data-theme="light"] .room-queen .cube-face.front,
html[data-theme="light"] .room-queen .cube-face.back,
html[data-theme="light"] .room-queen .cube-face.left,
html[data-theme="light"] .room-queen .cube-face.right {
  background: linear-gradient(to bottom, #e3f2fd, #bbdefb);
}
html[data-theme="light"] .room-queen .garden-scenery .sky-gradient {
  background: linear-gradient(to bottom, #90e0ef, #f7fbfd);
}

/* Deluxe Day Mode Colors */
html[data-theme="light"] .room-deluxe .cube-face.front,
html[data-theme="light"] .room-deluxe .cube-face.back,
html[data-theme="light"] .room-deluxe .cube-face.left,
html[data-theme="light"] .room-deluxe .cube-face.right {
  background: linear-gradient(to bottom, #fcf8f2, #ebe4d8);
}
html[data-theme="light"] .room-deluxe .hills-scenery .sky-gradient {
  background: linear-gradient(to bottom, #a3c4f3, #ffd166, #fffcf2);
}
html[data-theme="light"] .room-deluxe .hills-scenery .hills-silhouette {
  background: #2a6f97;
}
html[data-theme="light"] .room-deluxe .hills-scenery .palace-glow::before {
  background: #014f86;
}
html[data-theme="light"] .room-deluxe .hills-scenery .palace-glow::after {
  opacity: 0.15; /* Dim lights in daytime */
}

/* Disable Bedside Lamp cones in Day Mode */
html[data-theme="light"] .lamp-light-cone,
html[data-theme="light"] .floor-lamp-light {
  opacity: 0;
  display: none;
}
html[data-theme="light"] .cove-lighting {
  box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.4);
}

/* --- CURTAIN BLOWING AND LAPTOP GLOW ANIMATIONS --- */
.curtain-left {
  animation: blow-curtain-l 4s ease-in-out infinite alternate;
  transform-origin: top left;
}
.curtain-right {
  animation: blow-curtain-r 4s ease-in-out infinite alternate;
  transform-origin: top right;
}

@keyframes blow-curtain-l {
  0% { transform: rotate(0deg) skewX(0deg); }
  100% { transform: rotate(1deg) skewX(2deg) scaleX(0.98); }
}
@keyframes blow-curtain-r {
  0% { transform: rotate(0deg) skewX(0deg); }
  100% { transform: rotate(-1deg) skewX(-2deg) scaleX(0.98); }
}

.laptop-screen::after {
  animation: screen-pulse 2s infinite ease-in-out alternate;
}
@keyframes screen-pulse {
  0% { opacity: 0.7; }
  100% { opacity: 0.95; box-shadow: 0 0 6px rgba(0, 210, 255, 0.5); }
}

/* --- 3D Room Customizer Linen & Lights-Off Styles --- */

/* Bed linen fabric overrides */
.room-tour-cube.linen-gold .bed-blanket {
  background: linear-gradient(135deg, #ffd700, #cca100, #997a00) !important;
  border-top: 4px solid #fff5cc !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 -4px 10px rgba(0,0,0,0.3) !important;
}
.room-tour-cube.linen-ruby .bed-blanket {
  background: linear-gradient(135deg, #a22929, #7a1d1d, #5e1111) !important;
  border-top: 4px solid #ff9999 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 -4px 10px rgba(0,0,0,0.3) !important;
}
.room-tour-cube.linen-teal .bed-blanket {
  background: linear-gradient(135deg, #1d4d49, #133a37, #0d2927) !important;
  border-top: 4px solid #66b2ac !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 -4px 10px rgba(0,0,0,0.3) !important;
}

/* Lights-Off Night Mode Overrides */
.room-tour-cube.lights-off .cube-face {
  background: #020203 !important;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.99) !important;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

/* Apply dimming and night light tint filter directly to furniture and wall textures */
.room-tour-cube.lights-off .wall-paneling,
.room-tour-cube.lights-off .bed-headboard,
.room-tour-cube.lights-off .pillow,
.room-tour-cube.lights-off .bed-blanket,
.room-tour-cube.lights-off .wardrobe-cabinet,
.room-tour-cube.lights-off .door-structure,
.room-tour-cube.lights-off .wall-console,
.room-tour-cube.lights-off .bookshelf,
.room-tour-cube.lights-off .study-desk,
.room-tour-cube.lights-off .ergonomic-chair,
.room-tour-cube.lights-off .armchair,
.room-tour-cube.lights-off .tea-table,
.room-tour-cube.lights-off .velvet-sofa,
.room-tour-cube.lights-off .coffee-table,
.room-tour-cube.lights-off .wall-painting,
.room-tour-cube.lights-off .french-window,
.room-tour-cube.lights-off .window-curtains,
.room-tour-cube.lights-off .ceiling-molding,
.room-tour-cube.lights-off .ceiling-recess,
.room-tour-cube.lights-off .ceiling-fan,
.room-tour-cube.lights-off .floor-surface,
.room-tour-cube.lights-off .floor-rug {
  filter: brightness(0.22) contrast(1.15) !important;
  transition: filter 0.5s ease;
}

/* Dim nightstands background directly so child table lamp is not filtered */
.room-tour-cube.lights-off .nightstand {
  background: #050403 !important;
  border-color: #14110f !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.85) !important;
  transition: background 0.5s ease, border-color 0.5s ease;
}

/* Turn off cove lighting gradients */
.room-tour-cube.lights-off .cove-lighting {
  box-shadow: inset 0 0 45px rgba(0,0,0,0.98) !important;
  transition: box-shadow 0.5s ease;
}

/* Turn off ceiling spot light and ceiling fixtures */
.room-tour-cube.lights-off .recessed-spot {
  background: radial-gradient(circle, #444 40%, #151515 80%) !important;
  box-shadow: none !important;
  transition: all 0.5s ease;
}
.room-tour-cube.lights-off .lantern-body {
  background: rgba(30, 15, 8, 0.45) !important;
  box-shadow: none !important;
  border-color: rgba(212, 175, 55, 0.15) !important;
  transition: all 0.5s ease;
}
.room-tour-cube.lights-off .chandelier-bulbs {
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: none !important;
  transition: all 0.5s ease;
}
.room-tour-cube.lights-off .chandelier-drops {
  opacity: 0.15 !important;
  transition: opacity 0.5s ease;
}

/* Amplify bedside table lamps & light cones in night mode */
.room-tour-cube.lights-off .lamp-shade {
  background: #ffe082 !important;
  box-shadow: 0 0 15px rgba(255, 213, 79, 0.95), 0 2px 4px rgba(0,0,0,0.3) !important;
  border-color: #ffb300 !important;
  transition: all 0.5s ease;
}
.room-tour-cube.lights-off .lamp-light-cone {
  opacity: 1.0 !important;
  background: radial-gradient(ellipse at top, rgba(255, 214, 90, 0.95), rgba(255, 214, 90, 0) 80%) !important;
  box-shadow: 0 0 35px rgba(255, 214, 90, 0.45) !important;
  transition: all 0.5s ease;
}

/* Amplify floor lamp shade & light cone in night mode */
.room-tour-cube.lights-off .floor-lamp-shade {
  background: radial-gradient(circle at center, #ffe082 30%, #997410 90%) !important;
  box-shadow: 0 0 25px rgba(255, 213, 79, 0.95) !important;
  transition: all 0.5s ease;
}
.room-tour-cube.lights-off .floor-lamp-light {
  opacity: 1.0 !important;
  background: radial-gradient(ellipse at top, rgba(255, 214, 90, 0.85) 0%, rgba(255, 214, 90, 0) 75%) !important;
  transition: all 0.5s ease;
}
.room-tour-cube.lights-off .lounge-floor-lamp::after {
  filter: brightness(0.2) !important;
  transition: filter 0.5s ease;
}

/* Micro-animations and hover pulse effect for customizer control buttons */
.tour-ctrl-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.tour-ctrl-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
.tour-ctrl-btn:active {
  transform: scale(0.95);
}
.tour-ctrl-color {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tour-ctrl-color:hover {
  transform: scale(1.25);
  box-shadow: 0 0 8px #fff;
}
.tour-ctrl-color:active {
  transform: scale(0.9);
}

/* --- PREMIUM COSMETIC STYLING UPGRADES --- */

/* 1. Global Gold Gradient Text Overrides for Titles in Dark Mode */
[data-theme="dark"] .section-title,
[data-theme="dark"] h1,
[data-theme="dark"] h2 {
  background: linear-gradient(135deg, #ffffff 10%, var(--accent-gold) 65%, var(--accent-gold-dark) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.12);
}

/* 2. Premium Golden Scrollbar for Modern Browsers */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--accent-gold-light), var(--accent-gold-dark));
  border-radius: 4px;
  border: 1px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* 3. High-End Custom Input Fields & Selects Dropdowns */
input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  color: white !important;
  font-family: var(--font-sans) !important;
  outline: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* Fix option visibility in dropdown menus on all browsers / OS platforms */
select option,
select optgroup {
  background-color: #050505 !important;
  color: #d4af37 !important;
}

/* Specific styling for when data-theme="light" is active */
[data-theme="light"] select option,
[data-theme="light"] select optgroup {
  background-color: #fdfbf7 !important;
  color: #1c1c1c !important;
}

/* Ensure that dark selects override and keep dark options in all themes */
select.bg-neutral-950 option,
.bg-neutral-950 option,
select.bg-neutral-900 option,
.bg-neutral-900 option {
  background-color: #050505 !important;
  color: #d4af37 !important;
}

/* 4. Custom-Styled Route Optimizer Checkboxes */
.landmark-chip .route-opt-checkbox {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 14px !important;
  height: 14px !important;
  border: 1.5px solid var(--accent-gold) !important;
  border-radius: 4px !important;
  background: transparent !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  vertical-align: middle !important;
  margin: 0 !important;
}
.landmark-chip .route-opt-checkbox:checked {
  background: var(--accent-gold) !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5) !important;
}
.landmark-chip .route-opt-checkbox:checked::after {
  content: '✓' !important;
  color: #000 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -52%) !important;
}

/* 5. Custom Range Sliders */
input[type="range"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  height: 6px !important;
  border-radius: 3px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  outline: none !important;
  transition: background 0.3s ease !important;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background: var(--accent-gold) !important;
  cursor: pointer !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8) !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.25) !important;
  background: var(--accent-gold-light) !important;
}

/* 6. Modal Backdrop Fade-in Animation */
@keyframes modalFadeIn {
  from { opacity: 0; backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); }
  to { opacity: 1; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}
.modal-overlay.active {
  animation: modalFadeIn 0.4s ease forwards !important;
}

/* 7. Realistic Spotlight Projection on Floor in 3D Tour */
.floor-surface::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 220, 130, 0.12) 0%, rgba(255, 220, 130, 0) 70%) !important;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.5s ease;
}
.room-tour-cube.lights-off .floor-surface::after {
  opacity: 0.03 !important;
}

/* 8. Floating Gold Dust Motes animation inside 3D Viewport */
.dust-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
  overflow: hidden;
}
.dust-mote {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 220, 130, 0.5);
  border-radius: 50%;
  filter: blur(0.5px);
  box-shadow: 0 0 4px rgba(255, 220, 130, 0.7);
}
.mote-1 { top: 20%; left: 15%; animation: float-dust-1 8s infinite ease-in-out alternate; }
.mote-2 { top: 60%; left: 80%; animation: float-dust-2 12s infinite ease-in-out alternate; }
.mote-3 { top: 40%; left: 50%; animation: float-dust-3 10s infinite ease-in-out alternate; }
.mote-4 { top: 80%; left: 20%; animation: float-dust-1 14s infinite ease-in-out alternate; }
.mote-5 { top: 10%; left: 70%; animation: float-dust-2 9s infinite ease-in-out alternate; }
.mote-6 { top: 70%; left: 45%; animation: float-dust-3 11s infinite ease-in-out alternate; }

@keyframes float-dust-1 {
  0% { transform: translate(0, 0) scale(0.8); opacity: 0.15; }
  50% { transform: translate(25px, -30px) scale(1.2); opacity: 0.7; }
  100% { transform: translate(50px, -10px) scale(0.9); opacity: 0.25; }
}
@keyframes float-dust-2 {
  0% { transform: translate(0, 0) scale(1.1); opacity: 0.6; }
  50% { transform: translate(-30px, -20px) scale(0.7); opacity: 0.15; }
  100% { transform: translate(-10px, -45px) scale(1.3); opacity: 0.8; }
}
@keyframes float-dust-3 {
  0% { transform: translate(0, 0) scale(0.9); opacity: 0.25; }
  50% { transform: translate(15px, 20px) scale(1.2); opacity: 0.65; }
  100% { transform: translate(-20px, 10px) scale(0.8); opacity: 0.15; }
}

/* ==========================================
 * 20. PREMIUM UI VISUALS & ANIMATIONS UPGRADES
 * ========================================== */

/* Gliding Active Nav Indicator */
.nav-links {
  position: relative;
}

.nav-link {
  position: relative;
  z-index: 1;
  transition: color var(--transition-fast);
}

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

/* SPA Liquid View Transitions */
.page-view {
  opacity: 0;
  transform: translateY(12px) scale(0.995);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-view.active.fade-in-trigger {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Glass condensation droplets (Monsoon Mode) */
.glass-droplet {
  position: absolute;
  width: 1.5px;
  height: 6px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05));
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 8;
  animation: slideDrop 2.5s cubic-bezier(0.4, 0.2, 0.8, 0.6) forwards;
}

@keyframes slideDrop {
  0% {
    transform: translateY(-8px) scaleY(1);
    opacity: 0;
  }
  15% {
    opacity: 0.6;
    transform: translateY(0px) scaleY(1.2);
  }
  85% {
    opacity: 0.6;
    transform: translateY(calc(var(--drop-height) * 0.9)) scaleY(1.1);
  }
  100% {
    transform: translateY(var(--drop-height)) scaleY(0.8);
    opacity: 0;
  }
}

/* Cinematic 3D Card Tilt & Glare */
.room-card, .menu-item {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.room-card > *, .menu-item > * {
  transform: translateZ(10px);
}

.card-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 220, 130, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room-card:hover .card-glare, .menu-item:hover .card-glare {
  opacity: 1;
}

/* ==========================================================
   26. ELITE ACCORDION DRAWER & BOOKING WIZARD STYLES
   ========================================================== */

/* Accordion panel */
details.accordion-panel {
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  background: var(--bg-glass);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

details.accordion-panel:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-gold);
}

details.accordion-panel summary {
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-gold);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.01);
  transition: background var(--transition-fast);
}

details.accordion-panel summary::-webkit-details-marker {
  display: none;
}

details.accordion-panel summary::after {
  content: '+';
  font-family: monospace;
  font-size: 1.2rem;
  color: var(--text-light);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

details.accordion-panel[open] summary {
  background: rgba(255, 255, 255, 0.03);
}

details.accordion-panel[open] summary::after {
  content: '−';
  transform: rotate(180deg);
  color: var(--accent-gold);
}

details.accordion-panel .accordion-content {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-sm);
  animation: accordionFadeIn 0.3s ease-out;
}

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

/* Booking Wizard */
.booking-wizard-container {
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.wizard-steps-indicator {
  position: relative;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-num {
  box-shadow: 0 0 0 4px rgba(255,255,255,0.02);
}

.step-indicator.active .step-num {
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.wizard-step-panel {
  animation: stepFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Minimalist understated luxury hover effects */
.nav-link::after {
  background: var(--accent-gold) !important;
}

.btn-primary, .btn-secondary, .btn-outline {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast) !important;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary:hover {
  transform: translateY(-1px);
}

/* ==========================================================
   27. IMAGE AND CONTENT PROTECTION (SCREENSHOT & SAVE PREVENTS)
   ========================================================== */
img {
  user-select: none !important;
  -webkit-user-drag: none !important;
  pointer-events: none !important;
}

/* Watermark backdrop covering the page when focus is lost (e.g., screenshot tool triggered) */
body.protected-blur {
  filter: blur(20px) !important;
  transition: filter 0.15s ease-in-out;
}

#protection-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, rgba(12, 12, 14, 0.975) 0%, rgba(5, 5, 6, 0.995) 100%);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--accent-gold);
  font-family: var(--font-serif);
  text-align: center;
  pointer-events: all;
  user-select: none;
  padding: 40px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#protection-overlay.active {
  opacity: 1;
}

#protection-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 120px rgba(212, 175, 55, 0.18);
  pointer-events: none;
  z-index: 1;
  animation: vignette-pulse 5s ease-in-out infinite alternate;
}

@keyframes vignette-pulse {
  0% { opacity: 0.45; }
  100% { opacity: 1; }
}

.protection-card {
  position: relative;
  z-index: 2;
  background: rgba(18, 18, 20, 0.75);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 28px;
  padding: 55px 45px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 30px 65px -15px rgba(0, 0, 0, 0.85), 0 0 45px rgba(212, 175, 55, 0.06);
  transform: scale(0.93) translateY(10px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#protection-overlay.active .protection-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.protection-logo-container {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.protection-logo-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 50%;
  animation: spin-slow 16s linear infinite;
}

.protection-logo-ring::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-gold);
  transform: translateX(-50%);
}

@keyframes spin-slow {
  100% { transform: rotate(360deg); }
}

.protection-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 3.5px;
  background: linear-gradient(135deg, #ffffff 20%, var(--accent-gold) 75%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.protection-subtitle {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 30px;
  opacity: 0.88;
}

.protection-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Upgraded Premium Glassmorphic HUD Toast Notification */
.premium-hud-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0.95);
  z-index: 999999;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 40px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.premium-hud-toast.active {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
}

.premium-hud-toast-icon {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-gold);
  display: inline-block;
  animation: pulse-dot 1.5s infinite alternate;
}

@keyframes pulse-dot {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

/* Disable text selection globally to prevent copying page content */
body {
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

/* Permit standard selection inside text inputs, select elements, and textareas to ensure booking form fields remain fully editable */
input, textarea, select, [contenteditable="true"], option, optgroup {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}

/* Hide entire content during print commands (Ctrl+P / Save as PDF) and display warning */
@media print {
  body {
    display: none !important;
  }
  html {
    background: #0a0a0b !important;
  }
  html::after {
    content: "Content Protected. Printing and PDF saving are disabled on this luxury portal for confidentiality and security.";
    font-family: 'Playfair Display', serif, system-ui;
    font-size: 20px;
    color: #D4AF37 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100vh !important;
    text-align: center !important;
    padding: 40px !important;
    box-sizing: border-box !important;
  }
}

/* Tiled golden watermark repeating across the viewport (completely non-interactive) */
.watermark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* Allows pointer interactions to pass through to sections underneath */
  z-index: 9998; /* Just below the security screen overlay */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'><text fill='rgba(212, 175, 55, 0.035)' font-family='serif' font-size='10' x='30' y='150' transform='rotate(-28 30 150)' letter-spacing='2.5'>SAI VIHAAR INN &amp; SUITES</text></svg>");
  background-repeat: repeat;
  user-select: none !important;
  -webkit-user-drag: none !important;
}

/* Pre-Arrival Room Sensory Console */
.sensory-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.sensory-card:hover {
  background: rgba(212, 175, 55, 0.04) !important;
  border-color: rgba(212, 175, 55, 0.45) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.08) !important;
}
.sensory-card:hover .sensory-card-tip {
  opacity: 0.8 !important;
}
.sensory-card:active {
  transform: scale(0.98);
}
.sensory-card.active-aroma,
.sensory-card.active-chroma,
.sensory-card.active-soma,
.sensory-card.active-aura {
  border-color: var(--accent-gold) !important;
  background: rgba(212, 175, 55, 0.05) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1) !important;
}





/* ==========================================================================
   ROOM TARIFF & SEASONAL PRICING MODULE
   ========================================================================== */

.tariff-season-banner {
  max-width: 900px;
  margin: 0 auto 48px auto;
  padding: 28px 32px;
  border-radius: var(--border-radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.tariff-season-banner-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tariff-season-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tariff-season-pill-peak {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.tariff-season-pill-discount {
  background: rgba(76, 175, 80, 0.12);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.35);
}

.tariff-season-pill-neutral {
  background: rgba(154, 149, 140, 0.12);
  color: var(--text-light);
  border: 1px solid var(--border-glass);
}

.tariff-season-adjust {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tariff-season-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

.tariff-countdown {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--border-glass);
}

.tariff-countdown-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.tariff-countdown-units {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.tariff-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-glass);
}

.tariff-countdown-unit span {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.1;
}

.tariff-countdown-unit small {
  font-size: 0.6rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.tariff-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.tariff-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.18);
}

.tariff-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.tariff-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.tariff-best-seller-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--accent-gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.tariff-card-body {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px 22px;
  flex-grow: 1;
}

.tariff-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.tariff-card-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.tariff-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--border-glass);
}

.tariff-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.tariff-price-original {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.tariff-price-current {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.tariff-price-per-night {
  font-size: 0.68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tariff-savings-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.66rem;
  font-weight: 700;
}

.tariff-savings-good {
  background: rgba(76, 175, 80, 0.12);
  color: #4CAF50;
}

.tariff-savings-peak {
  background: rgba(212, 175, 55, 0.14);
  color: var(--accent-gold);
}

.tariff-savings-neutral {
  background: rgba(154, 149, 140, 0.12);
  color: var(--text-light);
}

.tariff-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tariff-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-light);
}

.tariff-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tariff-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-secondary);
}

.tariff-feature-item svg {
  flex-shrink: 0;
  color: var(--accent-gold);
}

.tariff-extra-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border-glass);
  font-size: 0.76rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.tariff-extra-person strong {
  color: var(--accent-gold);
  font-weight: 700;
}

.tariff-reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: 10px;
  background: #25D366;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-fast);
  margin-top: auto;
}

.tariff-reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.tariff-policies-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-align: center;
  margin: 0 0 28px 0;
}

.tariff-policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 64px;
}

.tariff-policy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px 16px;
  border-radius: var(--border-radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  transition: var(--transition-fast);
}

.tariff-policy-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.tariff-policy-card svg {
  color: var(--accent-gold);
}

.tariff-policy-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
}

.tariff-policy-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tariff-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.tariff-cta-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.tariff-cta-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0 0 26px 0;
}

.tariff-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tariff-error-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .tariff-season-banner {
    padding: 22px 18px;
  }
  .tariff-countdown-units {
    gap: 8px;
  }
  .tariff-countdown-unit {
    min-width: 48px;
  }
  .tariff-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .tariff-cta-inner {
    padding: 36px 22px;
  }
  .tariff-cta-title {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   ANAND BHAVAN FULL MENU (Category Accordion)
   ========================================================================== */

.ab-menu-panel {
  margin-bottom: 12px;
}

.ab-menu-cat-name {
  font-size: 1rem;
}

.ab-menu-availability {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ab-menu-note {
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0 0 12px 0;
}

.ab-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 4px 24px;
}

.ab-menu-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--border-glass);
  font-size: 0.82rem;
}

.ab-menu-item-name {
  color: var(--text-secondary);
}

.ab-menu-item-price {
  color: var(--accent-gold);
  font-weight: 700;
  white-space: nowrap;
}

.ab-menu-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.ab-menu-gst {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 0 0 8px 0;
}

.ab-menu-restaurant {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.ab-menu-address {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}

.ab-menu-error {
  text-align: center;
  padding: 30px;
  color: var(--text-light);
  font-size: 0.85rem;
}

.ab-full-menu-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-align: center;
  margin: 56px 0 8px 0;
}

.ab-full-menu-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0 0 28px 0;
}

@media (max-width: 640px) {
  .ab-menu-grid {
    grid-template-columns: 1fr;
  }
}
