/* ==========================================================================
   HOTEL GANGADHAR — LUXURY HIMALAYAN RETREAT DESIGN SYSTEM
   Apple-Style Cinematic Scroll Experience & Mountain Hospitality
   ========================================================================== */

:root {
  /* Hotel Gangadhar Signature Color Palette (Alpine Mountain Green + Hotel Crimson + Saffron Amber) */
  --hotel-crimson: #c2292e;
  --hotel-crimson-deep: #8f1519;
  --hotel-crimson-bright: #e5383b;
  --hotel-crimson-glow: rgba(194, 41, 46, 0.45);
  
  --emerald-mountain: #2d6a4f;
  --emerald-mountain-bright: #52b788;
  --emerald-glow: rgba(82, 183, 136, 0.35);

  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.35);
  
  --emerald-accent: #10b981;

  --bg-dark: transparent;
  --bg-surface: rgba(16, 22, 18, 0.45);
  --bg-surface-elevated: rgba(20, 28, 22, 0.55);
  --bg-glass: rgba(16, 22, 18, 0.48);
  --bg-glass-strong: rgba(10, 14, 11, 0.62);
  --bg-glass-card: rgba(18, 26, 20, 0.46);

  --text-primary: #f8fafc;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-light: rgba(255, 255, 255, 0.22);
  --border-gold: rgba(245, 158, 11, 0.45);
  --border-emerald: rgba(82, 183, 136, 0.45);
  --border-red: rgba(194, 41, 46, 0.55);

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --nav-height: 72px;
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  background-color: #080c09;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Custom Selection & Scrollbar */
::selection {
  background: var(--gold-primary);
  color: #000;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Utility Helpers */
.text-gold { color: var(--gold-primary); }
.text-green { color: var(--emerald-accent); }
.hidden { display: none !important; }

/* ==========================================================================
   SOUNDSCAPE TOGGLE PILL
   ========================================================================== */
.soundscape-pill {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.soundscape-pill:hover {
  border-color: var(--gold-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.soundscape-pill.playing {
  border-color: var(--gold-primary);
  background: rgba(229, 169, 60, 0.15);
  color: var(--gold-light);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(7, 8, 11, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease-smooth);
}

.nav-glass.scrolled {
  background: rgba(7, 8, 11, 0.92);
  border-bottom-color: var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-crest {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(229, 169, 60, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.brand-logo:hover .brand-crest {
  border-color: var(--gold-primary);
  box-shadow: 0 0 22px rgba(229, 169, 60, 0.45);
  transform: scale(1.05);
}

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

.footer-crest {
  width: 54px;
  height: 54px;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Mountain Weather Widget */
.weather-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
}

.weather-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.weather-temp {
  font-weight: 700;
  color: var(--text-primary);
}

.weather-loc {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.rating-pill {
  background: rgba(229, 169, 60, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(229, 169, 60, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ==========================================================================
   TOPBAR ACTIONS & LUXURY MENU TOGGLE (MINIMAL CLEAN FRONT)
   ========================================================================== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-primary-reserve {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--hotel-crimson), var(--hotel-crimson-deep));
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 18px var(--hotel-crimson-glow);
}

.btn-primary-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(229, 56, 59, 0.6);
  background: linear-gradient(135deg, var(--hotel-crimson-bright), var(--hotel-crimson));
}

/* Luxury Menu Button (Front Visible Trigger) */
.nav-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: #fff;
  transition: all 0.3s var(--ease-smooth);
}

.nav-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.menu-burger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 14px;
}

.menu-burger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all 0.25s var(--ease-smooth);
}

.nav-menu-toggle:hover .menu-burger-icon span {
  background: #fff;
}

.menu-burger-label {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
}

/* ==========================================================================
   OFF-CANVAS LUXURY GLASS MENU DRAWER
   ========================================================================== */
.menu-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2900;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.menu-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 520px;
  z-index: 3000;
  background: rgba(11, 16, 13, 0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid var(--border-gold);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.85);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease-cinematic), visibility 0.45s;
  overflow-y: auto;
}

.menu-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.menu-drawer-inner {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.menu-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

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

.drawer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
}

.drawer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  display: block;
}

.drawer-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  display: block;
}

.menu-drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-smooth);
}

.menu-drawer-close:hover {
  background: rgba(229, 56, 59, 0.8);
  transform: rotate(90deg);
}

/* Weather & Altitude HUD Card inside Drawer */
.drawer-weather-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.weather-meta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Navigation Links inside Drawer */
.drawer-nav-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  transition: all 0.2s var(--ease-smooth);
}

.drawer-nav-link .d-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-light);
  opacity: 0.8;
  width: 20px;
}

.drawer-nav-link .d-label {
  color: var(--text-primary);
}

.drawer-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(6px);
  color: #fff;
}

.drawer-nav-link:hover .d-label {
  color: var(--gold-light);
}

/* Drawer Action Buttons */
.drawer-action-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s var(--ease-smooth);
}

.drawer-btn.brochure {
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.2), rgba(217, 119, 6, 0.3));
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
}

.drawer-btn.brochure:hover {
  background: linear-gradient(135deg, var(--gold-primary), #d97706);
  color: #000;
}

.drawer-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.drawer-btn.call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: #fff;
}

.drawer-btn.wa {
  background: rgba(37, 211, 102, 0.18);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #34d399;
}

/* Drawer Portals */
.drawer-portals {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-portal-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.drawer-portal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.drawer-portal-links a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s var(--ease-smooth);
}

.drawer-portal-links a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* ==========================================================================
   GLOBAL FIXED 300-FRAME SCROLLING DRONE BACKGROUND
   ========================================================================== */
.global-canvas-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #080c09;
}

#scroll-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Atmospheric Gradients & Vignette over the fixed video (Vivid & Clear) */
.global-canvas-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(8, 12, 9, 0.10) 0%, rgba(8, 12, 9, 0.35) 60%, rgba(8, 12, 9, 0.58) 100%);
  pointer-events: none;
}

.site-main {
  position: relative;
  z-index: 2;
  width: 100%;
  background: transparent;
}

.global-canvas-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Preloader State */
.canvas-loader {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.5s var(--ease-smooth);
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(229, 169, 60, 0.15);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.loader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.loader-pct {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.loader-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Nav Progress Bar */
.nav-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hotel-crimson), var(--emerald-mountain-bright), var(--gold-primary));
  transition: width 0.08s linear;
}

/* ==========================================================================
   SECTION 1: HERO SHOWCASE (FLOATING OVER SCROLLING BACKGROUND)
   ========================================================================== */
.hero-showcase-section {
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
  position: relative;
  z-index: 10;
}

.hero-showcase-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 22, 18, 0.85);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.badge-rating {
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.18);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 800;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero-lead-text {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 780px;
  margin-bottom: 34px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

.btn-hero-main {
  background: linear-gradient(135deg, var(--hotel-crimson), var(--hotel-crimson-deep));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px var(--hotel-crimson-glow);
  transition: all 0.3s var(--ease-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-main:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--hotel-crimson-bright), var(--hotel-crimson));
  box-shadow: 0 12px 35px rgba(229, 56, 59, 0.6);
}

.btn-hero-brochure {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-weight: 700;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: var(--radius-full);
  font-size: 1.02rem;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.15);
}

.btn-hero-brochure:hover {
  background: rgba(245, 158, 11, 0.28);
  border-color: var(--gold-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-hero-call {
  background: rgba(16, 22, 18, 0.85);
  color: #fff;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(14px);
  font-weight: 700;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: var(--radius-full);
  font-size: 1.02rem;
  transition: all 0.3s var(--ease-smooth);
}

.btn-hero-call:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-hero-wa {
  background: rgba(37, 211, 102, 0.16);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  backdrop-filter: blur(14px);
  font-weight: 700;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: var(--radius-full);
  font-size: 1.02rem;
  transition: all 0.3s var(--ease-smooth);
}

.btn-hero-wa:hover {
  background: rgba(37, 211, 102, 0.28);
  transform: translateY(-2px);
}

.hero-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-pill {
  background: rgba(16, 22, 18, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.scroll-flight-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.scroll-mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ==========================================================================
   GLOBAL SECTION HEADERS & LAYOUT
   ========================================================================== */
section {
  position: relative;
  z-index: 10;
  padding: 100px 24px;
  background: transparent;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ==========================================================================
   SECTION 2: BRAND MANIFESTO
   ========================================================================== */
.manifesto-section {
  background: transparent;
  text-align: center;
}

.manifesto-container {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 1080px;
  margin: 20px auto 30px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.manifesto-subtext {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 820px;
  margin: 0 auto 60px;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(16, 22, 18, 0.48);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s var(--ease-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: rgba(24, 34, 28, 0.65);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 3: STORY & REAL PROPERTY
   ========================================================================== */
.story-section {
  background: transparent;
}

.story-grid-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.story-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease-cinematic);
}

.story-image-frame:hover .story-img {
  transform: scale(1.03);
}

.story-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  font-size: 1.5rem;
}

.story-floating-badge strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
}

.story-floating-badge small {
  font-size: 0.75rem;
  color: var(--gold-light);
}

.story-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.story-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(16, 22, 18, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.feat-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.story-feat-item strong {
  display: block;
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 2px;
}

.story-feat-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   SECTION 4: ACCOMMODATIONS & SUITES
   ========================================================================== */
.suites-section {
  background: transparent;
}

.room-tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.room-tab {
  background: rgba(16, 22, 18, 0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.room-tab:hover {
  border-color: var(--border-light);
  color: #fff;
}

.room-tab.active {
  background: linear-gradient(135deg, var(--hotel-crimson), var(--hotel-crimson-deep));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 18px var(--hotel-crimson-glow);
}

.suites-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.room-card {
  background: rgba(16, 22, 18, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-smooth);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  background: rgba(24, 34, 28, 0.65);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 25px var(--hotel-crimson-glow);
}

.room-card.featured {
  border-color: var(--hotel-crimson-bright);
  background: linear-gradient(180deg, rgba(34, 18, 22, 0.58) 0%, rgba(21, 13, 15, 0.58) 100%);
  position: relative;
  box-shadow: 0 15px 40px rgba(194, 41, 46, 0.25);
}

.room-tier-badge.gold {
  background: linear-gradient(135deg, var(--hotel-crimson), var(--hotel-crimson-deep));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.room-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-cinematic);
}

.room-card:hover .room-media img {
  transform: scale(1.06);
}

.room-tier-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 12, 16, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.room-tier-badge.gold {
  background: linear-gradient(135deg, #e5a93c, #d97706);
  color: #000;
  border: none;
}

.room-price-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10, 12, 16, 0.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.room-price-overlay .currency { font-size: 0.85rem; color: var(--gold-primary); font-weight: 700; }
.room-price-overlay .amount { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #fff; }
.room-price-overlay .unit { font-size: 0.72rem; color: var(--text-muted); }

.room-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-meta-top {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.room-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.room-summary {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.room-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.perk-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.room-card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.btn-card-book {
  background: linear-gradient(135deg, var(--hotel-crimson), var(--hotel-crimson-deep));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 14px var(--hotel-crimson-glow);
}

.btn-card-book:hover {
  background: linear-gradient(135deg, var(--hotel-crimson-bright), var(--hotel-crimson));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 56, 59, 0.55);
}

.btn-card-wa {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
}

.btn-card-wa:hover {
  background: rgba(16, 185, 129, 0.25);
  color: #fff;
}

/* ==========================================================================
   SECTION 5: GASTRONOMY & HIMACHALI DINING
   ========================================================================== */
.dining-section {
  background: transparent;
}

.dining-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.review-quote-box {
  background: rgba(245, 158, 11, 0.12);
  backdrop-filter: blur(12px);
  border-left: 3px solid var(--gold-primary);
  padding: 18px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0 32px;
}

.quote-stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.quote-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
}

.quote-src {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.dining-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dining-item {
  display: flex;
  gap: 12px;
  background: rgba(16, 22, 18, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  border-radius: var(--radius-md);
}

.dish-emoji {
  font-size: 1.8rem;
  line-height: 1;
}

.dining-item strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 2px;
}

.dining-item small {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.dining-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.dining-frame img {
  width: 100%;
  display: block;
}

.dining-glass-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.tag-live {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.dining-glass-card strong {
  color: #fff;
  font-size: 0.92rem;
}

.dining-glass-card small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ==========================================================================
   SECTION 6: SIGHTSEEING & HIMALAYAN EXCURSIONS
   ========================================================================== */
.adventure-section {
  padding: 40px 24px 100px;
  background: transparent;
}

.adventure-banner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  min-height: 520px;
  display: flex;
  align-items: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.adventure-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adventure-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 9, 0.85) 0%, rgba(8, 12, 9, 0.60) 45%, rgba(8, 12, 9, 0.2) 100%);
}

.adventure-content {
  position: relative;
  z-index: 5;
  max-width: 640px;
  padding: 60px 48px;
}

.adventure-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 12px 0 18px;
}

.adventure-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.adventure-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.adv-feat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 22, 18, 0.52);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: var(--radius-md);
}

.adv-icon { font-size: 1.4rem; }
.adv-feat-pill strong { display: block; font-size: 0.86rem; color: #fff; }
.adv-feat-pill small { font-size: 0.72rem; color: var(--text-muted); }

.adventure-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-adv-book {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--hotel-crimson), var(--hotel-crimson-deep));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 6px 20px var(--hotel-crimson-glow);
}

.btn-adv-book:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--hotel-crimson-bright), var(--hotel-crimson));
  box-shadow: 0 10px 25px rgba(229, 56, 59, 0.6);
}

.btn-adv-call {
  background: rgba(16, 22, 18, 0.52);
  color: #fff;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
}

/* Excursions Cards */
.excursions-container {
  max-width: var(--container-max);
  margin: 60px auto 0;
}

.excursions-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.excursions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.excursion-card {
  background: rgba(16, 22, 18, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease-smooth);
}

.excursion-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: rgba(24, 34, 28, 0.68);
}

.exc-dist {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.excursion-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.excursion-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 7: AMENITIES GRID
   ========================================================================== */
.amenities-section {
  background: transparent;
}

.amenities-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.amenity-card {
  background: rgba(16, 22, 18, 0.48);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px 26px;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.amenity-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: rgba(24, 34, 28, 0.68);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.amenity-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   SECTION 8: 100% REAL PHOTO GALLERY
   ========================================================================== */
.gallery-section {
  background: transparent;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gal-filter {
  background: rgba(16, 22, 18, 0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.gal-filter.active, .gal-filter:hover {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
  border-color: var(--border-light);
}

.gallery-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gal-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-cinematic);
}

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

.gal-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 9, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

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

/* ==========================================================================
   SECTION 9: REVIEWS & 4.9★ RATING SHOWCASE
   ========================================================================== */
.reviews-section {
  background: transparent;
}

.reviews-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.rating-overview {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(16, 22, 18, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold);
  padding: 16px 28px;
  border-radius: var(--radius-md);
}

.big-score {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stars-gold {
  color: var(--gold-light);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.reviews-external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.review-portal-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all 0.25s var(--ease-smooth);
}

.review-portal-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.review-portal-pill.google:hover {
  border-color: #4285f4;
  box-shadow: 0 0 12px rgba(66, 133, 244, 0.4);
}

.review-portal-pill.justdial:hover {
  border-color: #ff6f00;
  box-shadow: 0 0 12px rgba(255, 111, 0, 0.4);
}

.review-portal-pill.booking:hover {
  border-color: #003580;
  box-shadow: 0 0 12px rgba(0, 53, 128, 0.4);
}

.review-portal-pill.agoda:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease-smooth);
}

.testi-card {
  min-width: calc(50% - 12px);
  background: rgba(16, 22, 18, 0.52);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-stars {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5a93c, #d97706);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.testi-author small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-smooth);
}

.slider-btn:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.slider-dots .dot.active {
  background: var(--gold-primary);
  width: 24px;
  border-radius: 5px;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 1000px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 16px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==========================================================================
   SECTION 10: INTERACTIVE INSTANT BOOKING CALCULATOR
   ========================================================================== */
.booking-section {
  background: transparent;
  padding: 100px 24px;
}

.booking-card-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
}

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

.booking-calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: rgba(16, 22, 18, 0.52);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.12);
}

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

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-input {
  background: rgba(10, 14, 11, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s var(--ease-smooth);
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-primary);
}

/* Calculator Summary Card */
.calculator-summary {
  background: rgba(20, 28, 22, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.summary-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.s-label { color: var(--text-muted); }
.s-val { color: #fff; font-weight: 600; }

.summary-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 18px 0;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 26px;
}

.total-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.total-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
}

.booking-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-book-wa {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-book-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-book-call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
}

.partner-portals {
  margin-top: 24px;
  text-align: center;
}

.partner-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.partner-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
}

.partner-pill:hover {
  transform: translateY(-2px);
  color: #fff;
}

.partner-pill.booking:hover {
  background: rgba(0, 53, 128, 0.4);
  border-color: #003580;
  box-shadow: 0 0 10px rgba(0, 53, 128, 0.4);
}

.partner-pill.agoda:hover {
  background: rgba(56, 189, 248, 0.25);
  border-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.partner-pill.google:hover {
  background: rgba(66, 133, 244, 0.25);
  border-color: #4285f4;
  box-shadow: 0 0 10px rgba(66, 133, 244, 0.4);
}

.partner-pill.justdial:hover {
  background: rgba(255, 111, 0, 0.25);
  border-color: #ff6f00;
  box-shadow: 0 0 10px rgba(255, 111, 0, 0.4);
}

.summary-guarantee {
  margin-top: 20px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   SECTION 11: LOCATION & TRAVEL GUIDE
   ========================================================================== */
.location-section {
  background: transparent;
}

.location-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.address-card {
  display: flex;
  gap: 16px;
  background: rgba(16, 22, 18, 0.52);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 24px 0 32px;
}

.addr-icon { font-size: 1.8rem; }
.address-card strong { display: block; font-size: 1.05rem; color: #fff; margin-bottom: 4px; }
.address-card p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

.distances-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.dist-box {
  background: rgba(16, 22, 18, 0.46);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  border-radius: var(--radius-md);
}

.d-city { display: block; font-weight: 700; font-size: 0.92rem; color: #fff; margin-bottom: 4px; }
.d-km { font-size: 0.8rem; color: var(--gold-primary); }

.directions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-directions {
  background: linear-gradient(135deg, #e5a93c, #d97706);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
}

.btn-call-nav {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
}

.map-embed-frame {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   SECTION 12: LUXURY FOOTER
   ========================================================================== */
.site-footer {
  background: rgba(8, 12, 9, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 24px 30px;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  display: block;
}

.footer-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  display: block;
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 360px;
}

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

.social-link {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.2s var(--ease-smooth);
}

.social-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.footer-head {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s var(--ease-smooth);
}

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

.contact-line {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.contact-line a {
  color: var(--gold-primary);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
}

.footer-bottom-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   SCROLL REVEAL & MICRO-ANIMATION SYSTEM (APPLE-STYLE SMOOTH MOTION)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-cinematic), transform 0.85s var(--ease-cinematic);
  will-change: opacity, transform;
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-45px);
}

[data-reveal="right"] {
  transform: translateX(45px);
}

[data-reveal="zoom"] {
  transform: scale(0.92) translateY(20px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Staggered Child Delays */
[data-stagger="1"] { transition-delay: 0.1s; }
[data-stagger="2"] { transition-delay: 0.2s; }
[data-stagger="3"] { transition-delay: 0.3s; }
[data-stagger="4"] { transition-delay: 0.4s; }
[data-stagger="5"] { transition-delay: 0.5s; }
[data-stagger="6"] { transition-delay: 0.6s; }

/* Subtle Parallax Floating Badge */
.parallax-badge {
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
  will-change: transform;
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 62px;
  z-index: 950;
  background: rgba(7, 8, 11, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  padding: 8px 16px;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 8px;
}

.mob-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

.mob-bar-btn.call {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-subtle);
}

.mob-bar-btn.whatsapp {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.mob-bar-btn.book {
  background: linear-gradient(135deg, var(--hotel-crimson), var(--hotel-crimson-deep));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .story-grid-container,
  .dining-container,
  .location-container,
  .booking-calculator-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .testi-card {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 18px;
  }
  .soundscape-pill {
    display: none; /* Keep screen clean on mobile */
  }
  .mobile-sticky-bar {
    display: grid;
  }
  .site-footer {
    padding-bottom: 90px; /* Space for mobile sticky bar */
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .dining-highlights-grid,
  .distances-grid,
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .brochure-callout-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .brochure-callout-content {
    flex-direction: column;
    align-items: center;
  }
  .brochure-callout-actions {
    width: 100%;
    flex-direction: column;
  }
  .brochure-sheet-top-bar {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    text-align: center;
  }
  .sheet-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .sheet-logo-group {
    flex-direction: column;
    align-items: center;
  }
  .sheet-amenities-grid {
    grid-template-columns: 1fr;
  }
  .sheet-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center !important;
  }
  .sheet-footer div {
    text-align: center !important;
  }
}

/* ==========================================================================
   DIGITAL TRAVEL BROCHURE CALLOUT & MODAL SYSTEM
   ========================================================================== */
.brochure-callout-card {
  margin-top: 48px;
  background: rgba(16, 22, 18, 0.58);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.15);
}

.brochure-callout-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brochure-icon-wrap {
  font-size: 2.4rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brochure-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}

.brochure-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.brochure-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 620px;
  margin: 0;
}

.brochure-callout-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-brochure-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e5a93c, #d97706);
  color: #000;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
  box-shadow: 0 4px 15px rgba(229, 169, 60, 0.3);
}

.btn-brochure-dl:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 169, 60, 0.5);
}

.btn-brochure-preview {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}

.btn-brochure-preview:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-brochure-wa {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
}

.btn-brochure-wa:hover {
  background: rgba(37, 211, 102, 0.28);
  transform: translateY(-2px);
}

/* ==========================================================================
   INTERACTIVE BROCHURE MODAL (ON-SCREEN SHEET)
   ========================================================================== */
.brochure-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.brochure-modal.open {
  display: flex;
}

.brochure-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brochure-modal-dialog {
  position: relative;
  z-index: 2;
  background: #0f172a;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(245, 158, 11, 0.2);
  animation: modalFadeIn 0.3s var(--ease-smooth);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.brochure-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-smooth);
}

.brochure-modal-close:hover {
  background: rgba(229, 56, 59, 0.8);
  transform: rotate(90deg);
}

.brochure-sheet-top-bar {
  background: rgba(24, 33, 47, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sheet-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

.sheet-actions {
  display: flex;
  gap: 10px;
  margin-right: 32px;
}

.btn-sheet-dl, .btn-sheet-print, .btn-sheet-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}

.btn-sheet-dl {
  background: var(--gold-primary);
  color: #000;
  border: none;
}

.btn-sheet-print {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  color: #fff;
}

.btn-sheet-wa {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #34d399;
}

.brochure-sheet-container {
  padding: 32px;
  overflow-y: auto;
  color: #e2e8f0;
  font-family: var(--font-body);
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sheet-logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sheet-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
}

.sheet-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.sheet-tagline {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-top: 2px;
}

.sheet-meta-line {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.sheet-contact-card {
  text-align: right;
}

.sheet-rating {
  font-weight: 800;
  color: var(--gold-light);
  font-size: 0.88rem;
}

.sheet-phone {
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
  margin-top: 2px;
}

.sheet-wa {
  font-size: 0.78rem;
  color: #34d399;
  font-weight: 700;
}

.sheet-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin: 20px 0;
}

.sheet-intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
}

.sheet-section-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 20px 0 12px;
  border-left: 3px solid var(--gold-primary);
  padding-left: 10px;
}

.sheet-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sheet-table th {
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  text-align: left;
  font-weight: 800;
  color: #fff;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sheet-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  vertical-align: middle;
}

.sheet-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold-light);
}

.sheet-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.sheet-amenity-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.sheet-amenity-box strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 4px;
}

.sheet-amenity-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.sheet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-top: 24px;
  font-size: 0.84rem;
}

/* ==========================================================================
   PRINT STYLES FOR DIRECT BROWSER PDF EXPORT
   ========================================================================== */
@media print {
  body * {
    visibility: hidden;
  }
  .brochure-sheet-container, .brochure-sheet-container * {
    visibility: visible;
  }
  .brochure-modal {
    position: absolute;
    left: 0;
    top: 0;
    display: block !important;
    background: #fff !important;
    padding: 0 !important;
  }
  .brochure-modal-overlay,
  .brochure-modal-close,
  .brochure-sheet-top-bar {
    display: none !important;
  }
  .brochure-modal-dialog {
    border: none !important;
    box-shadow: none !important;
    background: #fff !important;
    max-width: 100% !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .brochure-sheet-container {
    color: #000 !important;
    padding: 20px !important;
    background: #fff !important;
  }
  .sheet-title, .sheet-amenity-box strong, .sheet-section-title {
    color: #000 !important;
  }
  .sheet-table th {
    background: #f1f5f9 !important;
    color: #000 !important;
  }
  .sheet-table td {
    color: #333 !important;
    border-color: #e2e8f0 !important;
  }
  .sheet-price {
    color: #c2292e !important;
  }
  .sheet-amenity-box {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
  }
  .sheet-footer {
    background: #f8fafc !important;
    border-color: #d97706 !important;
    color: #000 !important;
  }
}

