/* ==========================================================================
   SUNSEA KARIMUNJAWA - CHAPTER III: SANCTUARY ACCOMMODATIONS
   Kinetic Editorial Slider & Dual-Column Luxury Styling
   100% Pure Native Custom CSS (Zero-Dependency)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & DESIGN TOKENS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #060a12;
  --bg-surface: #0a1324;
  --bg-glass: rgba(10, 22, 40, 0.72);
  --bg-card: rgba(8, 18, 36, 0.85);

  --color-gold: #e2b168;
  --color-gold-light: #f8e3a2;
  --color-gold-dark: #b88734;

  --color-cyan: #00f0ff;
  --color-cyan-glow: rgba(0, 240, 255, 0.4);
  --color-cyan-dim: #80f8ff;

  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dark: #64748b;

  --border-glass: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(226, 177, 104, 0.35);
  --border-cyan: rgba(0, 240, 255, 0.35);

  --font-serif: 'Cinzel', serif;
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body.hotel-page-body {
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
  selection-background-color: rgba(0, 240, 255, 0.25);
  selection-color: var(--color-cyan);
}

::selection {
  background: rgba(0, 240, 255, 0.25);
  color: var(--color-cyan);
}

/* Typography Utilities */
.font-cinzel { font-family: var(--font-serif); }
.font-playfair { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }

.text-gold { color: var(--color-gold); }
.text-cyan { color: var(--color-cyan); }

.text-gradient-gold {
  background: linear-gradient(135deg, #ffffff 0%, #f8e3a2 30%, #e2b168 70%, #b88734 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #ffffff 0%, #80f8ff 45%, #00f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   2. AMBIENT BACKGROUND & LUXURY AURA
   -------------------------------------------------------------------------- */
.ambient-glow-wrapper {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.glow-orb-cyan {
  position: absolute;
  top: -15%;
  left: 15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(0, 240, 255, 0.015) 50%, transparent 70%);
  filter: blur(90px);
  animation: orbDrift1 20s ease-in-out infinite alternate;
}

.glow-orb-gold {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 177, 104, 0.07) 0%, rgba(226, 177, 104, 0.01) 50%, transparent 70%);
  filter: blur(100px);
  animation: orbDrift2 24s ease-in-out infinite alternate;
}

.glow-orb-deep {
  position: absolute;
  top: 40%;
  left: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 40, 75, 0.2) 0%, transparent 70%);
  filter: blur(80px);
}

.luxury-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(4, 8, 16, 0.8) 100%);
  pointer-events: none;
}

.luxury-grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-size: 60px 60px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
}

@keyframes orbDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 70px) scale(0.95); }
}

@keyframes orbDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -40px) scale(1.08); }
  100% { transform: translate(40px, -60px) scale(0.92); }
}

/* --------------------------------------------------------------------------
   3. FLOATING GLASSMORPHISM PILL NAVBAR (AWWWARDS / APPLE LUXURY AESTHETIC)
   -------------------------------------------------------------------------- */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
  transition: all 0.3s ease;
}

#main-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 12px 5px 14px;
  background: rgba(6, 12, 24, 0.72);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  box-shadow: 
    0 20px 40px -15px rgba(0, 0, 0, 0.7),
    0 0 24px rgba(0, 240, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-sizing: border-box;
  max-width: calc(100vw - 28px);
  pointer-events: auto;
}

/* Saat halaman di-scroll ke bawah */
#main-nav.scrolled {
  top: 12px;
  padding: 4.5px 10px 4.5px 12px;
  background: rgba(4, 8, 18, 0.88);
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.85),
    0 0 20px rgba(0, 240, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Brand Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  padding-left: 2px;
}

.nav-logo-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(251, 191, 36, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 35%, rgba(20, 38, 60, 0.95), rgba(4, 10, 22, 0.98));
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-logo-badge span {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fbbf24;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.nav-brand:hover .nav-logo-badge {
  border-color: #00f0ff;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.6);
  transform: scale(1.08);
}

.nav-brand-text {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-brand-title {
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #fbbf24;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-brand:hover .nav-brand-title {
  color: #fde68a;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.nav-brand-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00f0ff;
  box-shadow: 0 0 8px #00f0ff;
  animation: destPulse 2s infinite ease-out;
}

@keyframes destPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px #00f0ff; }
  50% { transform: scale(1.4); opacity: 0.7; box-shadow: 0 0 16px #00f0ff, 0 0 24px rgba(0, 240, 255, 0.6); }
}

/* Middle Navigation Links Container */
.nav-links-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 4px;
}

/* ==========================================================================
   GLASS WATER TUBE / AQUARIUM CAPSULE WITH REALISTIC OCEAN WAVE SHADER
   ========================================================================== */

/* Wadah Kapsul Kaca Induk (Ultra-Clear Frosted Glass Tube) */
.nav-highlighter {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  border-radius: 9999px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 4px 20px rgba(0, 240, 255, 0.25),
    inset 0 0 16px rgba(255, 255, 255, 0.2),
    inset 0 -2px 8px rgba(0, 240, 255, 0.35);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease;
  will-change: transform, width, opacity;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* Efek Kilau Kaca Refleksi Atas (Specular Glass Reflection) */
.glass-specular {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.05) 60%, transparent 100%);
  border-radius: 9999px 9999px 0 0;
  z-index: 5;
  pointer-events: none;
}

/* Wadah Gelombang Air di dalam Kapsul (Storm Heave & Tilt) */
.water-tank {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 9999px;
  z-index: 2;
  animation: oceanStormHeave 1.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  will-change: transform;
}

/* Gelombang SVG Animasi (Liquid Glass Wave Motion) */
.water-wave-svg {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 200%;
  height: 110%;
  will-change: transform;
  animation: oceanStormPitch 1.2s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
}

/* Ombak Depan Kaca Bening (Glass Wave Front with Prism Highlights) */
.water-wave-front {
  fill: url(#waterGradFront);
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 1.6px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
  animation: waveMoveFront 1.25s infinite linear;
  will-change: transform;
}

/* Ombak Belakang Kaca Transparan (Glass Wave Back) */
.water-wave-back {
  fill: url(#waterGradBack);
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 1px;
  opacity: 0.85;
  animation: waveMoveBack 1.75s infinite linear;
  will-change: transform;
}

/* Scroll Ombak Cepat & Lincah */
@keyframes waveMoveFront {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* Ayunan Terombang-Ambing Badai (Storm Heave, Roll & Surge) */
@keyframes oceanStormHeave {
  0% {
    transform: translateY(2.5px) rotate(-3.8deg) scaleY(0.85);
  }
  50% {
    transform: translateY(-4.5px) rotate(4deg) scaleY(1.38);
  }
  100% {
    transform: translateY(2.5px) rotate(-3.8deg) scaleY(0.85);
  }
}

@keyframes oceanStormPitch {
  0% {
    transform: rotate(2.5deg) scaleX(0.98);
  }
  50% {
    transform: rotate(-3deg) scaleX(1.02);
  }
  100% {
    transform: rotate(2.5deg) scaleX(0.98);
  }
}

/* Pendaran Garis Bawah (Bottom Glow Arc) */
.bottom-glow-line {
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 3px;
  background: #00f0ff;
  border-radius: 9999px;
  filter: blur(2px);
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
  z-index: 6;
}

/* Menu Links */
.nav-link {
  position: relative;
  padding: 6px 13px;
  font-family: 'Cinzel', serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.75);
  text-decoration: none;
  z-index: 10;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  border-radius: 9999px;
  white-space: nowrap !important;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link span {
  position: relative;
  z-index: 10;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.nav-link.active {
  color: #ffffff;
  font-weight: 700;
}

.nav-link.active span {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 240, 255, 0.85);
}

/* Right Zone Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Audio Toggle Button */
.nav-audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5.5px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

.nav-audio-btn:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.4);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.nav-audio-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64748b;
  transition: all 0.3s ease;
}

.nav-audio-btn.playing,
.nav-audio-btn.audio-active {
  background: rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.55);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.25), inset 0 0 8px rgba(0, 240, 255, 0.12);
  color: #00f0ff;
}

.nav-audio-btn.playing .nav-audio-dot,
.nav-audio-btn.audio-active .nav-audio-dot {
  background: #00f0ff;
  box-shadow: 0 0 8px #00f0ff;
  animation: destPulse 1.8s infinite ease-out;
}

/* CTA Pill Button with Shimmer Glow */
.nav-cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6.5px 16px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #10b981 0%, #059669 60%, #047857 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap !important;
  box-shadow: 
    0 4px 16px rgba(16, 185, 129, 0.4),
    0 0 12px rgba(0, 240, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-sizing: border-box;
}

.nav-cta-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 
    0 6px 24px rgba(16, 185, 129, 0.65),
    0 0 20px rgba(0, 240, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: #ffffff;
}

.nav-cta-btn:active {
  transform: translateY(0.5px) scale(0.98);
}

.nav-cta-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: navCtaShimmer 3.5s infinite;
}

@keyframes navCtaShimmer {
  0% { left: -100%; }
  35% { left: 100%; }
  100% { left: 100%; }
}

/* Mobile Hamburger Button - Seamless Glass Pill Circle */
.nav-hamburger {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
  padding: 0;
  outline: none;
}

@media (max-width: 1024px) {
  .nav-links-wrapper {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
  }
}

@media (max-width: 640px) {
  .nav-audio-btn {
    display: none !important;
  }
}

.nav-hamburger:hover {
  border-color: #00f0ff;
  background: rgba(0, 240, 255, 0.15);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

.ham-bar {
  width: 14px;
  height: 1.5px;
  background: #cbd5e1;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-hamburger:hover .ham-bar {
  background: #ffffff;
}

.mobile-menu-active.nav-hamburger .ham-bar:nth-child(1),
.mobile-menu-active .ham-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
  background: #00f0ff;
}

.mobile-menu-active.nav-hamburger .ham-bar:nth-child(2),
.mobile-menu-active .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-active.nav-hamburger .ham-bar:nth-child(3),
.mobile-menu-active .ham-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
  background: #00f0ff;
}

/* Fullscreen Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.65);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  border-color: #00f0ff;
  color: #00f0ff;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: auto 0;
}

/* Mobile Drawer Links with 3D Glass Water Aquarium Capsule */
.mobile-drawer-link {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid transparent;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.mobile-drawer-link .mobile-link-text {
  position: relative;
  z-index: 10;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.12em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.mobile-drawer-link .mobile-link-arrow {
  position: relative;
  z-index: 10;
  font-size: 12px;
  color: #64748b;
  transition: all 0.3s ease;
}

.mobile-drawer-link .water-tank,
.mobile-drawer-link .glass-specular,
.mobile-drawer-link .bottom-glow-line {
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Hover State */
.mobile-drawer-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateX(4px);
}

.mobile-drawer-link:hover .mobile-link-text {
  color: #ffffff;
}

.mobile-drawer-link:hover .mobile-link-arrow {
  color: #00f0ff;
  transform: translateX(3px);
}

.mobile-drawer-link:hover .water-tank,
.mobile-drawer-link:hover .glass-specular {
  opacity: 0.55;
}

/* Active State: Glass Aquarium Tube with Living Liquid Glass Waves */
.mobile-drawer-link.active {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: 
    0 4px 20px rgba(0, 240, 255, 0.28),
    inset 0 0 16px rgba(255, 255, 255, 0.2),
    inset 0 -2px 8px rgba(0, 240, 255, 0.35);
  transform: translateX(4px);
}

.mobile-drawer-link.active .mobile-link-text {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85), 0 0 12px rgba(0, 240, 255, 0.6);
}

.mobile-drawer-link.active .mobile-link-arrow {
  color: #00f0ff;
  transform: translateX(4px);
}

.mobile-drawer-link.active .water-tank,
.mobile-drawer-link.active .glass-specular,
.mobile-drawer-link.active .bottom-glow-line {
  opacity: 1;
}

.mobile-drawer-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #10b981 0%, #059669 60%, #047857 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: 'Cinzel', serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-drawer-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

/* --------------------------------------------------------------------------
   4. MAIN STAGE SLIDER DUAL-COLUMN (#slider-stage)
   -------------------------------------------------------------------------- */
#slider-stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(75px + env(safe-area-inset-top, 0px)) 7% calc(28px + env(safe-area-inset-bottom, 0px)) 7%;
  position: relative;
  overflow: hidden;
  gap: 36px;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   FULLSCREEN AMBIENT VIDEO BACKGROUND & OVERLAY (CINEMATIC DEPTH-OF-FIELD)
   -------------------------------------------------------------------------- */
.hotel-bg-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

#hotel-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85; /* Dominan dan kaya warna */
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.04); /* Menghilangkan garis putih pinggir layar */
}

.hotel-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 45%, rgba(5, 8, 17, 0.15) 0%, rgba(5, 8, 17, 0.62) 80%);
  backdrop-filter: blur(2.5px) saturate(1.2); /* Efek aesthetic frosted glass halus */
  -webkit-backdrop-filter: blur(2.5px) saturate(1.2);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   5. KOLOM KIRI: KINETIC EDITORIAL TYPOGRAPHY
   -------------------------------------------------------------------------- */
.slider-left {
  position: relative;
  flex: 1;
  max-width: 520px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Chapter & Category Row */
.label-chapter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.label-chapter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.label-category-pill {
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9999px;
  background: rgba(226, 177, 104, 0.15);
  border: 1px solid rgba(226, 177, 104, 0.4);
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   KINETIC TYPOGRAPHY TITLE ENGINE
   -------------------------------------------------------------------------- */
#hotel-title-wrapper {
  position: relative;
  height: 56px;
  overflow: hidden;
  margin: 2px 0;
  display: flex;
  align-items: center;
}

.title-line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.title-line span {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}

.title-line.incoming span,
.title-line.incoming-from-bottom span {
  transform: translateY(100%);
  opacity: 0;
}

.title-line.incoming-from-top span {
  transform: translateY(-100%);
  opacity: 0;
}

.title-line.exit-up span {
  transform: translateY(-100%);
  opacity: 0;
}

.title-line.exit-down span {
  transform: translateY(100%);
  opacity: 0;
}

/* Sub Info Block */
.hotel-sub-info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-info-top-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.meta-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #cbd5e1;
  font-weight: 500;
}

.meta-rating-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gold-light);
}

.rating-reviews-count {
  font-size: 11px;
  color: #64748b;
  font-weight: 400;
}

/* Feature Tags Row */
.hotel-tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.feat-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10.5px;
  color: #94a3b8;
  font-weight: 500;
}

.feat-tag-pill i {
  color: var(--color-cyan);
  font-size: 10px;
}

/* Short Description */
.hotel-short-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: #94a3b8;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pricing & CTA Block */
.kinetic-pricing-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(10, 22, 42, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.price-display-block {
  display: flex;
  flex-direction: column;
}

.price-label-small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}

.price-value-giant {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 16px rgba(226, 177, 104, 0.4);
}

.price-per-night {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
  margin-left: 2px;
}

.cta-actions-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-kinetic-reserve {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #059669 0%, #10b981 60%, #34d399 100%);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
}

.btn-kinetic-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.6);
}

.btn-kinetic-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f8fafc;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-kinetic-detail:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.4);
  color: var(--color-cyan);
}

/* Category Filter Pills (Glass Aquarium Tube with Ocean Waves) */
.kinetic-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0;
}

.kinetic-filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.filter-pill .filter-pill-text {
  position: relative;
  z-index: 10;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.filter-pill .water-tank,
.filter-pill .glass-specular,
.filter-pill .bottom-glow-line {
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 240, 255, 0.35);
  color: #ffffff;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 14px rgba(0, 240, 255, 0.15);
}

.filter-pill:hover .water-tank,
.filter-pill:hover .glass-specular {
  opacity: 0.55;
}

.filter-pill.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 
    0 4px 18px rgba(0, 240, 255, 0.25),
    inset 0 0 14px rgba(255, 255, 255, 0.2),
    inset 0 -2px 6px rgba(0, 240, 255, 0.35);
  transform: translateY(-1.5px) scale(1.02);
}

.filter-pill.active .filter-pill-text {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 0 10px rgba(0, 240, 255, 0.8);
}

.filter-pill.active .water-tank,
.filter-pill.active .glass-specular,
.filter-pill.active .bottom-glow-line {
  opacity: 1;
}

/* Bottom Nav Row: Arrows, Counter, Progress */
.kinetic-bottom-nav-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.kinetic-arrow-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kinetic-nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 22, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.kinetic-nav-arrow:hover {
  background: var(--color-cyan);
  color: var(--bg-primary);
  border-color: var(--color-cyan);
  box-shadow: 0 0 18px var(--color-cyan-glow);
  transform: scale(1.06);
}

.kinetic-counter-badge {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.1em;
}

.counter-curr {
  color: var(--color-gold);
  font-size: 17px;
  font-weight: 800;
}

.counter-slash {
  color: #475569;
}

.counter-total {
  color: #94a3b8;
}

.kinetic-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
}

.kinetic-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-cyan));
  border-radius: 9999px;
  transition: width 0.45s var(--ease-out-expo);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

/* --------------------------------------------------------------------------
   6. KOLOM KANAN: OVERLAPPING IMAGE DECK
   -------------------------------------------------------------------------- */
.slider-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 440px;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   7. KOLOM KANAN: 3-CARD DEPTH DECK CONTAINER (#card-deck)
   -------------------------------------------------------------------------- */
.card-deck {
  position: relative;
  width: 350px;
  height: 440px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.deck-ambient-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.16) 0%, transparent 65%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

.deck-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  will-change: transform, opacity, filter;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.62s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.card-img-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #081224;
}

.card-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-glass-specular {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.card-dark-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 9, 20, 0.88) 0%, rgba(4, 9, 20, 0.2) 40%, transparent 70%);
  pointer-events: none;
}

/* 1. Kartu Atas (Terkabur di Latar) */
.card-top {
  transform: translate3d(18px, -45px, -50px) rotate(5deg) scale(0.86);
  filter: blur(3px) brightness(0.65);
  opacity: 0.6;
  z-index: 1;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card-top:hover {
  transform: translate3d(18px, -45px, -25px) rotate(3deg) scale(0.89);
  opacity: 0.82;
  filter: blur(1.5px) brightness(0.85);
}

/* 2. Kartu Tengah (Fokus Utama) */
.card-center {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  filter: blur(0px) brightness(1);
  opacity: 1;
  z-index: 3;
  border: 1px solid rgba(0, 240, 255, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 240, 255, 0.18);
  cursor: pointer;
}

.card-center:hover {
  transform: translate3d(0, -6px, 10px) rotate(0deg) scale(1.015);
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 240, 255, 0.3);
}

.card-center:hover .card-img-inner img {
  transform: scale(1.04);
}

/* 3. Kartu Bawah (Terkabur di Latar) */
.card-bottom {
  transform: translate3d(18px, 45px, -50px) rotate(-3.5deg) scale(0.86);
  filter: blur(3px) brightness(0.65);
  opacity: 0.6;
  z-index: 2;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card-bottom:hover {
  transform: translate3d(18px, 45px, -25px) rotate(-1.5deg) scale(0.89);
  opacity: 0.82;
  filter: blur(1.5px) brightness(0.85);
}

/* --------------------------------------------------------------------------
   3-CARD QUEUE SHIFT ANIMATION CLASSES (DIRECTION NEXT & PREV)
   -------------------------------------------------------------------------- */
/* NEXT Direction Transitions */
.card-bottom.shift-bottom-to-center {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1) !important;
  filter: blur(0px) brightness(1) !important;
  opacity: 1 !important;
  z-index: 4 !important;
  border-color: rgba(0, 240, 255, 0.4) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 240, 255, 0.22) !important;
}

.card-center.shift-center-to-top {
  transform: translate3d(24px, -65px, -60px) rotate(6deg) scale(0.84) !important;
  filter: blur(4px) brightness(0.65) !important;
  opacity: 0.55 !important;
  z-index: 1 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7) !important;
}

.card-top.shift-top-exit {
  transform: translate3d(-30px, -120px, -100px) rotate(14deg) scale(0.7) !important;
  filter: blur(8px) brightness(0.4) !important;
  opacity: 0 !important;
  z-index: 1 !important;
  pointer-events: none;
}

/* PREV Direction Transitions */
.card-top.shift-top-to-center {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1) !important;
  filter: blur(0px) brightness(1) !important;
  opacity: 1 !important;
  z-index: 4 !important;
  border-color: rgba(0, 240, 255, 0.4) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 240, 255, 0.22) !important;
}

.card-center.shift-center-to-bottom {
  transform: translate3d(24px, 65px, -60px) rotate(-4deg) scale(0.84) !important;
  filter: blur(4px) brightness(0.65) !important;
  opacity: 0.55 !important;
  z-index: 2 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7) !important;
}

.card-bottom.shift-bottom-exit {
  transform: translate3d(-30px, 120px, -100px) rotate(-14deg) scale(0.7) !important;
  filter: blur(8px) brightness(0.4) !important;
  opacity: 0 !important;
  z-index: 1 !important;
  pointer-events: none;
}

.card-next-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 9, 20, 0.92) 0%, rgba(4, 9, 20, 0.4) 50%, rgba(4, 9, 20, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 4px;
}

.card-next-cue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-gold-light);
}

.card-next-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Floating Badges on Card Center */
.deck-top-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.deck-curated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(6, 14, 28, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--color-cyan);
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.deck-quick-inspect {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(6, 14, 28, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.deck-quick-inspect:hover {
  background: var(--color-cyan);
  color: var(--bg-primary);
  border-color: var(--color-cyan);
}

/* Bottom Strip on Card Center */
.deck-bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 4;
  background: linear-gradient(to top, rgba(3, 8, 18, 0.96) 0%, rgba(5, 12, 24, 0.84) 80%, rgba(5, 12, 24, 0) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.deck-strip-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.deck-strip-sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.deck-strip-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 9999px;
  background: rgba(226, 177, 104, 0.15);
  border: 1px solid rgba(226, 177, 104, 0.4);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-gold-light);
}

.deck-strip-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  letter-spacing: -0.01em;
}

.deck-strip-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
  line-height: 1.3;
}

.deck-strip-address i {
  font-size: 10px;
  color: var(--color-cyan);
  flex-shrink: 0;
}

.deck-strip-address span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deck-strip-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 3px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.deck-strip-price-box {
  display: flex;
  flex-direction: column;
}

.deck-price-lead {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  font-weight: 600;
}

.deck-strip-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(226, 177, 104, 0.35);
}

.deck-price-unit {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  color: #94a3b8;
  margin-left: 2px;
}

.deck-strip-cta-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  padding: 4px 9px;
  border-radius: 7px;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
}

.card-center:hover .deck-strip-cta-hint {
  background: var(--color-cyan);
  color: #030712;
  border-color: var(--color-cyan);
}

.card-next-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 9, 20, 0.92) 0%, rgba(4, 9, 20, 0.4) 50%, rgba(4, 9, 20, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 4px;
}

.card-next-cue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-gold-light);
}

.card-next-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   8. 1-TIME SMART SWIPE TOAST NOTIFICATION (#swipe-toast-notification)
   -------------------------------------------------------------------------- */
.swipe-toast-notification {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(45px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 9999px;
  background: rgba(8, 16, 32, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 240, 255, 0.35);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 240, 255, 0.18);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
  max-width: 90vw;
}

.swipe-toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.swipe-toast-notification.hide {
  transform: translateX(-50%) translateY(45px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-icon {
  color: var(--color-cyan);
  font-size: 13px;
  animation: toastHandSwipe 1.8s ease-in-out infinite;
}

.toast-text {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.toast-anim-arrow {
  color: var(--color-gold-light);
  font-size: 11px;
}

.toast-close-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #94a3b8;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 2px;
}

.toast-close-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #ef4444;
}

@keyframes toastHandSwipe {
  0%, 100% {
    transform: translateX(0);
  }
  35% {
    transform: translateX(-5px);
  }
  70% {
    transform: translateX(5px);
  }
}

/* --------------------------------------------------------------------------
   8. CENTER POPUP DETAIL MODAL (#detail-modal)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(75px + env(safe-area-inset-top, 0px)) 16px calc(24px + env(safe-area-inset-bottom, 0px)) 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.35s ease;
}

.detail-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: min(740px, calc(100vh - 110px));
  background: rgba(8, 16, 32, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(0, 240, 255, 0.3);
  border-radius: 24px;
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(0, 240, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-modal.active .modal-container {
  transform: scale(1) translateY(0);
}

/* Modal Header */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 12, 24, 0.92);
  flex-shrink: 0;
}

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

.modal-brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-cyan) 0%, #0088cc 100%);
  color: #030712;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.modal-header-sub {
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

.modal-header-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.6);
  color: #ef4444;
  transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
  padding: 18px 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 240, 255, 0.35) transparent;
}

.modal-body::-webkit-scrollbar {
  width: 5px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #00f0ff, #fbbf24);
  border-radius: 9999px;
}

.modal-hero-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #081224;
}

.modal-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
}

.modal-badge-pill {
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(4, 9, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--color-cyan);
  font-family: var(--font-serif);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.modal-category-pill {
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(4, 9, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 177, 104, 0.4);
  color: var(--color-gold-light);
  font-size: 10px;
  font-weight: 700;
}

/* Meta Bar */
.modal-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #cbd5e1;
  font-weight: 500;
}

/* Price Card */
.modal-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(226, 177, 104, 0.12) 0%, rgba(10, 22, 42, 0.6) 100%);
  border: 1px solid rgba(226, 177, 104, 0.3);
}

.modal-price-lead {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  display: block;
}

.modal-price-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
}

.modal-price-perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #34d399;
  font-weight: 600;
}

/* Modal Sections */
.modal-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-section-heading {
  font-family: var(--font-serif);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.modal-desc-text {
  font-size: 13px;
  line-height: 1.65;
  color: #cbd5e1;
  font-weight: 300;
}

/* Amenities Grid */
.modal-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.modal-amenity-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: #cbd5e1;
}

.modal-amenity-card i {
  color: var(--color-cyan);
  font-size: 13px;
  width: 16px;
  text-align: center;
}

/* Perks Strip */
.modal-perks-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.modal-perk-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #94a3b8;
}

/* Modal Footer */
.modal-footer {
  padding: 16px 24px;
  background: rgba(6, 12, 24, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.modal-btn-wa {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #059669 0%, #10b981 60%, #34d399 100%);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.45);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

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

/* --------------------------------------------------------------------------
   8. LUXURY FOOTER
   -------------------------------------------------------------------------- */
.hotel-footer {
  position: relative;
  background: rgba(4, 9, 18, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 8% 30px 8%;
  z-index: 2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.12em;
}

.footer-brand-sub {
  font-size: 11.5px;
  color: #64748b;
}

.footer-links-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-link-item {
  color: #94a3b8;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-item:hover {
  color: #ffffff;
}

.footer-copy {
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  color: #475569;
}

/* --------------------------------------------------------------------------
   9. RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  #hotel-navbar {
    padding: 12px 16px;
  }

  .nav-links-wrapper,
  .nav-audio-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  #slider-stage {
    flex-direction: column-reverse;
    padding: 100px 6% 40px 6%;
    gap: 36px;
    min-height: auto;
  }

  .slider-left {
    max-width: 100%;
    order: 2;
  }

  .slider-right {
    min-height: 420px;
    width: 100%;
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-deck {
    width: 330px;
    height: 420px;
  }

  .card-top {
    transform: translate3d(20px, -50px, -50px) rotate(5deg) scale(0.84);
  }

  .card-bottom {
    transform: translate3d(20px, 50px, -50px) rotate(-3deg) scale(0.84);
  }
}

@media (max-width: 992px) {
  #slider-stage {
    flex-direction: column;
    padding: calc(65px + env(safe-area-inset-top, 0px)) 16px calc(15px + env(safe-area-inset-bottom, 0px)) 16px;
    gap: 8px;
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
    justify-content: flex-start;
    align-items: center;
    touch-action: pan-y;
  }

  /* Kolom Kiri: Editorial Header & Filter */
  .slider-left {
    order: 1;
    width: 100%;
    max-width: 100%;
    gap: 4px;
    z-index: 5;
  }

  .label-chapter-row {
    gap: 6px;
    margin-bottom: 0px;
  }

  .label-chapter-badge {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .label-category-pill {
    font-size: 9px;
    padding: 2px 7px;
  }

  #hotel-title-wrapper {
    height: 34px;
    margin: 2px 0 3px;
  }

  .title-line {
    font-family: var(--font-serif);
    font-size: clamp(18px, 4.8vw, 24px);
    font-weight: 800;
    line-height: 1.15;
  }

  .hotel-sub-info-block {
    gap: 4px;
  }

  .sub-info-top-row {
    gap: 8px;
    font-size: 10.5px;
  }

  .hotel-tags-row {
    gap: 4px;
    flex-wrap: wrap;
  }

  .feat-tag-pill {
    padding: 2.5px 8px;
    font-size: 9.5px;
  }

  .hotel-short-desc {
    display: none !important;
  }

  /* Filter Bar Scrollable Horizontal */
  .kinetic-filter-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding: 3px 0 5px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .kinetic-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex-shrink: 0;
    padding: 4px 11px;
    font-size: 10px;
    white-space: nowrap;
  }

  /* Kolom Kanan: 3D Card Deck */
  .slider-right {
    order: 2;
    min-height: auto;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 0 10px;
    touch-action: pan-y;
  }

  .card-deck {
    width: min(290px, 82vw);
    height: clamp(310px, 44vh, 345px);
    max-width: calc(100vw - 28px);
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    margin: 0 auto;
  }

  .card-top {
    transform: translate3d(12px, -24px, -30px) rotate(3deg) scale(0.88);
  }

  .card-bottom {
    transform: translate3d(12px, 24px, -30px) rotate(-2deg) scale(0.88);
  }

  /* Bottom Strip Inside Card */
  .deck-bottom-strip {
    padding: 8px 12px;
    gap: 2px;
  }

  .deck-strip-meta-top {
    gap: 5px;
  }

  .deck-strip-sub {
    font-size: 9px;
  }

  .deck-strip-rating-pill {
    font-size: 9px;
    padding: 1.5px 6px;
  }

  .deck-strip-title {
    font-family: var(--font-serif);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.18;
    margin: 1px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .deck-strip-address {
    font-size: 9.5px;
    color: #94a3b8;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .deck-strip-bottom-row {
    padding-top: 4px;
    margin-top: 1px;
  }

  .deck-strip-price {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-gold);
  }

  .deck-strip-cta-hint {
    padding: 4px 10px;
    font-size: 9.5px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.04em;
  }

  /* Sembunyikan Navigasi Panah desktop di Layar HP */
  .kinetic-bottom-nav-row {
    display: none !important;
  }
}

@media (max-width: 480px) {
  #slider-stage {
    padding: calc(60px + env(safe-area-inset-top, 0px)) 10px calc(10px + env(safe-area-inset-bottom, 0px)) 10px;
    gap: 6px;
  }

  .card-deck {
    width: min(275px, 84vw);
    height: clamp(300px, 43vh, 335px);
  }

  .deck-bottom-strip {
    padding: 7px 10px;
    gap: 2px;
  }

  .deck-strip-title {
    font-size: 0.9rem;
  }

  .deck-strip-address {
    font-size: 9px;
  }

  .deck-strip-price {
    font-size: 0.92rem;
  }

  #hotel-title-wrapper {
    height: 30px;
  }

  /* Mobile Modal Enhancements */
  .detail-modal {
    padding: calc(65px + env(safe-area-inset-top, 0px)) 10px calc(14px + env(safe-area-inset-bottom, 0px)) 10px;
  }

  .modal-container {
    border-radius: 18px;
    max-height: calc(100vh - 80px);
  }

  .modal-header {
    padding: 12px 16px;
  }

  .modal-header-title {
    font-size: 1.08rem;
  }

  .modal-body {
    padding: 12px 14px;
    gap: 12px;
  }

  .modal-hero-img-wrap {
    height: 160px;
  }

  .modal-footer {
    padding: 10px 14px;
  }

  .modal-btn-wa {
    padding: 11px 16px;
    font-size: 11px;
  }
}
