/* ==========================================================================
   FLY SAARTHI ROOFTOP & HOTEL SAARTHI - VERSION 4 MASTER LUXURY DESIGN SYSTEM
   Cinematic Midnight Luxury Hospitality Aesthetic | Paschimpuri, Agra
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #07090e;
  --bg-secondary: #0d111a;
  --bg-surface: #121724;
  --bg-card: rgba(18, 23, 36, 0.85);
  --bg-card-hover: rgba(26, 33, 51, 0.95);
  --bg-overlay: rgba(7, 9, 14, 0.72);
  --bg-modal: rgba(10, 13, 20, 0.96);

  /* Gold & Warm Accents */
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-bright: #e5c378;
  --gold-dark: #9c782e;
  --gold-gradient: linear-gradient(135deg, #fff0be 0%, #e5c378 40%, #c5a059 80%, #9c782e 100%);
  --gold-glow: rgba(212, 175, 55, 0.28);
  --gold-glow-strong: rgba(212, 175, 55, 0.55);
  --amber-warm: #ffa834;
  --amber-glow: rgba(255, 168, 52, 0.35);

  /* Typography Colors */
  --text-light: #fbf9f5;
  --text-primary: #f2efe9;
  --text-secondary: #a8b2c1;
  --text-muted: #6b778c;
  --text-gold: #e5c378;

  /* Borders & Dividers */
  --border-gold-subtle: 1px solid rgba(212, 175, 55, 0.18);
  --border-gold-medium: 1px solid rgba(212, 175, 55, 0.4);
  --border-gold-strong: 1px solid rgba(212, 175, 55, 0.75);
  --border-dark: 1px solid rgba(255, 255, 255, 0.08);

  /* Typography Families */
  --font-serif-display: 'Cormorant Garamond', 'Cinzel', Georgia, serif;
  --font-serif-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans-body: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-script: 'Alex Brush', cursive;

  /* Transitions & Shadows */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-luxury: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.08);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

/* Light Mode Overrides */
body.light-theme {
  --bg-primary: #f7f5f0;
  --bg-secondary: #eeeae0;
  --bg-surface: #e5dfd2;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #ffffff;
  --bg-overlay: rgba(247, 245, 240, 0.85);
  --bg-modal: rgba(255, 255, 255, 0.98);

  --text-light: #11151c;
  --text-primary: #1e2430;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-gold: #9c782e;

  --border-gold-subtle: 1px solid rgba(180, 140, 40, 0.25);
  --border-dark: 1px solid rgba(0, 0, 0, 0.1);
  --shadow-luxury: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 25px rgba(180, 140, 40, 0.1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* Container */
.luxury-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .luxury-container {
    padding: 0 1.25rem;
  }
}

/* ==========================================================================
   NAVIGATION BAR (Glassmorphic Luxury Header)
   ========================================================================== */

.luxury-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.85) 0%, rgba(7, 9, 14, 0) 100%);
}

.luxury-header.scrolled {
  padding: 0.8rem 0;
  background: rgba(7, 9, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-gold-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-item-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-light);
  opacity: 0.85;
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition-fast);
}

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

.nav-item-link:hover,
.nav-item-link.active {
  opacity: 1;
  color: var(--gold-light);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Luxury Buttons */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold-outline {
  background: rgba(18, 23, 36, 0.4);
  color: var(--gold-light);
  border: var(--border-gold-medium);
  backdrop-filter: blur(8px);
}

.btn-gold-outline:hover {
  background: var(--gold-gradient);
  color: #07090e;
  border-color: transparent;
  box-shadow: 0 0 20px var(--gold-glow-strong);
  transform: translateY(-2px);
}

.btn-gold-solid {
  background: var(--gold-gradient);
  color: #07090e;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-gold-solid:hover {
  box-shadow: 0 0 25px var(--gold-glow-strong);
  transform: translateY(-2px);
}

.btn-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.theme-toggle-btn,
.menu-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-gold-subtle);
  color: var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.theme-toggle-btn:hover,
.menu-toggle-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
}

.menu-toggle-btn {
  display: none;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle-btn {
    display: flex;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: var(--border-gold-subtle);
  z-index: 2000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

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

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: var(--border-dark);
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.drawer-link {
  font-size: 1.15rem;
  font-family: var(--font-serif-heading);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--gold-light);
  transform: translateX(6px);
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   CINEMATIC HERO SECTION (Matching User Reference Image)
   ========================================================================== */

.cinematic-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bg-primary);
  background-image: url('../assets/images/hero_main.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding-top: 6.5rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

/* Fallback/Overlay gradient to guarantee typography contrast */
.hero-vignette-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 14, 0.95) 0%, rgba(7, 9, 14, 0.75) 45%, rgba(7, 9, 14, 0.2) 80%, rgba(7, 9, 14, 0.4) 100%),
              linear-gradient(180deg, rgba(7, 9, 14, 0.6) 0%, transparent 30%, transparent 70%, rgba(7, 9, 14, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-main-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  flex: 1;
}

/* Left Experience Indicator (01 Dine, 02 Unwind, 03 Celebrate, 04 Stay) */
.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 1.5rem;
}

.timeline-line {
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(212, 175, 55, 0.25);
}

.timeline-node {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: var(--transition-fast);
}

.timeline-node::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  transition: var(--transition-fast);
}

.timeline-node:hover::before,
.timeline-node.active::before {
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow-strong);
  border-color: #fff;
}

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

.timeline-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.timeline-node.active .timeline-num {
  color: var(--gold-light);
}

.timeline-node.active .timeline-label {
  color: var(--text-light);
  font-weight: 700;
}

/* Center-Left Main Hero Typography */
.hero-core-content {
  max-width: 680px;
  margin-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-gradient);
}

.hero-main-title {
  font-family: var(--font-serif-display);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-title-script {
  font-family: var(--font-script);
  font-size: 5rem;
  font-weight: 400;
  color: var(--gold-bright);
  text-transform: none;
  display: inline-block;
  margin-left: 0.35rem;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.4));
  vertical-align: middle;
}

.hero-sub-text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-top: var(--border-gold-subtle);
  padding-top: 1rem;
}

.hero-location-text {
  font-size: 0.8rem;
  letter-spacing: 1.8px;
  color: var(--text-muted);
  margin-top: -0.5rem;
}

/* Video Story Button */
.hero-video-trigger {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-light);
}

.play-button-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-smooth);
}

.play-button-ring::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  animation: pulseRing 2.5s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.2; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.play-icon {
  width: 14px;
  height: 14px;
  fill: var(--gold-light);
  margin-left: 2px;
}

.hero-video-trigger:hover .play-button-ring {
  background: var(--gold-gradient);
  border-color: transparent;
  box-shadow: 0 0 25px var(--gold-glow-strong);
}

.hero-video-trigger:hover .play-icon {
  fill: #07090e;
}

.hero-video-label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Right Side Atmospheric Weather Widget */
.hero-weather-badge {
  background: rgba(18, 23, 36, 0.65);
  border: var(--border-gold-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.weather-moon {
  font-size: 1.8rem;
  color: var(--gold-light);
}

.weather-temp {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-serif-heading);
  color: var(--text-light);
}

.weather-city {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.weather-tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.4rem;
  margin-top: 0.2rem;
}

/* 5-Card Interactive Preview Carousel at Hero Bottom */
.hero-preview-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.preview-card {
  position: relative;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: var(--border-gold-subtle);
  background: var(--bg-surface);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem;
}

.preview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.preview-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.1) 0%, rgba(7, 9, 14, 0.85) 100%);
  transition: var(--transition-fast);
}

.preview-card-info {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.preview-card-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.preview-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.preview-card-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(7, 9, 14, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.75rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.preview-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px var(--gold-glow);
}

.preview-card:hover img {
  transform: scale(1.08);
}

.preview-card:hover .preview-card-arrow {
  background: var(--gold-gradient);
  color: #07090e;
  border-color: transparent;
}

/* Bottom Feature Status Bar */
.hero-status-bar {
  position: relative;
  z-index: 2;
  border-top: var(--border-gold-subtle);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.status-icon {
  color: var(--gold-light);
  font-size: 1rem;
}

.status-quote {
  font-family: var(--font-serif-heading);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .hero-preview-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-weather-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .experience-timeline {
    display: none;
  }
  .hero-core-content {
    margin-left: 0;
  }
  .hero-main-title {
    font-size: 2.8rem;
  }
  .hero-title-script {
    font-size: 3.5rem;
  }
  .hero-preview-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }
  .preview-card {
    min-width: 200px;
    scroll-snap-align: start;
  }
  .hero-status-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   SECTION COMMON STYLES (Luxury Editorial Hierarchy)
   ========================================================================== */

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

.section-dark {
  background-color: var(--bg-primary);
}

.section-surface {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 25px;
  height: 1px;
  background: var(--gold-gradient);
}

.section-title {
  font-family: var(--font-serif-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 4-PILLAR EXPERIENCE GRID (DINE, UNWIND, CELEBRATE, STAY) */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  position: relative;
  height: 480px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: var(--border-gold-subtle);
  background: var(--bg-surface);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
}

.pillar-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.3) 0%, rgba(7, 9, 14, 0.5) 40%, rgba(7, 9, 14, 0.95) 100%);
  transition: var(--transition-fast);
}

.pillar-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pillar-num {
  font-family: var(--font-serif-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.pillar-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  background: rgba(212, 175, 55, 0.15);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-xs);
  color: var(--gold-light);
}

.pillar-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar-title {
  font-family: var(--font-serif-display);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

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

.pillar-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.5rem;
}

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

.pillar-card:hover .pillar-bg-img {
  transform: scale(1.08);
}

.pillar-card:hover .pillar-action {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillar-card {
    height: 400px;
  }
}

/* ==========================================================================
   SPACES SHOWCASE (5 AC Cabins, Cabanas, Tables)
   ========================================================================== */

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.space-card {
  background: var(--bg-surface);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.space-card-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.space-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.space-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 9, 14, 0.85);
  border: var(--border-gold-subtle);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-xs);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.space-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 1.25rem;
}

.space-card-title {
  font-family: var(--font-serif-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

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

.space-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.space-feature-pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
}

.space-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: var(--border-dark);
  padding-top: 1rem;
}

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

.space-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
}

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

@media (max-width: 1024px) {
  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .spaces-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HOTEL SAARTHI SHOWCASE (12 Rooms Total: 10 Double, 2 Triple)
   ========================================================================== */

.hotel-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hotel-room-card {
  background: var(--bg-surface);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.hotel-room-gallery {
  position: relative;
  height: 280px;
}

.hotel-room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-inventory-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(7, 9, 14, 0.9);
  border: var(--border-gold-medium);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.hotel-room-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.room-type-title {
  font-family: var(--font-serif-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
}

.room-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.amenity-icon {
  color: var(--gold-light);
}

.hotel-room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: var(--border-dark);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

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

.price-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.price-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

@media (max-width: 880px) {
  .hotel-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   DIGITAL RESTAURANT MENU SECTION (Interactive & Filterable)
   ========================================================================== */

.menu-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: rgba(18, 23, 36, 0.8);
  border: var(--border-gold-subtle);
  color: var(--text-secondary);
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  color: #07090e;
  border-color: transparent;
  box-shadow: 0 0 15px var(--gold-glow);
}

.menu-search-wrapper {
  max-width: 480px;
  margin: -1.5rem auto 2.5rem auto;
  position: relative;
}

.menu-search-input {
  width: 100%;
  background: rgba(18, 23, 36, 0.9);
  border: var(--border-gold-subtle);
  padding: 0.75rem 1.25rem 0.75rem 2.8rem;
  border-radius: var(--radius-xs);
  color: var(--text-light);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.menu-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.search-icon-svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}

.menu-dishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.dish-card {
  background: var(--bg-surface);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transition: var(--transition-smooth);
}

.dish-img-box {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  flex-shrink: 0;
  border: var(--border-dark);
}

.dish-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dish-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-title {
  font-family: var(--font-serif-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
}

.dish-price {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.dish-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.dish-tags-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.veg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1.5px solid #2e7d32;
  border-radius: 2px;
  padding: 1px;
}

.veg-dot {
  width: 6px;
  height: 6px;
  background-color: #2e7d32;
  border-radius: 50%;
}

.dish-tag-pill {
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  padding: 0.15rem 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border-radius: 3px;
}

.dish-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.dish-card:hover .dish-img-box img {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .menu-dishes-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SIGNATURE EVENTS DISCOVERY (Garba, Musical Day, Movie Night, Celebrations)
   ========================================================================== */

.events-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.event-luxury-card {
  background: var(--bg-surface);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 9, 14, 0.9);
  border: var(--border-gold-medium);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-xs);
  text-align: center;
  backdrop-filter: blur(8px);
}

.event-date-month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.event-date-day {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.event-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  justify-content: space-between;
}

.event-title {
  font-family: var(--font-serif-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
}

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

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-luxury-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
}

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

@media (max-width: 1024px) {
  .events-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .events-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   EDITORIAL GALLERY & LIGHTBOX
   ========================================================================== */

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.gallery-masonry-grid {
  columns: 3 320px;
  column-gap: 1.5rem;
}

.gallery-brick {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  border: var(--border-gold-subtle);
  cursor: pointer;
  background: var(--bg-surface);
}

.gallery-brick img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-brick-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0) 0%, rgba(7, 9, 14, 0.85) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition-fast);
}

.gallery-brick-title {
  font-family: var(--font-serif-display);
  font-size: 1.25rem;
  color: #ffffff;
}

.gallery-brick-cat {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.gallery-brick:hover img {
  transform: scale(1.05);
}

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

.gallery-brick:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Fullscreen Lightbox */
.luxury-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.95);
  backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.luxury-lightbox.active {
  opacity: 1;
  visibility: visible;
}

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

.lightbox-content-box img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  border: var(--border-gold-subtle);
  box-shadow: var(--shadow-luxury);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--gold-light);
  font-family: var(--font-serif-heading);
  letter-spacing: 1px;
}

.lightbox-close-btn {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   UNIVERSAL 5-STEP BOOKING ENGINE (MODAL & PAGE)
   ========================================================================== */

.booking-hub-card {
  background: var(--bg-surface);
  border: var(--border-gold-medium);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-luxury);
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .booking-hub-card {
    padding: 1.5rem;
  }
}

.booking-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.stepper-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  z-index: 1;
}

.stepper-progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  width: 25%;
  transition: width 0.4s ease;
}

.step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.step-node.active .step-dot,
.step-node.completed .step-dot {
  background: var(--gold-gradient);
  color: #07090e;
  border-color: transparent;
  box-shadow: 0 0 15px var(--gold-glow);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.step-node.active .step-label {
  color: var(--text-light);
}

/* Booking Experience Select Tiles */
.experience-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.experience-tile {
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.experience-tile-icon {
  font-size: 2rem;
  color: var(--gold-light);
}

.experience-tile-title {
  font-family: var(--font-serif-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
}

.experience-tile-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.experience-tile:hover,
.experience-tile.selected {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--gold-glow);
}

@media (max-width: 600px) {
  .experience-tiles-grid {
    grid-template-columns: 1fr;
  }
}

/* Form Controls */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.form-control {
  width: 100%;
  background: rgba(7, 9, 14, 0.8);
  border: var(--border-gold-subtle);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-xs);
  color: var(--text-light);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.form-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: var(--border-dark);
}

@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Instant Confirmation Voucher Box */
.confirmation-voucher {
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px dashed var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.voucher-badge {
  font-family: var(--font-serif-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.voucher-id {
  font-family: monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.35rem 1.25rem;
  background: rgba(7, 9, 14, 0.8);
  border-radius: var(--radius-xs);
  border: var(--border-gold-subtle);
}

/* ==========================================================================
   ABOUT & LEADERSHIP SECTION (Ravi Yadav & The Fixer)
   ========================================================================== */

.editorial-story-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.story-lead-text {
  font-family: var(--font-serif-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.story-body-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-media-composition {
  position: relative;
}

.story-primary-img {
  border-radius: var(--radius-sm);
  border: var(--border-gold-subtle);
  box-shadow: var(--shadow-luxury);
}

.story-floating-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--bg-surface);
  border: var(--border-gold-medium);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  max-width: 260px;
  box-shadow: var(--shadow-card);
}

.floating-stat {
  font-family: var(--font-serif-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.floating-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.leader-card {
  background: var(--bg-surface);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.leader-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.leader-name {
  font-family: var(--font-serif-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
}

.leader-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .editorial-story-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-floating-card {
    position: static;
    margin-top: 1rem;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   CUSTOMER FEEDBACK & 5-STAR RATING SYSTEM
   ========================================================================== */

.feedback-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.testimonials-stream {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-surface);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition-fast);
}

.review-stars-row {
  color: var(--amber-warm);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

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

.review-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
}

.review-experience-tag {
  font-size: 0.72rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feedback-form-card {
  background: var(--bg-surface);
  border: var(--border-gold-medium);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.star-rating-selector {
  display: flex;
  gap: 0.5rem;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.star-rating-selector span:hover,
.star-rating-selector span.active {
  color: var(--amber-warm);
  filter: drop-shadow(0 0 6px var(--amber-glow));
}

@media (max-width: 880px) {
  .feedback-layout-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT & PASCHIMPURI AGRA LOCATION
   ========================================================================== */

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-card {
  background: var(--bg-surface);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: rgba(212, 175, 55, 0.15);
  border: var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-title {
  font-family: var(--font-serif-heading);
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-card-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.map-placeholder-box {
  height: 300px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: var(--border-gold-subtle);
  position: relative;
  background: var(--bg-surface);
}

.map-placeholder-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

@media (max-width: 880px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   LUXURY FOOTER
   ========================================================================== */

.luxury-footer {
  background: #040508;
  border-top: var(--border-gold-subtle);
  padding: 5rem 0 2rem 0;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo img {
  height: 52px;
  width: auto;
}

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

.footer-heading {
  font-family: var(--font-serif-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom-bar {
  border-top: var(--border-dark);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-script-phrase {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-light);
}

@media (max-width: 960px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   VIDEO STORY MODAL & UTILITIES
   ========================================================================== */

.video-story-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.95);
  backdrop-filter: blur(16px);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.video-story-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-dialog {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: var(--bg-surface);
  border: var(--border-gold-medium);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.video-placeholder-cinema {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-placeholder-cinema img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
}

.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-surface);
  border: var(--border-gold-medium);
  color: var(--text-light);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-luxury);
  z-index: 4000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}
