/* ═══════════════════════════════════════════════════════════════
   MAJESTY ZOZAN HOTEL — ULTRA PREMIUM DESIGN SYSTEM v2
   Cinematic · Immersive · Spellbinding
   ═══════════════════════════════════════════════════════════════ */

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

/* ── CSS Custom Properties ── */
:root {
  --navy-deep: #060e1a;
  --navy: #0b1829;
  --navy-light: #12243d;
  --navy-muted: #1a3052;
  --gold: #c9a84c;
  --gold-light: #e8d494;
  --gold-pale: #f5ecd3;
  --gold-dark: #a88a35;
  --gold-shimmer: linear-gradient(135deg, #c9a84c 0%, #f5ecd3 20%, #c9a84c 40%, #a88a35 60%, #e8d494 80%, #c9a84c 100%);
  --gold-glow: 0 0 20px rgba(201,168,76,0.3), 0 0 60px rgba(201,168,76,0.1);
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #ffffff;
  --text-primary: #f5f0e8;
  --text-secondary: rgba(245, 240, 232, 0.65);
  --text-muted: rgba(245, 240, 232, 0.35);

  --glass-bg: rgba(11, 24, 41, 0.55);
  --glass-border: rgba(201, 168, 76, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Outfit', 'Montserrat', 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

/* Restore default cursor on mobile */
@media (pointer: coarse) {
  body { cursor: auto; }
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; cursor: none; }
ul, ol { list-style: none; }
button { cursor: none; }

@media (pointer: coarse) {
  a, button { cursor: auto; }
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: var(--radius-full);
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold-shimmer);
  background-size: 300% 100%;
  animation: shimmerSlow 3s linear infinite;
  z-index: 100001;
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
}

/* ══════════════════════════════════════════════════════
   CUSTOM CURSOR SYSTEM
   ══════════════════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), background 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot.expanded {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid var(--gold);
  mix-blend-mode: normal;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-spring), height 0.4s var(--ease-spring), border-color 0.3s, opacity 0.3s;
}
.cursor-ring.expanded {
  width: 70px;
  height: 70px;
  border-color: rgba(201,168,76,0.15);
  opacity: 0.5;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s;
}
body:hover .cursor-glow { opacity: 1; }

/* Mouse trail particles */
.trail-particle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999997;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* ══════════════════════════════════════════════════════
   PRELOADER — CINEMATIC
   ══════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  overflow: hidden;
}
.preloader.exit {
  animation: preloaderExit 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.preloader-aurora {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(201,168,76,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201,168,76,0.1) 0%, transparent 60%);
  animation: auroraShift 6s ease-in-out infinite alternate;
}

.preloader-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
  animation: preloaderLogoPulse 2s ease-in-out infinite;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gold-shimmer);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerSlow 2.5s linear infinite;
  margin-bottom: 40px;
  letter-spacing: 6px;
  position: relative;
  z-index: 2;
}

.preloader-bar-track {
  width: 220px;
  height: 2px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-shimmer);
  background-size: 300% 100%;
  border-radius: var(--radius-full);
  animation: preloaderFill 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, shimmerSlow 1.5s linear infinite;
}

.preloader-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(201,168,76,0.08);
  border-top-color: rgba(201,168,76,0.4);
  border-radius: 50%;
  animation: preloaderSpin 2s linear infinite;
  z-index: 1;
}
.preloader-ring:nth-child(2) {
  width: 200px;
  height: 200px;
  animation-duration: 3s;
  animation-direction: reverse;
  border-top-color: rgba(201,168,76,0.2);
}

@keyframes preloaderLogoPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50% { transform: scale(1.08); filter: brightness(1.2); box-shadow: 0 0 40px rgba(201,168,76,0.3); }
}
@keyframes preloaderFill { to { width: 100%; } }
@keyframes preloaderSpin { to { transform: rotate(360deg); } }
@keyframes preloaderExit {
  0% { clip-path: circle(100% at 50% 50%); }
  100% { clip-path: circle(0% at 50% 50%); }
}
@keyframes auroraShift {
  0% { transform: translateX(-5%) rotate(-2deg); }
  100% { transform: translateX(5%) rotate(2deg); }
}
@keyframes shimmerSlow {
  to { background-position: -400% 0; }
}

/* ══════════════════════════════════════════════════════
   AURORA BACKGROUND EFFECT (Global)
   ══════════════════════════════════════════════════════ */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  animation: auroraFloat linear infinite;
}
.aurora-blob:nth-child(1) {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -10%; left: -10%;
  animation-duration: 25s;
}
.aurora-blob:nth-child(2) {
  width: 500px; height: 500px;
  background: #4a6fa5;
  bottom: -15%; right: -10%;
  animation-duration: 30s;
  animation-delay: -10s;
}
.aurora-blob:nth-child(3) {
  width: 400px; height: 400px;
  background: var(--gold-dark);
  top: 40%; left: 50%;
  animation-duration: 20s;
  animation-delay: -5s;
}

@keyframes auroraFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(100px, -60px) scale(1.15); }
  50% { transform: translate(-50px, 80px) scale(0.9); }
  75% { transform: translate(60px, 40px) scale(1.1); }
}

/* Noise texture overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ══════════════════════════════════════════════════════
   NAVIGATION — FLOATING GLASS
   ══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 60px);
  max-width: 1400px;
  border-radius: var(--radius-xl);
  background: rgba(6, 14, 26, 0.4);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(201,168,76,0.06);
  transition: all 0.5s var(--ease-out-expo);
}
.navbar.scrolled {
  top: 10px;
  padding: 10px 36px;
  background: rgba(6, 14, 26, 0.85);
  border-color: rgba(201,168,76,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201,168,76,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s var(--ease-spring);
}
.nav-logo:hover { transform: scale(1.03); }
.nav-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.2);
  transition: all 0.4s;
}
.navbar.scrolled .nav-logo img {
  width: 38px;
  height: 38px;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2.5px;
}
.nav-logo-text .brand-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.4s var(--ease-out-expo);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}
.nav-links a:not(.nav-cta):hover {
  color: var(--gold);
}
.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}
.nav-links a:not(.nav-cta).active {
  color: var(--gold);
}
.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}

/* Magnetic CTA Button */
.nav-cta {
  padding: 11px 28px;
  background: transparent;
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  z-index: 1;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
  border-radius: var(--radius-full);
}
.nav-cta:hover {
  color: var(--navy-deep) !important;
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}
.nav-cta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); }

/* ══════════════════════════════════════════════════════
   HERO SECTION — CINEMATIC IMMERSION
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20px;
  z-index: 0;
}
.hero-bg img {
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, transparent 0%, rgba(6,14,26,0.4) 60%),
    linear-gradient(180deg,
      rgba(6,14,26,0.3) 0%,
      rgba(6,14,26,0.15) 30%,
      rgba(6,14,26,0.3) 50%,
      rgba(6,14,26,0.7) 75%,
      rgba(6,14,26,1) 100%
    );
}

/* Animated light streaks across hero */
.hero-light-streaks {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-light-streaks::before,
.hero-light-streaks::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 200%;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,0.12) 50%, transparent 100%);
  animation: lightStreakMove 12s linear infinite;
}
.hero-light-streaks::before {
  left: 20%;
  animation-delay: 0s;
  transform: rotate(15deg);
}
.hero-light-streaks::after {
  left: 75%;
  animation-delay: -6s;
  transform: rotate(-12deg);
}

@keyframes lightStreakMove {
  0% { top: -100%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Floating particles */
.particles-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 6px rgba(201,168,76,0.3);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
  5% { opacity: 1; }
  50% { transform: translateY(50vh) translateX(30px) rotate(360deg); }
  95% { opacity: 0.8; }
  100% { transform: translateY(-10vh) translateX(-20px) rotate(720deg); opacity: 0; }
}

/* Sparkle diamonds */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparklePulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes sparklePulse {
  0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
  50% { transform: scale(1) rotate(180deg); opacity: 1; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 950px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 28px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-full);
  background: rgba(201, 168, 76, 0.05);
  backdrop-filter: blur(16px);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(-20px);
  animation: heroFadeIn 1s var(--ease-out-expo) 0.3s forwards;
}
.hero-badge .star { color: var(--gold); font-size: 0.65rem; }
.hero-badge span:not(.star) {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Split text animation ready */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 12px;
}
.hero-title .line-1 {
  display: block;
  color: var(--cream);
  overflow: hidden;
}
.hero-title .line-2 {
  display: block;
  background: var(--gold-shimmer);
  background-size: 400% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerSlow 4s linear infinite;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.2));
}

/* Individual letter animation */
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px) rotateX(90deg);
  animation: charReveal 0.8s var(--ease-out-expo) forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 48px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s var(--ease-out-expo) 1.2s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s var(--ease-out-expo) 1.5s forwards;
}

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Primary Button — Shimmer + Magnetic */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.7s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-full);
  background: var(--gold);
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 45px rgba(201,168,76,0.4);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover::after { opacity: 0.5; }

/* Outline Button — Reveal fill */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(245, 240, 232, 0.2);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  z-index: 1;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.1);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(201,168,76,0.15);
}
.btn-outline:hover::before { transform: translateY(0); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out-expo) 2s forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(201,168,76,0.35);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════════════════ */
.section {
  padding: 140px 60px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 90px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-tag span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 20px;
}

.section-desc {
  font-family: var(--font-elegant);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  font-style: italic;
  letter-spacing: 0.5px;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-shimmer);
  background-size: 300% 100%;
  margin: 24px auto;
  animation: shimmerSlow 3s linear infinite;
  border-radius: var(--radius-full);
  position: relative;
}
.gold-divider::before,
.gold-divider::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.4rem;
}
.gold-divider::before { left: -16px; }
.gold-divider::after { right: -16px; }

/* ══════════════════════════════════════════════════════
   ABOUT SECTION — PARALLAX LAYERS
   ══════════════════════════════════════════════════════ */
.about {
  background: transparent;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image-container { position: relative; perspective: 1200px; }

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transition: transform 0.6s var(--ease-out-expo);
}
.about-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}
.about-image-wrapper:hover img { transform: scale(1.08); }

/* Animated border glow on image */
.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}
.about-image-wrapper:hover::before { opacity: 0.5; }

.about-image-accent {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  animation: accentFloat 6s ease-in-out infinite;
}
@keyframes accentFloat {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(-8px, 8px) rotate(3deg); }
}

.about-image-badge {
  position: absolute;
  bottom: -28px;
  left: -24px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 15px 40px rgba(201,168,76,0.35);
  z-index: 5;
  transition: transform 0.4s var(--ease-spring);
}
.about-image-badge:hover { transform: scale(1.08); }
.about-image-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}
.about-image-badge .badge-text {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content { padding: 20px 0; }
.about-content .section-tag { justify-content: flex-start; }
.about-content .section-title { text-align: left; }
.about-content .section-desc { text-align: left; margin: 0 0 20px 0; }

.about-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 40px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 44px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.about-feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}
.about-feature:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.about-feature:hover::after { transform: scaleX(1); }
.about-feature .feature-icon { font-size: 1.5rem; }
.about-feature .feature-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
}

/* ══════════════════════════════════════════════════════
   ROOMS SECTION — 3D PERSPECTIVE CARDS
   ══════════════════════════════════════════════════════ */
.rooms {
  background: transparent;
  position: relative;
}

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

.room-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(18, 36, 61, 0.6);
  border: 1px solid rgba(201,168,76,0.06);
  backdrop-filter: blur(10px);
  transition: all 0.6s var(--ease-out-expo);
  transform-style: preserve-3d;
  will-change: transform;
}
.room-card:hover {
  border-color: rgba(201,168,76,0.2);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(201, 168, 76, 0.06),
    inset 0 1px 0 rgba(201,168,76,0.1);
}

/* Animated gradient border on hover */
.room-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,168,76,0.3), transparent 40%, transparent 60%, rgba(201,168,76,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 10;
  pointer-events: none;
}
.room-card:hover::before { opacity: 1; }

.room-card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}
.room-card:hover .room-card-image img { transform: scale(1.12); }

/* Cinematic gradient overlay on image */
.room-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top,
    rgba(18, 36, 61, 0.95) 0%,
    rgba(18, 36, 61, 0.4) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.room-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 18px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  z-index: 12;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

.room-card-content { padding: 28px 30px 32px; }

.room-card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.room-card-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.room-amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-smooth);
}
.room-amenity:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201,168,76,0.25);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.room-amenity .amenity-icon { font-size: 0.8rem; }

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(201,168,76,0.06);
}
.room-price {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.room-price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.room-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.room-card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}
.room-card-btn:hover {
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}
.room-card-btn:hover::before { transform: scaleX(1); transform-origin: left; }
.room-card-btn .arrow { transition: transform 0.4s var(--ease-spring); }
.room-card-btn:hover .arrow { transform: translateX(5px); }

/* ══════════════════════════════════════════════════════
   AMENITIES — FLOATING GLASS CARDS
   ══════════════════════════════════════════════════════ */
.amenities { background: transparent; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1340px;
  margin: 0 auto;
}

.amenity-card {
  position: relative;
  padding: 44px 28px 40px;
  background: rgba(11, 24, 41, 0.5);
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

/* Animated top border */
.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-shimmer);
  background-size: 300% 100%;
  animation: shimmerSlow 3s linear infinite;
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out-expo);
}

/* Background glow blob */
.amenity-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.5s;
  opacity: 0;
}

.amenity-card:hover {
  transform: translateY(-12px);
  border-color: rgba(201,168,76,0.2);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.3),
    0 0 40px rgba(201,168,76,0.04);
}
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-card:hover::after { opacity: 1; }

.amenity-icon {
  font-size: 2.8rem;
  margin-bottom: 22px;
  display: block;
  transition: transform 0.5s var(--ease-spring);
}
.amenity-card:hover .amenity-icon { transform: scale(1.15) translateY(-4px); }

.amenity-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.amenity-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   GALLERY — MASONRY + REVEAL
   ══════════════════════════════════════════════════════ */
.gallery {
  background: transparent;
  padding-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 12px;
  max-width: 1340px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}
.gallery-item:hover img { transform: scale(1.1); }

/* Dark cinematic overlay */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,14,26,0.85) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.gallery-item:hover::before { opacity: 1; }

/* Zoom icon */
.gallery-item::after {
  content: '⟐';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  color: var(--gold);
  z-index: 3;
  transition: transform 0.5s var(--ease-spring);
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.5));
}
.gallery-item:hover::after { transform: translate(-50%, -50%) scale(1); }

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
.gallery-item:hover .gallery-item-overlay { transform: translateY(0); }
.gallery-item-overlay span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS — IMMERSIVE CAROUSEL
   ══════════════════════════════════════════════════════ */
.testimonials { background: transparent; }

.testimonials-carousel {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s var(--ease-out-expo);
}

.testimonial-card {
  min-width: 100%;
  padding: 56px 48px;
  text-align: center;
}

/* Large decorative quote mark */
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
}
.testimonial-stars .star {
  color: var(--gold);
  font-size: 1rem;
  animation: starPop 0.4s var(--ease-spring) both;
}
.testimonial-stars .star:nth-child(2) { animation-delay: 0.1s; }
.testimonial-stars .star:nth-child(3) { animation-delay: 0.2s; }
.testimonial-stars .star:nth-child(4) { animation-delay: 0.3s; }
.testimonial-stars .star:nth-child(5) { animation-delay: 0.4s; }
@keyframes starPop {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}

.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.85;
  margin-bottom: 36px;
}
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.testimonial-author-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}
.testimonial-author-info {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  position: relative;
}
.testimonial-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s var(--ease-spring);
}
.testimonial-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.5);
}
.testimonial-dot.active::after {
  opacity: 0.3;
  transform: scale(1);
}

/* ══════════════════════════════════════════════════════
   LOCATION SECTION
   ══════════════════════════════════════════════════════ */
.location { background: transparent; overflow: hidden; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.location-info { padding: 20px 0; }
.location-info .section-tag { justify-content: flex-start; }
.location-info .section-title { text-align: left; }

.location-details { margin-top: 36px; }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201,168,76,0.06);
  transition: all 0.3s;
}
.location-detail:hover { padding-left: 8px; }
.location-detail-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-spring);
}
.location-detail:hover .location-detail-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--gold-glow);
}
.location-detail-content h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.location-detail-content p {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  height: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: all 0.5s;
}
.location-map:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.2);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.6) brightness(0.75) contrast(1.15);
  transition: filter 0.5s;
}
.location-map:hover iframe { filter: saturate(1) brightness(0.9) contrast(1.05); }

/* ══════════════════════════════════════════════════════
   CTA SECTION — CINEMATIC
   ══════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 160px 60px;
  overflow: hidden;
  z-index: 1;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(6,14,26,0.75) 0%, rgba(6,14,26,0.95) 100%);
  backdrop-filter: blur(3px);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   FOOTER — PREMIUM
   ══════════════════════════════════════════════════════ */
.footer {
  background: rgba(6,14,26,0.95);
  border-top: 1px solid rgba(201,168,76,0.06);
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 90px 60px 60px;
}

.footer-brand { display: flex; flex-direction: column; gap: 22px; }
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand-logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.footer-brand-logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.footer-brand-logo-text .brand-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.3);
}
.footer-social a:hover::before { transform: scale(1); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.footer-newsletter { margin-top: 8px; }
.footer-newsletter p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  transition: border-color 0.3s;
}
.newsletter-form:focus-within { border-color: rgba(201,168,76,0.4); box-shadow: 0 0 20px rgba(201,168,76,0.1); }
.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(201,168,76,0.03);
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.83rem;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 15px 26px;
  background: var(--gold);
  border: none;
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  padding: 24px 60px;
  border-top: 1px solid rgba(201,168,76,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   LIGHTBOX — CINEMATIC MODAL
   ══════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(6, 14, 26, 0.96);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 88%;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(201,168,76,0.05);
  transform: scale(0.85) translateY(20px);
  transition: all 0.6s var(--ease-out-expo);
}
.lightbox.active img { transform: scale(1) translateY(0); }
.lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.3rem;
  background: rgba(6,14,26,0.5);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-spring);
}
.lightbox-close:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: rotate(90deg) scale(1.1);
}

/* ══════════════════════════════════════════════════════
   SCROLL-TRIGGERED ANIMATIONS
   ══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 1s var(--ease-out-expo);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s var(--ease-out-expo);
}
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.47s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.54s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 260px); }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
}

@media (max-width: 992px) {
  .section { padding: 100px 28px; }
  .navbar {
    width: calc(100% - 32px);
    padding: 12px 24px;
    top: 10px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 340px;
    background: rgba(6, 14, 26, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.5s var(--ease-out-expo);
    border-left: 1px solid rgba(201,168,76,0.08);
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 18px; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 480px; }
  .amenities-grid { grid-template-columns: 1fr; max-width: 400px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: auto; grid-row: auto; }
  .gallery-item { height: 260px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 50px 20px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; padding: 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section-header { margin-bottom: 56px; }
  .cta-section { padding: 80px 20px; }
  .location-map { height: 320px; }
  .cursor-dot, .cursor-ring, .cursor-glow { display: none !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .nav-logo-text .brand-name { font-size: 1rem; letter-spacing: 1.5px; }
  .section-title { font-size: 1.9rem; }
  .btn-primary, .btn-outline { padding: 15px 32px; font-size: 0.75rem; }
}
