/* ============================================================
   BABA PG HOUSE — Premium Black + Gold Theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #D4A43A;
  --gold-light: #F0D080;
  --gold-dark: #A67C1A;
  --gold-glow: rgba(212, 164, 58, 0.4);
  --black: #0A0A0A;
  --black-light: #141414;
  --black-card: #1A1A1A;
  --black-surface: #111111;
  --dark-gray: #222222;
  --gray: #888888;
  --light-gray: #CCCCCC;
  --white: #F5F5F5;
  --pure-white: #FFFFFF;
  --green-wa: #25D366;
  --green-dark: #1DA851;
  --red-urgency: #FF4444;
  --glass-bg: rgba(26, 26, 26, 0.75);
  --glass-border: rgba(212, 164, 58, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--light-gray);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  position: relative;
}

.preloader-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader-ring:nth-child(1) {
  width: 80px;
  height: 80px;
  border-top-color: var(--gold);
  animation: preloaderSpin 1.2s linear infinite;
}

.preloader-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  border-right-color: var(--gold-light);
  animation: preloaderSpin 1s linear infinite reverse;
}

.preloader-ring:nth-child(3) {
  width: 40px;
  height: 40px;
  border-bottom-color: var(--gold-dark);
  animation: preloaderSpin 0.8s linear infinite;
}

.preloader-text {
  display: block;
  margin-top: 70px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px var(--gold-glow);
}

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

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

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green-wa) 0%, var(--green-dark) 100%);
  color: var(--pure-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 164, 58, 0.6), 0 0 0 0 rgba(212, 164, 58, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(212, 164, 58, 0.9), 0 0 0 15px rgba(212, 164, 58, 0); }
}

/* ---------- Section Commons ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 164, 58, 0.1);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 164, 58, 0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--pure-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 164, 58, 0.1);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  border: 1px solid rgba(212, 164, 58, 0.4);
  color: var(--gold);
}

.logo-icon-wrap svg {
  width: 24px;
  height: 24px;
}

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

.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--light-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--gold-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px; /* Safe space from navbar */
  padding-bottom: 80px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.75) 100%),
              linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.5) 40%, rgba(10, 10, 10, 0.75) 70%, rgba(10, 10, 10, 0.95) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-logo-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  border: 2px solid rgba(212, 164, 58, 0.6);
  box-shadow: 0 0 40px var(--gold-glow);
  animation: logoFloat 3s ease-in-out infinite;
  color: var(--gold);
}

.hero-logo-icon svg {
  width: 50px;
  height: 50px;
}

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

.hero-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-brand-tagline {
  font-size: 0.85rem;
  color: var(--gray);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  font-weight: 800;
  color: var(--pure-white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--light-gray);
  margin-bottom: 32px;
  font-weight: 300;
}

.dot-sep {
  color: var(--gold);
  margin: 0 6px;
}

.urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
  border: 1px solid rgba(255, 68, 68, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  padding: 12px 28px;
  border-radius: 50px;
  margin-bottom: 36px;
  animation: urgencyPulse 2s ease-in-out infinite;
}

.urgency-pulse {
  width: 10px;
  height: 10px;
  background: var(--red-urgency);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255, 68, 68, 0); }
}

@keyframes urgencyPulse {
  0%, 100% { border-color: rgba(255, 68, 68, 0.3); box-shadow: 0 0 15px rgba(255, 68, 68, 0.2); }
  50% { border-color: rgba(255, 68, 68, 0.8); box-shadow: 0 0 30px rgba(255, 68, 68, 0.5); }
}

.urgency-text {
  font-size: 0.95rem;
  color: #FF8888;
  font-weight: 500;
}

.urgency-text strong {
  color: var(--red-urgency);
  font-weight: 800;
}

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

/* ---------- STATS SECTION ---------- */
.stats-section {
  position: relative;
  z-index: 10;
  background: var(--black);
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 164, 58, 0.4);
  box-shadow: 0 10px 40px rgba(212, 164, 58, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 164, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-light);
  font-weight: 600;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: scrollHintFade 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
  opacity: 0.6;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

@keyframes scrollHintFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ---------- ABOUT ---------- */
.about {
  padding: 100px 0;
  background: var(--black-light);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 1.05rem;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.about-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 164, 58, 0.08);
  border: 1px solid rgba(212, 164, 58, 0.15);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 500;
  transition: var(--transition);
}

.about-badge:hover {
  background: rgba(212, 164, 58, 0.15);
  transform: translateY(-2px);
  border-color: rgba(212, 164, 58, 0.3);
}

.about-badge i {
  color: var(--gold);
}

.about-image-wrap {
  position: relative;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 164, 58, 0.1);
}

.about-image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
  filter: brightness(0.95) contrast(1.1) saturate(1.15);
}

.about-image-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) contrast(1.15) saturate(1.25);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.85));
}

.about-img-tag {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold-light);
}

.about-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--glass-shadow);
  animation: floatBadge 3s ease-in-out infinite;
}

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

.about-float-badge i {
  font-size: 1.5rem;
  color: var(--gold);
}

.about-float-badge strong {
  color: var(--gold);
  font-size: 1.4rem;
  display: block;
  line-height: 1;
}

.about-float-badge span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ---------- ROOMS ---------- */
.rooms {
  padding: 100px 0;
  background: var(--black);
  position: relative;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.room-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(212, 164, 58, 0.3);
  box-shadow: 0 20px 60px rgba(212, 164, 58, 0.1);
}

.room-featured {
  border-color: rgba(212, 164, 58, 0.3);
  box-shadow: 0 0 40px rgba(212, 164, 58, 0.08);
}

.room-popular-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  text-align: center;
  padding: 6px 0;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 3;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

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

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(212, 164, 58, 0.2);
  z-index: 2;
}

.room-badge-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  border: none;
}

.room-badge-green {
  background: rgba(37, 211, 102, 0.15);
  color: var(--green-wa);
  border-color: rgba(37, 211, 102, 0.3);
}

.room-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.room-overlay-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  transform: translateY(20px);
}

.room-card:hover .room-overlay-btn {
  transform: translateY(0);
}

.room-overlay-btn:hover {
  box-shadow: 0 8px 30px var(--gold-glow);
}

.room-info {
  padding: 28px;
}

.room-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 5px;
}

.room-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.room-price span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
}

.room-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.room-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.room-features li {
  font-size: 0.88rem;
  color: var(--light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-features li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.room-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(212, 164, 58, 0.1);
}

/* ---------- AMENITIES ---------- */
.amenities {
  padding: 100px 0;
  background: var(--black-light);
  position: relative;
}

.amenities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.amenity-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition-slow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-card:hover {
  transform: translateY(-8px) perspective(500px) rotateX(2deg);
  border-color: rgba(212, 164, 58, 0.3);
  box-shadow: 0 20px 50px rgba(212, 164, 58, 0.08);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: rgba(212, 164, 58, 0.08);
  border: 1px solid rgba(212, 164, 58, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 100px 0;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid rgba(212, 164, 58, 0.1);
  transition: var(--transition-slow);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
  filter: brightness(0.95) contrast(1.1) saturate(1.15);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.15) saturate(1.25);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover i {
  font-size: 1.8rem;
  color: var(--gold);
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-hover i {
  transform: scale(1);
}

.gallery-hover span {
  font-size: 0.85rem;
  color: var(--light-gray);
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 164, 58, 0.2);
}

.lightbox-caption {
  margin-top: 16px;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(212, 164, 58, 0.15);
  border: 1px solid rgba(212, 164, 58, 0.2);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- WATCH OUR PG TOUR ---------- */
.video-tour-section {
  position: relative;
  padding: 120px 0;
  background: var(--black);
  overflow: hidden;
  border-top: 1px solid rgba(212, 164, 58, 0.1);
}

.video-tour-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-tour-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.3);
  transform: scale(1.1);
}

.video-tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(10, 10, 10, 0.98) 0%,
    rgba(10, 10, 10, 0.85) 50%,
    rgba(10, 10, 10, 0.6) 100%
  );
}

.video-tour-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.video-tour-text {
  max-width: 500px;
}

.video-tour-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--pure-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.video-tour-desc {
  font-size: 1.05rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.video-tour-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.vt-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vt-feature i {
  color: var(--gold);
  font-size: 1.2rem;
  background: rgba(212, 164, 58, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(212, 164, 58, 0.2);
}

.vt-feature span {
  font-size: 0.95rem;
  color: var(--pure-white);
  font-weight: 500;
}

/* Player Styles */
.video-player-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.video-player-inner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 164, 58, 0.2);
}

.video-container {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark-gray);
  overflow: hidden;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.video-placeholder:hover .video-thumb {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.play-btn-cinematic {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.play-btn-ring, .play-btn-ring-2 {
  position: absolute;
  inset: -10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: pulseRing 2s linear infinite;
  pointer-events: none;
}

.play-btn-ring-2 {
  animation-delay: 1s;
}

.play-btn-inner {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--black);
  z-index: 2;
  box-shadow: 0 0 30px var(--gold-glow);
  transition: var(--transition);
}

.play-btn-inner i {
  margin-left: 5px;
}

.video-placeholder:hover .play-btn-inner {
  transform: scale(1.1);
  box-shadow: 0 0 50px var(--gold-glow);
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.play-label {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.video-player-tag {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 10px 30px var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.yt-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-iframe.hidden { display: none; }

/* ---------- TRUST ---------- */
.trust-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(212, 164, 58, 0.06) 0%, var(--black-light) 100%);
  border-top: 1px solid rgba(212, 164, 58, 0.1);
  border-bottom: 1px solid rgba(212, 164, 58, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 164, 58, 0.3);
  box-shadow: 0 10px 40px rgba(212, 164, 58, 0.08);
}

.trust-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pure-white);
  display: inline;
}

.trust-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}

.trust-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 4px;
}

.trust-num {
  display: inline;
}

/* ---------- REVIEWS ---------- */
.reviews {
  padding: 100px 0;
  background: var(--black);
}

.review-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: var(--green-wa);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 20px;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 24px;
}

.review-card {
  min-width: calc(33.333% - 16px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(212, 164, 58, 0.3);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-stars i {
  color: var(--gold);
  font-size: 0.95rem;
}

.review-source {
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-source i {
  color: #4285F4;
}

.review-text {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  color: var(--pure-white);
  font-size: 0.9rem;
}

.review-author span {
  font-size: 0.78rem;
  color: var(--gray);
}

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

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 164, 58, 0.1);
  border: 1px solid rgba(212, 164, 58, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
}

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

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 164, 58, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ---------- LOCATION ---------- */
.location {
  padding: 100px 0;
  background: var(--black-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.location-card:hover {
  border-color: rgba(212, 164, 58, 0.3);
  transform: translateX(8px);
}

.loc-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(212, 164, 58, 0.1);
  border: 1px solid rgba(212, 164, 58, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}

.location-card h4 {
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 2px;
}

.location-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

.location-card strong {
  color: var(--gold);
}

.map-wrap {
  position: relative;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(212, 164, 58, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
}

.map-tag {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 100px 0;
  background: var(--black);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pure-white);
  margin-bottom: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(212, 164, 58, 0.1);
  border: 1px solid rgba(212, 164, 58, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}

.contact-icon-green {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
  color: var(--green-wa);
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-details span {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-details a {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-details p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

.contact-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

/* Form */
.form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
}

.form-header {
  text-align: center;
  margin-bottom: 28px;
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pure-white);
  margin-bottom: 4px;
}

.form-header p {
  color: var(--gray);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--light-gray);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 164, 58, 0.15);
}

.form-group select option {
  background: var(--black-card);
  color: var(--light-gray);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 16px;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 60px 0 0;
  background: var(--black-surface);
  border-top: 1px solid rgba(212, 164, 58, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 280px;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}

.footer-links h4,
.footer-contact h4,
.footer-keywords h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

.footer-contact i {
  color: var(--gold);
  width: 16px;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-tags span {
  background: rgba(212, 164, 58, 0.08);
  border: 1px solid rgba(212, 164, 58, 0.12);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gray);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-tag {
  color: var(--gold);
  margin-top: 4px;
  font-size: 0.8rem !important;
}

/* ---------- FLOATING BUTTONS ---------- */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-wa) 0%, var(--green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--pure-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: floatWAPulse 2s ease-in-out infinite;
}

.float-wa:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes floatWAPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 50px rgba(37, 211, 102, 0.2); }
}

.float-call {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--black);
  box-shadow: 0 4px 20px var(--gold-glow);
  z-index: 999;
  transition: var(--transition);
}

.float-call:hover {
  transform: scale(1.15);
}

.float-tooltip {
  position: absolute;
  bottom: 70px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid rgba(212, 164, 58, 0.15);
}

.float-wa:hover .float-tooltip,
.float-call:hover .float-tooltip {
  opacity: 1;
  bottom: 74px;
}

/* Rooms Left Badge */
.rooms-left-badge {
  position: fixed;
  top: 100px;
  right: 24px;
  background: rgba(255, 68, 68, 0.12);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #FF8888;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 990;
  backdrop-filter: blur(10px);
  animation: badgePulse 3s ease-in-out infinite;
  display: none;
}

.rooms-left-badge.show {
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(255, 68, 68, 0.3); }
  50% { border-color: rgba(255, 68, 68, 0.6); }
}

/* ---------- EXIT POPUP ---------- */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.exit-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup {
  background: var(--black-card);
  border: 1px solid rgba(212, 164, 58, 0.3);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  position: relative;
  transform: scale(0.8) translateY(20px);
  transition: var(--transition-slow);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 164, 58, 0.08);
}

.exit-popup-overlay.active .exit-popup {
  transform: scale(1) translateY(0);
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.exit-popup-close:hover {
  background: rgba(255, 68, 68, 0.2);
  color: var(--red-urgency);
}

.exit-popup-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.exit-popup h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--pure-white);
  margin-bottom: 12px;
}

.exit-popup p {
  font-size: 1.1rem;
  color: var(--light-gray);
  margin-bottom: 20px;
}

.exit-popup-urgency {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.2);
  padding: 10px 20px;
  border-radius: 8px;
  color: #FF8888;
  font-size: 0.9rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.exit-popup-cta {
  margin-bottom: 16px;
}

.exit-popup-call {
  color: var(--gray);
  font-size: 0.9rem;
  display: block;
}

.exit-popup-call:hover {
  color: var(--gold);
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  backdrop-filter: blur(20px);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-wa);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

/* ---------- ANIMATION SYSTEM ---------- */
[data-anim] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-anim="fade-up"] { transform: translateY(40px); }
[data-anim="fade-down"] { transform: translateY(-40px); }
[data-anim="fade-left"] { transform: translateX(40px); }
[data-anim="fade-right"] { transform: translateX(-40px); }

[data-anim].visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

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

  .rooms-grid .room-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: var(--transition-slow);
    border-left: 1px solid rgba(212, 164, 58, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-link::after { display: none; }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .about-grid,
  .video-tour-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-large {
    grid-column: span 1;
  }

  .review-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-stat {
    padding: 8px 0;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .rooms-grid .room-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: calc(100% - 0px);
  }

  .contact-cta-row {
    flex-direction: column;
  }

  .form-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .exit-popup {
    padding: 36px 24px;
  }

  .exit-popup h2 {
    font-size: 1.4rem;
  }

  .rooms-left-badge {
    right: 12px;
    top: 78px;
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .float-wa,
  .float-call {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .float-wa {
    bottom: 18px;
    right: 18px;
  }

  .float-call {
    bottom: 18px;
    left: 18px;
  }
}

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

  .about-badges {
    flex-direction: column;
  }

  .hero-logo-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

/* ---------- 3D Card Tilt (applied via JS) ---------- */
.tilt-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.tilt-3d > * {
  transform: translateZ(20px);
}

/* Smooth scrollbar for Webkit */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Selection */
::selection {
  background: rgba(212, 164, 58, 0.3);
  color: var(--pure-white);
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews {
  padding: 80px 0;
  background: var(--black);
  position: relative;
}

.reviews .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  overflow: hidden;
}

.review-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 164, 58, 0.1);
  border: 1px solid rgba(212, 164, 58, 0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-top: 16px;
}

.reviews-carousel {
  position: relative;
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  flex: 0 0 100%;
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-sizing: border-box;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 164, 58, 0.1);
  border-color: rgba(212, 164, 58, 0.4);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.review-stars {
  color: #FFB800;
  font-size: 0.9rem;
  display: flex;
  gap: 4px;
}

.review-source {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-source i {
  color: #DB4437;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-gray);
  margin-bottom: 30px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.review-author div strong {
  display: block;
  color: var(--pure-white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.review-author div span {
  display: block;
  color: var(--gray);
  font-size: 0.85rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
}

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

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

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc((100% - 48px) / 3);
  }
}
/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-wa, .float-call {
  position: fixed;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.float-wa {
  background: var(--green-wa);
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 20px;
}

.float-wa:hover {
  background: var(--green-dark);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.float-call {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  bottom: calc(20px + env(safe-area-inset-bottom));
  left: 20px;
}

.float-call:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.float-tooltip {
  display: none;
}

/* Rooms Left Badge Floating Base */
.rooms-left-badge {
  display: none; /* Can be enabled dynamically or via JS, hiding to prevent overlap unless called */
}
/* ============================================================
   RESPONSIVENESS (Media Queries)
   ============================================================ */

/* Laptop & Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero {
    padding-top: 80px;
  }
  
  .hero-content {
    padding: 0 20px;
    width: 100%;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid,
  .location-grid,
  .contact-grid,
  .video-tour-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .video-tour-text {
    text-align: center;
    margin: 0 auto;
  }

  .urgency-banner {
    padding: 10px 16px;
    font-size: 0.85rem;
    flex-direction: column;
    text-align: center;
  }

  /* Floating buttons */
  .float-wa, .float-call {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .float-wa {
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: 16px;
  }
  
  .float-call {
    bottom: calc(20px + env(safe-area-inset-bottom));
    left: 16px;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .stats-grid,
  .location-grid,
  .contact-grid,
  .video-tour-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .dot-sep {
    display: none;
  }
  .hero-logo-icon {
    width: 70px;
    height: 70px;
  }
  .hero-logo-icon svg {
    width: 40px;
    height: 40px;
  }
}
