/* ==========================================================================
   FLY SAARTHI ROOFTOP - LUXURY DESIGN SYSTEM
   Featuring Native Android App UI/UX Mobile Experience & Premium Desktop View
   ========================================================================== */

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

:root {
  /* DARK THEME (DEFAULT) */
  --bg-midnight: #000000;
  --bg-dark-black: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1f1f1f;
  --bg-glass: rgba(0, 0, 0, 0.45);
  --bg-glass-card: rgba(20, 20, 20, 0.92);

  /* Gold Palette */
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #9e7930;
  --gold-accent: #e5c158;
  --gold-glow-color: rgba(212, 175, 55, 0.35);
  
  /* Gradients */
  --grad-gold: linear-gradient(135deg, #c5a059 0%, #f7e7a7 50%, #9e7930 100%);
  --grad-gold-strip: linear-gradient(90deg, transparent 0%, #d4af37 30%, #f3e5ab 50%, #d4af37 70%, transparent 100%);
  --grad-black-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(10, 10, 10, 0.5) 40%, rgba(0, 0, 0, 0.94) 100%);

  /* Typography Colors */
  --text-latte-light: #ffffff;
  --text-latte: #f5ebe0;
  --text-latte-muted: #d0c2b2;
  --text-dim: #998b7c;

  /* Borders */
  --border-gold-subtle: 1px solid rgba(212, 175, 55, 0.35);
  --border-gold-strong: 1px solid rgba(212, 175, 55, 0.75);
  --border-gold-double: 3px double rgba(212, 175, 55, 0.8);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 50px;
  
  --shadow-dark: 0 18px 40px rgba(0, 0, 0, 0.9);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.3);

  /* Fonts */
  --font-heading: 'Cinzel', 'Cormorant Garamond', serif;
  --font-subheading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --max-width: 1360px;
  --header-height: 110px;
}

/* COMPLETE LIGHT THEME COMPATIBILITY */
[data-theme="light"] {
  --bg-midnight: #fcf8f2;
  --bg-dark-black: #f4ece1;
  --bg-card: #ffffff;
  --bg-card-hover: #f7efe4;
  --bg-glass: rgba(252, 248, 242, 0.65);
  --bg-glass-card: rgba(255, 255, 255, 0.94);

  --grad-black-overlay: linear-gradient(180deg, rgba(252, 248, 242, 0.82) 0%, rgba(244, 236, 225, 0.5) 40%, rgba(252, 248, 242, 0.96) 100%);

  --text-latte-light: #1f1209;
  --text-latte: #2d1b0e;
  --text-latte-muted: #5e4a3b;
  --text-dim: #857262;

  --border-gold-subtle: 1px solid rgba(197, 160, 89, 0.45);
  --border-gold-strong: 1px solid rgba(197, 160, 89, 0.85);
  --border-gold-double: 3px double rgba(197, 160, 89, 0.9);

  --shadow-dark: 0 15px 35px rgba(100, 70, 40, 0.12);
  --shadow-gold: 0 0 20px rgba(197, 160, 89, 0.25);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-midnight);
  color: var(--text-latte-light);
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  background-color: var(--bg-midnight);
  color: var(--text-latte-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-latte-light);
  line-height: 1.25;
}

.text-gold {
  color: var(--gold-primary);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.gold-strip-divider {
  width: 100%;
  height: 2px;
  background: var(--grad-gold-strip);
  margin: 30px 0;
  position: relative;
}

.gold-strip-divider::before {
  content: '⚜';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-midnight);
  padding: 0 14px;
  color: var(--gold-primary);
  font-size: 1rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
  content: '✦';
  font-size: 0.65rem;
  color: var(--gold-primary);
}

.section-title {
  font-size: 2.9rem;
  font-family: var(--font-subheading);
  font-weight: 600;
  color: var(--text-latte-light);
  margin-bottom: 16px;
}

/* Touch Active Scale for Native App Feel */
.btn:active, .quick-card:active, .dare-card:active, .room-card:active, .cat-tab-btn:active, .action-bar-item:active {
  transform: scale(0.95) !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--grad-gold);
  color: #000000;
  box-shadow: 0 4px 22px rgba(212, 175, 55, 0.4);
  font-weight: 800;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
  filter: brightness(1.15);
}

.btn-gold-outline {
  background: var(--bg-glass);
  border: var(--border-gold-strong);
  color: var(--gold-primary);
}

.btn-gold-outline:hover {
  background: rgba(212, 175, 55, 0.22);
  color: var(--text-latte-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.btn-lg { padding: 18px 40px; font-size: 0.95rem; }

/* ==========================================================================
   HEADER & NAVIGATION (DESKTOP)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  border-bottom-color: var(--gold-primary);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(252, 248, 242, 0.75);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.brand-logo img {
  height: 135px;
  max-height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 22px rgba(212, 175, 55, 0.75));
  transition: transform 0.3s ease;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-latte);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active { color: var(--gold-primary); }

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

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

.header-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle-btn {
  background: var(--bg-card);
  border: var(--border-gold-strong);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.theme-toggle-btn:hover {
  background: var(--grad-gold);
  color: #000000;
  transform: rotate(20deg) scale(1.1);
}

.theme-toggle-btn svg { width: 20px; height: 20px; fill: currentColor; }

.mobile-toggle {
  display: none;
  background: var(--bg-card);
  border: var(--border-gold-strong);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.mobile-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }

/* ==========================================================================
   NATIVE ANDROID APP FLOATING BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  height: 66px;
  background: var(--bg-glass-card);
  backdrop-filter: blur(20px);
  border: var(--border-gold-double);
  border-radius: 35px;
  z-index: 998;
  justify-content: space-around;
  align-items: center;
  padding: 0 6px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.88), 0 0 22px rgba(212, 175, 55, 0.35);
}

.action-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-latte-muted);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.action-bar-item svg { width: 22px; height: 22px; stroke: var(--text-latte-muted); fill: none; transition: all 0.3s ease; }

.action-bar-item.active {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.16);
}

.action-bar-item.active svg { stroke: var(--gold-primary); transform: translateY(-2px); }

.action-bar-item.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 14px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 4px;
}

/* ==========================================================================
   MOBILE DRAWER MENU
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 310px;
  height: 100vh;
  background: var(--bg-midnight);
  z-index: 1100;
  padding: 24px;
  border-left: var(--border-gold-strong);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 40px rgba(0,0,0,0.9);
}

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

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: var(--border-gold-subtle);
}

.mobile-drawer-header img { height: 68px; }
.close-drawer { background: transparent; border: none; color: var(--gold-primary); font-size: 2.2rem; cursor: pointer; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.mobile-nav-links .nav-link {
  font-size: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   DESKTOP HERO & SECTIONS
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-midnight);
  overflow: hidden;
}

.hero-bg-container { position: absolute; inset: 0; z-index: 1; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.6) contrast(1.1); }
.hero-overlay { position: absolute; inset: 0; background: var(--grad-black-overlay); z-index: 2; }

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  background: var(--bg-glass-card);
  border: var(--border-gold-strong);
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-latte-light);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-latte);
  max-width: 760px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* QUICK CARDS & SECTIONS */
.quick-experience-bar {
  position: relative;
  z-index: 20;
  max-width: var(--max-width);
  margin: -50px auto 0;
  padding: 0 24px;
}

.quick-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: var(--border-gold-double);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-dark), var(--shadow-gold);
}

.quick-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: var(--border-gold-subtle);
  transition: all 0.3s ease;
}

.quick-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.quick-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.15);
  border: var(--border-gold-subtle);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-card-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }

.quick-card-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: var(--text-latte-light);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.quick-card-desc { font-size: 0.84rem; color: var(--text-latte-muted); line-height: 1.4; }

.section { padding: 90px 0; position: relative; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.bg-dark-slate { background-color: var(--bg-dark-black); }
.section-header-center { text-align: center; max-width: 680px; margin: 0 auto 50px; }

.rooftop-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.feature-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: var(--border-gold-subtle);
  font-size: 0.85rem;
  color: var(--text-latte);
}

.feature-badge-item svg { width: 18px; height: 18px; stroke: var(--gold-primary); fill: none; }

.youtube-video-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-gold-double);
  box-shadow: var(--shadow-dark), var(--shadow-gold);
}

.youtube-video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* DARE CARDS */
.dare-container {
  background: var(--bg-card);
  border: var(--border-gold-double);
  border-radius: var(--radius-md);
  padding: 45px;
  box-shadow: var(--shadow-dark), var(--shadow-gold);
}

.dare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.dare-card {
  background: var(--bg-dark-black);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.dare-card::before {
  content: 'DARE OFFER';
  position: absolute;
  top: 14px;
  right: -30px;
  background: var(--grad-gold);
  color: #000;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 3px 30px;
  transform: rotate(45deg);
}

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

.dare-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.15);
  border: var(--border-gold-subtle);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.dare-title { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-latte-light); margin-bottom: 8px; }
.dare-desc { font-size: 0.85rem; color: var(--text-latte-muted); line-height: 1.5; margin-bottom: 20px; }
.dare-reward { font-size: 1.05rem; font-weight: 800; color: var(--gold-primary); margin-top: auto; margin-bottom: 16px; }

/* CELEBRATIONS & ROOMS */
.occasions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 50px; }
.occasion-card { background: var(--bg-card); border: var(--border-gold-subtle); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; transition: all 0.35s ease; }
.occasion-card:hover { background: var(--bg-card-hover); border-color: var(--gold-primary); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.occasion-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: rgba(212, 175, 55, 0.15); border: var(--border-gold-subtle); color: var(--gold-light); display: flex; align-items: center; justify-content: center; }
.occasion-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; }

.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: var(--bg-dark-black); border: var(--border-gold-double); border-radius: var(--radius-md); padding: 32px 20px; text-align: center; box-shadow: var(--shadow-dark); }
.stat-item-num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--gold-primary); line-height: 1; margin-bottom: 6px; }
.stat-item-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-latte-muted); }

.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.room-card { background: var(--bg-card); border: var(--border-gold-subtle); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: all 0.35s ease; }
.room-card:hover { border-color: var(--gold-primary); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.room-img-wrap { position: relative; height: 240px; overflow: hidden; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-img-wrap img { transform: scale(1.06); }
.room-badge { position: absolute; top: 14px; right: 14px; padding: 5px 14px; background: var(--bg-midnight); border: var(--border-gold-strong); color: var(--gold-light); font-size: 0.72rem; font-weight: 700; border-radius: var(--radius-pill); }
.room-content { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; }
.room-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.room-title { font-family: var(--font-heading); font-size: 1.35rem; color: var(--text-latte-light); }
.room-desc { font-size: 0.88rem; color: var(--text-latte-muted); margin-bottom: 20px; line-height: 1.5; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.amenity-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--text-latte); background: var(--bg-dark-black); padding: 6px 12px; border-radius: var(--radius-sm); border: 1px solid rgba(212, 175, 55, 0.2); }
.amenity-chip svg { width: 14px; height: 14px; stroke: var(--gold-primary); fill: none; }
.room-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: var(--border-gold-subtle); }

.experience-banner { background: var(--bg-dark-black); border-top: var(--border-gold-double); border-bottom: var(--border-gold-double); position: relative; overflow: hidden; padding: 85px 0; }
.experience-banner-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.chariot-art-wrap img { max-height: 220px; margin: 0 auto; filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.65)); transition: transform 0.4s ease; }
.chariot-art-wrap:hover img { transform: scale(1.06); }
.exp-highlights-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.exp-highlight-item { background: var(--bg-card); border: var(--border-gold-subtle); border-radius: var(--radius-sm); padding: 18px; }
.exp-highlight-item h4 { font-size: 0.92rem; color: var(--gold-primary); margin-bottom: 6px; }
.exp-highlight-item p { font-size: 0.78rem; color: var(--text-latte-muted); }

.triple-booking-section { padding: 70px 0; background: var(--bg-dark-black); }
.triple-booking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.booking-action-card { background: var(--bg-card); border: var(--border-gold-strong); border-radius: var(--radius-md); padding: 30px 24px; display: flex; flex-direction: column; align-items: flex-start; transition: all 0.35s ease; position: relative; }
.booking-action-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--grad-gold-strip); }
.booking-action-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.booking-action-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-midnight); border: var(--border-gold-subtle); color: var(--gold-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.booking-action-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
.booking-action-title { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-latte-light); margin-bottom: 6px; }
.booking-action-desc { font-size: 0.84rem; color: var(--text-latte-muted); margin-bottom: 20px; }
.booking-action-link { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-primary); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }

/* MENU & GALLERY */
.menu-controls-bar { position: sticky; top: var(--header-height); z-index: 100; background: var(--bg-glass); backdrop-filter: blur(14px); padding: 14px 0; border-bottom: var(--border-gold-subtle); margin-bottom: 30px; }
.category-tabs-wrapper { display: flex; align-items: center; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.cat-tab-btn { padding: 9px 20px; background: var(--bg-card); border: var(--border-gold-subtle); color: var(--text-latte); border-radius: var(--radius-pill); font-size: 0.82rem; white-space: nowrap; cursor: pointer; transition: all 0.3s ease; }
.cat-tab-btn:hover, .cat-tab-btn.active { background: var(--grad-gold); color: #000000; font-weight: 700; box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35); }
.menu-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.dish-card { background: var(--bg-card); border: var(--border-gold-subtle); border-radius: var(--radius-md); padding: 18px; display: flex; gap: 14px; transition: all 0.3s ease; }
.dish-card:hover { border-color: var(--gold-primary); background: var(--bg-card-hover); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.dish-img { width: 88px; height: 88px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; border: var(--border-gold-subtle); }
.dish-details { flex-grow: 1; display: flex; flex-direction: column; }
.dish-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.dish-name { font-family: var(--font-heading); font-size: 1.05rem; color: var(--text-latte-light); }
.veg-icon { width: 16px; height: 16px; border: 1.5px solid #2e7d32; border-radius: 2px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-right: 4px; }
.veg-icon::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #2e7d32; }
.dish-price { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--gold-primary); }
.dish-desc { font-size: 0.8rem; color: var(--text-latte-muted); line-height: 1.4; margin-bottom: 10px; }

.gallery-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.gallery-grid { columns: 3 260px; column-gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-md); overflow: hidden; position: relative; border: var(--border-gold-subtle); cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.82); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
[data-theme="light"] .gallery-item-overlay { background: rgba(252, 248, 242, 0.88); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.lightbox-modal { position: fixed; inset: 0; z-index: 2000; background: rgba(0, 0, 0, 0.96); backdrop-filter: blur(18px); display: none; items-center: center; justify-content: center; padding: 20px; }
.lightbox-modal.active { display: flex; }
.lightbox-img-container { max-width: 95vw; max-height: 85vh; position: relative; }
.lightbox-img-container img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-sm); border: var(--border-gold-double); }
.lightbox-close { position: absolute; top: 15px; right: 20px; color: var(--gold-light); font-size: 2.4rem; cursor: pointer; }

/* FORMS & FOOTER */
.form-card { background: var(--bg-card); border: var(--border-gold-double); border-radius: var(--radius-md); padding: 32px 24px; box-shadow: var(--shadow-dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-primary); }
.form-control { background: var(--bg-dark-black); border: var(--border-gold-subtle); border-radius: var(--radius-sm); padding: 13px 18px; color: var(--text-latte-light); transition: all 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--gold-primary); box-shadow: var(--shadow-gold); }

.site-footer { background: var(--bg-dark-black); border-top: var(--border-gold-double); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.footer-brand img { height: 85px; margin-bottom: 16px; }
.footer-tagline { font-size: 0.88rem; color: var(--text-latte-muted); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.social-icon-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-card); border: var(--border-gold-subtle); color: var(--gold-light); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.social-icon-btn:hover { background: var(--grad-gold); color: #000000; transform: translateY(-2px); }
.footer-title { font-family: var(--font-heading); font-size: 1.02rem; color: var(--text-latte-light); margin-bottom: 20px; letter-spacing: 0.12em; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link { font-size: 0.85rem; color: var(--text-latte-muted); }
.footer-link:hover { color: var(--gold-primary); padding-left: 4px; }
.footer-bottom { padding-top: 25px; border-top: 1px solid rgba(212, 175, 55, 0.2); display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--text-dim); }

@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

.whatsapp-float {
  position: fixed;
  bottom: 88px;
  left: 18px;
  width: 48px;
  height: 48px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 25px; height: 25px; fill: currentColor; }

/* FLOATING MENU CTA DESKTOP */
.floating-menu-cta {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 995;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--bg-glass-card);
  backdrop-filter: blur(14px);
  border: var(--border-gold-double);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.35s ease;
  animation: floatingPulse 4s infinite ease-in-out;
}

.floating-menu-cta-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--grad-gold); color: #000000; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floating-menu-cta-icon svg { width: 18px; height: 18px; fill: currentColor; }
.floating-menu-cta-title { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.14em; color: var(--text-latte-light); }
.floating-menu-cta-sub { font-size: 0.65rem; color: var(--gold-primary); text-transform: uppercase; }
.floating-menu-cta:hover { transform: translateY(-5px) scale(1.05); border-color: var(--gold-light); }

@keyframes floatingPulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ==========================================================================
   MIND-BLOWING NATIVE ANDROID APP MOBILE UI REDESIGN (MOBILE <= 768px)
   ========================================================================== */
@media (max-width: 992px) {
  :root { --header-height: 80px; }
  .nav-menu, .header-ctas { display: none; }
  .mobile-toggle { display: flex; }
  .brand-logo img { height: 76px; }
  .header-container { padding: 0 16px; }
  .floating-menu-cta { display: none; }
}

@media (max-width: 768px) {
  .mobile-action-bar { display: flex; }
  body { padding-bottom: 86px; }

  /* App Mobile Header */
  .site-header { height: 76px; background: rgba(0, 0, 0, 0.88); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(212, 175, 55, 0.4); }
  [data-theme="light"] .site-header { background: rgba(252, 248, 242, 0.92); }
  .brand-logo img { height: 74px; }

  /* App Hero Container Card */
  .hero-section {
    min-height: auto;
    margin-top: 68px;
    padding: 16px;
  }

  .hero-bg-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0;
  }

  .hero-content {
    padding: 32px 18px;
    background: var(--bg-glass-card);
    backdrop-filter: blur(16px);
    border: var(--border-gold-strong);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), var(--shadow-gold);
    text-align: center;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 6px 14px;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.15);
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .hero-sub {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 12px 10px;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    border-radius: var(--radius-md);
  }

  /* App Experience Horizontal Story Cards */
  .quick-experience-bar {
    margin-top: 14px;
    padding: 0 16px;
  }

  .quick-experience-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px;
    background: var(--bg-dark-black);
    border-radius: var(--radius-lg);
    border: var(--border-gold-subtle);
  }

  .quick-card {
    min-width: 220px;
    flex-shrink: 0;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
  }

  .quick-card-title { font-size: 0.86rem; }
  .quick-card-desc { font-size: 0.76rem; }

  /* App Sections & Cards */
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: 1.85rem; margin-bottom: 12px; }

  /* YouTube App Player Frame */
  .rooftop-exp-grid { grid-template-columns: 1fr; gap: 24px; }
  .youtube-video-box { border-radius: var(--radius-md); border: var(--border-gold-strong); }

  /* Dare App Coupon Cards */
  .dare-container { padding: 20px 14px; border-radius: var(--radius-lg); }
  .dare-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 20px; }
  
  .dare-card {
    padding: 18px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 2px dashed rgba(212, 175, 55, 0.6);
  }

  .dare-card::before {
    font-size: 0.5rem;
    padding: 2px 24px;
    top: 10px;
    right: -26px;
  }

  .dare-title { font-size: 1.05rem; }
  .dare-desc { font-size: 0.8rem; margin-bottom: 14px; }
  .dare-reward { font-size: 0.95rem; margin-bottom: 12px; }
  .dare-card .btn { width: 100%; padding: 10px 14px; font-size: 0.75rem; border-radius: var(--radius-pill); }

  /* Room Cards Mobile */
  .rooms-grid { grid-template-columns: 1fr; gap: 16px; }
  .room-card { border-radius: var(--radius-lg); }
  .room-img-wrap { height: 180px; }
  .room-content { padding: 18px; }
  .room-title { font-size: 1.15rem; }
  .room-desc { font-size: 0.82rem; margin-bottom: 14px; }
  .room-footer { padding-top: 14px; }

  /* Stats Bar Grid Mobile App */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 18px 12px;
    border-radius: var(--radius-lg);
  }

  .stat-item-num { font-size: 2rem; }
  .stat-item-label { font-size: 0.72rem; }

  /* Complete Experience Logo Mobile */
  .chariot-art-wrap img { max-height: 140px; }
  .exp-highlights-list { grid-template-columns: 1fr; gap: 10px; }
  .exp-highlight-item { padding: 14px; border-radius: var(--radius-md); }

  /* Triple Booking Bar Mobile */
  .triple-booking-grid { grid-template-columns: 1fr; gap: 14px; }
  .booking-action-card { padding: 20px; border-radius: var(--radius-lg); }
}
