/* ==========================================================================
   Shri Mahakaleshwar Bhakta Niwas — Cinematic Full-Screen Hero & Luxury Redesign
   Award-Winning Heritage Luxury, Background Hero Image + Overlay Text Reveal
   100% Faithful to Brand Colors, Fonts, Images & Devotional Sanctity
   ========================================================================== */

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

:root {
  /* Royal Mandir Heritage Palette */
  --maroon-dark: #2C0403;
  --maroon-deep: #4A0806;
  --maroon-royal: #6E0E0B;
  --maroon-rich: #8C1410;

  /* Sacred Saffron & Metallic Gold */
  --saffron-main: #D35400;
  --saffron-vibrant: #E67E22;
  --gold-primary: #D4AF37;
  --gold-light: #E5C158;
  --gold-shimmer: #F9E08E;
  --gold-glow: rgba(249, 224, 142, 0.45);

  /* Surfaces & Architectural Neutrals */
  --bg-page: #FFFDFC;
  --bg-cream: #FAF5EB;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 253, 248, 0.88);
  --bg-glass-dark: rgba(44, 4, 3, 0.94);
  
  /* Text & Typography */
  --text-main: #24120C;
  --text-sub: #54362A;
  --text-muted: #886C60;
  --border-subtle: #EADBC8;
  --border-gold: rgba(212, 175, 55, 0.48);

  /* Elevation Shadows & Glows */
  --shadow-sm: 0 8px 20px rgba(56, 6, 5, 0.08);
  --shadow-md: 0 16px 36px rgba(56, 6, 5, 0.14);
  --shadow-lg: 0 28px 72px rgba(56, 6, 5, 0.22);
  --shadow-gold-glow: 0 12px 40px rgba(212, 175, 55, 0.35);
  --shadow-card-hover: 0 24px 60px rgba(211, 84, 0, 0.22);

  /* Font Stacks */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Outfit', sans-serif;

  /* Radii & Transitions */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Theme Tokens */
[data-theme="dark"] {
  --bg-page: #0E0605;
  --bg-cream: #160B09;
  --bg-card: #1F120E;
  --bg-glass: rgba(31, 18, 14, 0.92);
  --text-main: #F8EDE6;
  --text-sub: #DCCACB;
  --text-muted: #9E867B;
  --border-subtle: #3A231A;
  --border-gold: rgba(249, 224, 142, 0.38);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section-padding {
  padding: 6.5rem 0;
  position: relative;
}

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

.heritage-pattern-bg {
  background-color: var(--bg-cream);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 16v8M16 20h8' stroke='%23D4AF37' stroke-width='1.1' stroke-linecap='round' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

/* ==========================================================================
   TEXT REVEAL & SCROLL REVEAL ANIMATIONS (AUDIO INSTRUCTION FEATURE)
   ========================================================================== */
@keyframes revealFadeUp {
  0% {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.reveal-fade-up {
  opacity: 0;
  animation: revealFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0.1s);
}

/* Scroll-Reveal Engine Classes for Viewport Detection */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   1. FULL-WIDTH CINEMATIC BACKGROUND HERO (AUDIO INSTRUCTION: IMAGE BEHIND TEXT)
   ========================================================================== */
.hero-cinematic-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 10rem;
  overflow: hidden;
  background-color: var(--maroon-dark);
  color: #FFFDF9;
}

.hero-cinematic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.hero-cinematic-section:hover .hero-cinematic-bg {
  transform: scale(1.08);
}

.hero-cinematic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
              rgba(35, 4, 3, 0.75) 0%, 
              rgba(56, 10, 8, 0.82) 50%, 
              var(--bg-page) 100%);
  z-index: 2;
}

[data-theme="dark"] .hero-cinematic-overlay {
  background: linear-gradient(180deg, 
              rgba(15, 2, 2, 0.82) 0%, 
              rgba(28, 5, 4, 0.88) 55%, 
              var(--bg-page) 100%);
}

.hero-cinematic-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.pill-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.35rem;
  border-radius: 99px;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  background: rgba(249, 224, 142, 0.16);
  color: var(--gold-shimmer);
  border: 1px solid rgba(249, 224, 142, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-subtext-gold {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold-shimmer);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.hero-cinematic-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.12;
  margin-bottom: 1.1rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.65);
}

.hero-gold-divider {
  color: var(--gold-shimmer);
  font-size: 1.4rem;
  letter-spacing: 0.9rem;
  margin-bottom: 1.75rem;
}

.hero-cinematic-desc {
  font-size: 1.22rem;
  color: rgba(255, 253, 249, 0.92);
  line-height: 1.85;
  margin-bottom: 3.25rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

/* Glassmorphic Stats Strip inside Cinematic Hero */
.hero-stats-glass {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(249, 224, 142, 0.3);
  border-radius: 24px;
  padding: 1.75rem 2.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.stat-glass-item {
  text-align: center;
}

.stat-glass-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold-shimmer);
  line-height: 1;
}

.stat-glass-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 0.35rem;
  display: block;
}

.stat-glass-item.live-indicator-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-left: 1px solid rgba(249, 224, 142, 0.3);
  padding-left: 2.5rem;
  text-align: left;
}

/* ==========================================================================
   2. FLOATING OVERLAPPING RESERVATION CONSOLE
   ========================================================================== */
.reservation-float-container {
  position: relative;
  margin-top: -5.5rem;
  z-index: 20;
  margin-bottom: 3.5rem;
}

.reservation-bar-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 2.75rem 3.25rem;
  box-shadow: 0 28px 75px rgba(56, 6, 5, 0.16), 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.25rem;
}

[data-theme="dark"] .reservation-bar-card {
  background: rgba(31, 18, 14, 0.96);
  border-color: rgba(212, 175, 55, 0.38);
}

.res-bar-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--maroon-deep);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

[data-theme="dark"] .res-bar-header h3 {
  color: var(--gold-shimmer);
}

.res-bar-header p {
  font-size: 1rem;
  color: var(--text-muted);
}

.res-bar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.res-bar-footer-note {
  width: 100%;
  border-top: 1px dashed var(--border-subtle);
  padding-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   3. SACRED RIBBON, NAVBAR & BUTTONS (ELEVATED MICRO-ANIMATIONS)
   ========================================================================== */
.sacred-ticker-ribbon {
  background: linear-gradient(90deg, #2E0403, var(--maroon-royal), #8F1813, var(--maroon-royal), #2E0403);
  color: #FFFDF9;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(249, 224, 142, 0.4);
  position: relative;
  z-index: 101;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.ticker-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ticker-mantra {
  font-family: var(--font-heading);
  letter-spacing: 0.6px;
  color: var(--gold-shimmer);
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.ticker-clock {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.28rem 0.95rem;
  border-radius: 99px;
  border: 1px solid rgba(249, 224, 142, 0.4);
}

.live-dot {
  width: 9px;
  height: 9px;
  background-color: #2ECC71;
  border-radius: 50%;
  box-shadow: 0 0 10px #2ECC71;
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header::before {
  content: \;
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--maroon-deep), var(--saffron-main), var(--gold-primary), var(--saffron-main), var(--maroon-deep));
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 1.25rem;
  max-width: 1380px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--maroon-royal);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.02);
}

[data-theme="dark"] .brand-logo {
  color: var(--gold-shimmer);
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A85A20, #D4AF37);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(211, 84, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0 auto;
}

.nav-item a {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-sub);
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--saffron-main);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron-main), var(--gold-primary));
  border-radius: 2px;
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Compact, Elevating Navbar Action Buttons so they NEVER overflow */
.nav-actions .btn {
  padding: 0.58rem 1.15rem;
  font-size: 0.88rem;
  white-space: nowrap;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1280px) {
  .nav-links {
    gap: 1.1rem;
  }
  .nav-item a {
    font-size: 0.88rem;
  }
  .brand-logo {
    font-size: 1.12rem;
  }
  .nav-actions .btn-send-req {
    display: none; /* Keep header uncluttered on medium laptops */
  }
}

/* Button & Input Enhancements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: #2C0403;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  font-weight: 800;
}

.btn-primary-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, var(--gold-shimmer), var(--gold-primary));
}

.btn-whatsapp-glow {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  font-weight: 700;
}

.btn-whatsapp-glow:hover {
  background: #128C7E;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.48);
}

.btn-send-req {
  background: linear-gradient(135deg, var(--saffron-main), var(--saffron-vibrant));
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(211, 84, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-send-req:hover {
  background: linear-gradient(135deg, var(--saffron-vibrant), var(--saffron-main));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 84, 0, 0.48);
}

.btn-primary {
  background: linear-gradient(135deg, var(--maroon-royal), var(--maroon-deep));
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(122, 15, 12, 0.35);
  border: 1px solid rgba(249, 224, 142, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(122, 15, 12, 0.5);
  background: linear-gradient(135deg, var(--maroon-rich), var(--maroon-royal));
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--saffron-main);
  color: var(--saffron-main);
}

.btn-outline:hover {
  background: var(--saffron-main);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-icon-only {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 1.15rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-icon-only:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-icon-only:hover {
  border-color: var(--saffron-main);
  transform: scale(1.1);
  box-shadow: var(--shadow-sm);
}

.form-input, .form-select {
  width: 100%;
  padding: 0.95rem 1.4rem;
  border-radius: 99px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:hover, .form-select:hover,
.form-input:focus, .form-select:focus {
  border-color: var(--saffron-main);
  box-shadow: 0 0 0 4px rgba(211, 84, 0, 0.15);
}

/* ==========================================================================
   4. "BOOK YOUR ROOM IN ADVANCE" — ROOM SHOWCASE (SCREENSHOT 5 ENHANCED)
   ========================================================================== */
.room-advance-section {
  padding: 5.5rem 0 7.5rem;
  position: relative;
}

.room-advance-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.room-advance-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--maroon-deep);
  line-height: 1.16;
  margin-bottom: 0.55rem;
}

[data-theme="dark"] .room-advance-title {
  color: var(--text-main);
}

.room-advance-subtitle {
  font-size: 1.6rem;
  color: var(--saffron-main);
  font-weight: 700;
  font-family: var(--font-body);
}

.transparent-pricing-banner {
  max-width: 980px;
  margin: 0 auto 4.25rem;
  background: rgba(236, 253, 245, 0.96);
  border: 1px solid #6EE7B7;
  border-radius: 26px;
  padding: 2.5rem 3rem;
  text-align: center;
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.14);
}

[data-theme="dark"] .transparent-pricing-banner {
  background: rgba(6, 78, 59, 0.5);
  border-color: #059669;
}

.tp-banner-title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: #065F46;
  margin-bottom: 0.85rem;
}

[data-theme="dark"] .tp-banner-title {
  color: #6EE7B7;
}

.tp-banner-text {
  font-size: 1.1rem;
  color: #047857;
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

[data-theme="dark"] .tp-banner-text {
  color: #A7F3D0;
}

.tp-banner-sub {
  font-size: 1.02rem;
  font-weight: 700;
  color: #065F46;
}

[data-theme="dark"] .tp-banner-sub {
  color: #D1FAE5;
}

.room-card-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.85rem;
}

.room-card-showcase-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-card-showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--saffron-main);
}

.room-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: #111;
}

.room-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-card-showcase-item:hover .room-img-wrapper img {
  transform: scale(1.09);
}

.room-type-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.45rem 1.15rem;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.room-type-badge.ac {
  background: linear-gradient(135deg, #F97316, #EA580C);
}

.room-type-badge.non-ac {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.room-meal-ribbon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(16, 185, 129, 0.96);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.25rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.room-card-body {
  padding: 2rem 2.35rem 2.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--maroon-deep);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .room-card-title {
  color: var(--text-main);
}

.room-card-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 1.9rem;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.45rem;
  margin-top: auto;
}

.room-card-price {
  display: flex;
  flex-direction: column;
}

.room-card-price strong {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--saffron-main);
  line-height: 1;
}

.room-card-price span {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ==========================================================================
   5. KNOWN BY MANY NAMES & OFFICIAL VERIFICATION GUIDE
   ========================================================================== */
.heritage-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: start;
}

.section-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--saffron-main);
  margin-bottom: 0.65rem;
  display: block;
}

.section-heading-lg {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  color: var(--maroon-deep);
  line-height: 1.25;
  margin-bottom: 1.45rem;
}

[data-theme="dark"] .section-heading-lg {
  color: var(--text-main);
}

.highlight-saffron {
  color: var(--saffron-main);
}

.keywords-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.kw-tag {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-sub);
  padding: 0.55rem 1.05rem;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.kw-tag:hover {
  border-color: var(--saffron-main);
  color: var(--saffron-main);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.verification-card-luxury {
  background: linear-gradient(145deg, #6E0E0B, #4A0806);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3.25rem;
  color: #FFFDF9;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.verification-card-luxury::before {
  content: '🛡️';
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 9rem;
  opacity: 0.08;
  pointer-events: none;
}

.verif-header-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(249, 224, 142, 0.28);
  padding-bottom: 1.75rem;
}

.verif-shield-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(249, 224, 142, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  flex-shrink: 0;
}

.verif-title-lg {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-shimmer);
  margin-bottom: 0.4rem;
}

.verif-sub-txt {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.verif-steps-stack {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.verif-step-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.verif-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--saffron-main);
  color: #FFF;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.verif-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-shimmer);
  margin-bottom: 0.3rem;
}

.verif-step-desc {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

/* ==========================================================================
   6. IMPACT STATS & FOUR PILLARS OF SEVA
   ========================================================================== */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.stat-card-luxury {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.stat-card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon-royal), var(--saffron-main), var(--gold-primary));
}

.stat-card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron-main);
}

.stat-num-lg {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--maroon-deep);
  margin-bottom: 0.5rem;
  line-height: 1;
}

[data-theme="dark"] .stat-num-lg {
  color: var(--gold-shimmer);
}

.stat-label-txt {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-sub);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.pillar-card-luxury {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.85rem 2.25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: all var(--transition-smooth);
}

.pillar-card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron-main);
}

.pillar-watermark {
  position: absolute;
  top: 1.35rem;
  right: 1.85rem;
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 800;
  color: rgba(211, 84, 0, 0.08);
  line-height: 1;
  pointer-events: none;
}

.pillar-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(211, 84, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--saffron-main);
  margin-bottom: 1.75rem;
}

.pillar-title-txt {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--maroon-deep);
  margin-bottom: 0.9rem;
}

[data-theme="dark"] .pillar-title-txt {
  color: var(--text-main);
}

.pillar-desc-txt {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ==========================================================================
   7. DEVOTEE VOICES & FAQ ACCORDION
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.review-card-luxury {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.65rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.review-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron-vibrant);
}

.review-stars-gold {
  color: var(--gold-primary);
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}

.review-quote-txt {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 2rem;
}

.review-author-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

.author-avatar-gold {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-royal), var(--saffron-main));
  color: white;
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(122, 15, 12, 0.35);
  flex-shrink: 0;
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--saffron-main);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--maroon-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[data-theme="dark"] .faq-question {
  color: var(--gold-shimmer);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--saffron-main);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 2rem 1.8rem;
  font-size: 1.02rem;
  color: var(--text-sub);
  line-height: 1.85;
  border-top: 1px dashed var(--border-subtle);
  padding-top: 1.25rem;
}

/* ==========================================================================
   8. FOOTER & FLOATING AUDIO SYNTHESIZER
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #300605 0%, #170302 100%);
  color: #EADDCF;
  padding: 6.5rem 0 2.5rem;
  border-top: 2px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--gold-shimmer);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.95rem;
}

.footer-links a {
  color: #D5C7BD;
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-shimmer);
  padding-left: 6px;
}

.floating-audio-btn {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  z-index: 99;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-royal), var(--saffron-main));
  color: white;
  border: 2px solid var(--gold-shimmer);
  box-shadow: 0 10px 28px rgba(122, 15, 12, 0.45);
  font-size: 1.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.floating-audio-btn:hover {
  transform: scale(1.15) rotate(12deg);
  box-shadow: 0 14px 38px rgba(211, 84, 0, 0.65);
}

.floating-audio-btn.playing {
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 224, 142, 0.75); }
  50% { box-shadow: 0 0 0 18px rgba(249, 224, 142, 0); }
}

/* ==========================================================================
   9. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .room-card-showcase-grid,
  .heritage-split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .impact-stats-grid,
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cinematic-title {
    font-size: 3.5rem;
  }

  .reservation-float-container {
    margin-top: -3rem;
  }
}

@media (max-width: 768px) {

  .navbar {
    height: 74px;
  }

  .section-padding {
    padding: 4.5rem 0;
  }

  .impact-stats-grid,
  .pillars-grid,
  .room-card-showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-cinematic-title {
    font-size: 2.8rem;
  }

  .hero-cinematic-section {
    min-height: 85vh;
    padding: 6.5rem 0 8rem;
  }

  .transparent-pricing-banner {
    padding: 1.75rem 1.5rem;
  }

  .verification-card-luxury {
    padding: 2rem;
  }

  .reservation-bar-card {
    padding: 1.75rem;
  }
}

/* ==========================================================================
   Creative Additions & Floating Booking Buttons 
   ========================================================================== */

/* Floating Booking Container */
.floating-booking-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* FAB Base Style */
.fab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  letter-spacing: 0.5px;
}

.fab-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.fab-btn svg {
  transition: transform 0.3s ease;
}

.fab-btn:hover svg {
  transform: scale(1.15) rotate(-5deg);
}

/* Call Button */
.fab-call {
  background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.fab-call:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}

/* WhatsApp Button with Pulsing */
.fab-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 1px solid rgba(37, 211, 102, 0.4);
  animation: pulse-whatsapp 2.5s infinite;
}

.fab-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
  animation: none;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Add an animated subtle gradient background to body */
body {
  background: linear-gradient(-45deg, #faf6f0, #fcfaf8, #f5f0e6, #fffbf2);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enhance existing hover states in navbar */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--saffron-main);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

/* ==========================================================================
   Mobile Navbar Enhancements
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  color: var(--text-main);
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
[data-theme="dark"] .mobile-menu-toggle {
  color: var(--gold-shimmer);
}

@media (max-width: 1150px) {
  .mobile-menu-toggle {
    display: inline-flex;
  }
  
  .nav-links {
    position: fixed;
    top: 74px; /* Match navbar height on mobile */
    left: 0;
    width: 100%;
    height: calc(100vh - 74px);
    background-color: var(--bg-page);
    z-index: 1000;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition-normal) ease-in-out, visibility 0s var(--transition-normal);
    visibility: hidden;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    
    /* Override desktop layout */
    display: flex !important; 
    flex-direction: column;
    justify-content: flex-start;
  }
  
  [data-theme="dark"] .nav-links {
    background-color: var(--maroon-dark);
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  }
  
  .nav-links.mobile-active {
    transform: translateX(0);
    visibility: visible;
    transition: transform var(--transition-normal) ease-in-out, visibility 0s 0s;
  }

  .nav-actions .btn-send-req {
    display: none;
  }
}

@media (max-width: 950px) {
  .nav-actions .btn-whatsapp {
    display: none; /* Hide header whatsapp on very small screens, use floating button instead */
  }
  
  .brand-logo span:last-child {
      display: none; /* Hide full text on very small screens to fit logo + icons */
  }
}


/* ==========================================================================
   Extra Mobile Responsiveness (Phones)
   ========================================================================== */
@media (max-width: 480px) {
  .hero-cinematic-title {
    font-size: 2.2rem;
  }
  
  .hero-cinematic-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section-padding {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }

  .floating-booking-container {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }
  
  .fab-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .fab-btn svg {
    width: 20px;
    height: 20px;
  }

  .transparent-pricing-banner {
    padding: 1.5rem 1rem;
  }
  
  .verification-card-luxury {
    padding: 1.5rem;
  }
  
  .room-card-showcase-content {
    padding: 1.5rem;
  }
  
  .footer-grid {
    gap: 2rem;
  }
}
