/* ============================================
   HOTEL SOPAN HEIGHTS — 3D ANIMATED WEBSITE
   ============================================ */

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

:root {
  --navy: #0f192a;
  --navy-light: #1a2a42;
  --gold: #c8a45e;
  --gold-light: #e0c88a;
  --gold-dark: #a8843e;
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

body.custom-cursor, body.custom-cursor a, body.custom-cursor button,
body.custom-cursor .btn, body.custom-cursor .btn-sm, body.custom-cursor .nav-cta,
body.custom-cursor .indicator, body.custom-cursor .test-btn {
  cursor: none;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(200,164,94,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  background: rgba(200,164,94,0.08);
}

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

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

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

.preloader-logo {
  width: 80px;
  height: 80px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: preloaderPulse 1.5s ease infinite;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0.8;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.3s ease;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(2deg); }
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */
.particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

.section-header.center { text-align: center; margin-bottom: 56px; }
.section-header.center .section-desc { margin: 0 auto; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.7); }
.section-header.light .section-label { color: var(--gold-light); }

/* ---------- SCROLL REVEAL ---------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

/* ============================================
   BUTTONS — 3D + SHINE
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.btn:hover .btn-shine {
  animation: btnShine 0.8s ease forwards;
}

@keyframes btnShine {
  0% { left: -100%; }
  100% { left: 150%; }
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(200,164,94,0.3);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(200,164,94,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-sm {
  font-size: 0.85rem;
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-sm:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,164,94,0.3);
}

.full-width { width: 100%; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15,25,42,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

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

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

.logo-img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

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

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links { display: flex; list-style: none; gap: 32px; }

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

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

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.nav-cta:hover::after { width: 200px; height: 200px; }
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.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 — 3D PARALLAX
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
}

.hero-3d-scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.hero-bg-layer {
  position: absolute;
  inset: -40px;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(15,25,42,0.75) 0%, rgba(15,25,42,0.3) 50%, rgba(200,164,94,0.1) 100%);
}

.hero-glow-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,164,94,0.08) 0%, transparent 60%);
}

/* Floating decorative elements */
.hero-float-elements {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.float-ring {
  position: absolute;
  border: 1px solid rgba(200,164,94,0.15);
  border-radius: 50%;
}

.ring-1 {
  width: 400px; height: 400px;
  top: 10%; right: -5%;
  animation: floatRotate 20s linear infinite;
}

.ring-2 {
  width: 250px; height: 250px;
  bottom: 15%; right: 10%;
  animation: floatRotate 15s linear infinite reverse;
  border-color: rgba(200,164,94,0.1);
}

.ring-3 {
  width: 150px; height: 150px;
  top: 30%; right: 15%;
  animation: floatRotate 12s linear infinite;
  border-color: rgba(255,255,255,0.08);
}

.float-diamond {
  position: absolute;
  width: 20px; height: 20px;
  background: var(--gold);
  top: 25%; right: 20%;
  transform: rotate(45deg);
  opacity: 0.3;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatUpDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-20px); }
}

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

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
  transform-style: preserve-3d;
}

.hero-label-wrap { overflow: hidden; }

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.label-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-loaded .title-word {
  transform: translateY(0);
}

.title-word.accent {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(200,164,94,0.3);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.hero-loaded .hero-desc {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

.hero-loaded .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Hero indicators */
.hero-indicators {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}

.indicator {
  width: 40px; height: 4px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ind-fill {
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 5s linear;
}

.indicator.active {
  width: 60px;
}

.indicator.active .ind-fill {
  transform: scaleX(1);
}

/* Scroll prompt */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: gentleFloat 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   HIGHLIGHTS — 3D TILT
   ============================================ */
.highlights {
  background: var(--navy);
  position: relative;
  z-index: 10;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  transform-style: preserve-3d;
  perspective: 500px;
}

.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(255,255,255,0.04); }

.highlight-icon-wrap {
  color: var(--gold);
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,164,94,0.1);
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.highlight-item:hover .highlight-icon-wrap {
  transform: rotateY(180deg) scale(1.1);
}

.highlight-item strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--white); }
.highlight-item span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ============================================
   IMAGE SHINE EFFECT
   ============================================ */
.img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: none;
}

.parallax-img:hover .img-shine {
  animation: imgShine 0.8s ease forwards;
}

@keyframes imgShine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* ============================================
   ABOUT — PARALLAX
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--white);
  perspective: 1200px;
}

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

.about-images {
  position: relative;
  transform-style: preserve-3d;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-main:hover img { transform: scale(1.05); }

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-secondary:hover img { transform: scale(1.05); }

.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(200,164,94,0.4);
  animation: badgePulse 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(200,164,94,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(200,164,94,0.6); }
}

.badge-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.badge-text { font-size: 0.65rem; color: rgba(255,255,255,0.85); text-align: center; line-height: 1.3; }

/* 3D Decorative shapes */
.about-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.deco-1 {
  width: 200px; height: 200px;
  border: 2px solid rgba(200,164,94,0.12);
  bottom: -60px; left: -60px;
  animation: floatRotate 25s linear infinite;
}

.deco-2 {
  width: 80px; height: 80px;
  background: rgba(200,164,94,0.06);
  top: 50%; left: -40px;
  animation: floatUpDown 5s ease-in-out infinite;
}

.about-text { font-size: 1rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }

.about-features { margin-top: 32px; display: grid; gap: 20px; }

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.4s ease;
}

.about-feature:hover { transform: translateX(8px); }

.feature-icon-3d {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200,164,94,0.3);
  transition: transform 0.4s ease;
}

.about-feature:hover .feature-icon-3d {
  transform: rotateY(180deg);
}

.about-feature strong { font-size: 0.95rem; color: var(--navy); display: block; margin-bottom: 2px; }
.about-feature p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   ROOMS — 3D PERSPECTIVE CARDS
   ============================================ */
.rooms {
  padding: 120px 0;
  background: var(--gray-50);
  perspective: 1200px;
}

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

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.room-card:hover {
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.room-card.featured { box-shadow: 0 0 0 2px var(--gold), var(--shadow-md); }

.room-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.room-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.room-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,42,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}
.room-badge.accent { background: var(--gold); }

.room-info { padding: 28px; }

.room-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

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

.room-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }

.room-amenities span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 5px 12px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.room-amenities span:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}

.room-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 0.75rem; color: var(--gray-400); }
.price-amount { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.price-per { font-size: 0.8rem; color: var(--gray-400); }

/* ============================================
   AMENITIES — 3D FLIP CARDS
   ============================================ */
.amenities {
  padding: 120px 0;
  background: var(--navy);
  perspective: 1200px;
}

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

.amenity-card-3d {
  height: 200px;
  perspective: 600px;
}

.amenity-card-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-card-3d:hover .amenity-card-inner {
  transform: rotateY(180deg);
}

.amenity-front, .amenity-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
}

.amenity-front {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.amenity-back {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: rotateY(180deg);
}

.amenity-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.amenity-front h4 { font-size: 1rem; font-weight: 600; color: var(--white); }

.amenity-back p {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.6;
  font-weight: 500;
}

/* ============================================
   EVENTS
   ============================================ */
.events {
  padding: 120px 0;
  background: var(--white);
}

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

.events-text { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; }

.events-stats { display: flex; gap: 32px; margin-bottom: 28px; }

.event-stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label { font-size: 0.8rem; color: var(--gray-500); margin-top: 4px; }

.events-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.event-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-600);
  transition: transform 0.3s ease;
}
.event-feature:hover { transform: translateX(6px); }

.event-feature svg { color: var(--gold); flex-shrink: 0; }

.events-types { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.event-type {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 16px;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: 50px;
  border: 1px solid rgba(200,164,94,0.2);
  transition: all 0.3s ease;
}
.event-type:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.events-images {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 16px;
  align-items: end;
}

.event-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.event-img-1 {
  width: 100%; height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.event-img-wrap:hover .event-img-1 { transform: scale(1.05); }

.event-img-2 {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.event-img-wrap:hover .event-img-2 { transform: scale(1.05); }

/* ============================================
   GALLERY — 3D MASONRY
   ============================================ */
.gallery {
  padding: 120px 0;
  background: var(--gray-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
}

.gallery-item.large { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,42,0.85), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay span { font-size: 0.95rem; font-weight: 600; color: var(--white); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--navy);
}

.testimonials-slider { position: relative; overflow: hidden; }

.testimonial-track {
  display: flex;
  gap: 24px;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,164,94,0.2);
}

.testimonial-stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 24px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong { font-size: 0.9rem; color: var(--white); display: block; }
.testimonial-author span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.testimonial-controls { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }

.test-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.test-btn:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }

/* ============================================
   LOCATION
   ============================================ */
.location { padding: 120px 0; background: var(--white); }

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

.location-info p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; }

.nearby-places { display: grid; gap: 16px; }

.nearby-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  transition: all 0.4s ease;
}
.nearby-item:hover { background: var(--cream); transform: translateX(8px); }
.nearby-item svg { color: var(--gold); flex-shrink: 0; }
.nearby-item strong { font-size: 0.9rem; color: var(--navy); display: block; }
.nearby-item span { font-size: 0.8rem; color: var(--gray-500); }

.location-map {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 120px 0; background: var(--gray-50); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-cards { display: grid; gap: 16px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}
.contact-card:hover { box-shadow: var(--shadow-lg); }

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,164,94,0.15), rgba(200,164,94,0.05));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.5s ease;
}
.contact-card:hover .contact-icon { transform: rotateY(180deg) scale(1.1); }

.contact-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.contact-card a { display: block; font-size: 0.9rem; color: var(--gray-600); }
.contact-card a:hover { color: var(--gold); }
.contact-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all 0.4s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,164,94,0.12);
  transform: translateY(-1px);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: ctaGlow 8s ease infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20%, -10%); }
  66% { transform: translate(-15%, 20%); }
}

.cta-content { text-align: center; position: relative; z-index: 1; }

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.cta p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 60px 0 0; background: var(--gray-900); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-4px) rotateZ(5deg);
}

.footer-links h4, .footer-contact h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 18px; }
.footer-links a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.5); padding: 5px 0; }
.footer-links a:hover { color: var(--gold); transform: translateX(6px); }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .events-images { order: -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .testimonial-card { min-width: calc(50% - 12px); }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 350px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,25,42,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-scroll { display: none; }
  .float-ring, .float-diamond { display: none; }

  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-secondary { right: 0; bottom: -20px; width: 160px; }
  .about-deco { display: none; }

  .rooms-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }

  .events-stats { justify-content: center; }
  .events-features { grid-template-columns: 1fr; }
  .events-images { grid-template-columns: 1fr; }
  .event-img-1, .event-img-2 { height: 250px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.large { grid-column: span 2; }

  .testimonial-card { min-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { min-height: 600px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.large { grid-column: span 1; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-card-3d { height: 180px; }
  .events-stats { gap: 20px; }
  .stat-number { font-size: 1.8rem; }
}
