/* ========================================
   ANANT TOWERS — Ultra-Premium Design System
   ======================================== */

/* --- CSS Variables --- */
:root {
  --black: #070707;
  --black-light: #0f0f10;
  --black-card: #16161a;
  --gold: #c9a24c;
  --gold-light: #e6d59a;
  --gold-dark: #9c7b2e;
  --gold-soft: rgba(201, 162, 76, 0.14);
  --white: #f3efe6;
  --white-pure: #ffffff;
  --gray: #8a8781;
  --gray-dark: #2c2c2e;
  --gray-light: #c7c3ba;
  --glass-bg: rgba(255, 255, 255, 0.035);
  --glass-border: rgba(201, 162, 76, 0.18);
  --glass-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-gold: 0 20px 60px rgba(201, 162, 76, 0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --max-width: 1320px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.75;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* subtle warm depth wash behind everything for a richer, less flat look */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 78% -10%, rgba(201, 162, 76, 0.08), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(201, 162, 76, 0.05), transparent 55%);
}
::selection { background: rgba(201, 162, 76, 0.28); color: var(--white-pure); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img {
  max-width: 100%;
  height: auto;
  display: block;
  /* image protection: block dragging, selecting and long-press save menus */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  /* image is never the direct click/right-click/drag target — the container
     is, so browser "Save image as" never targets the real file */
  pointer-events: none;
}
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: var(--font-body);
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.18; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { font-size: clamp(0.95rem, 1.2vw, 1.1rem); color: var(--gray-light); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.7;
}
.section-label::after { background: linear-gradient(90deg, var(--gold), transparent); }
/* left-aligned labels only need a trailing line */
:not(.text-center) > .section-label:not([data-center])::before { display: none; }
.section-title { margin-bottom: 1.2rem; }
.section-desc { max-width: 640px; margin-bottom: 2.5rem; }

/* --- Layout --- */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--black); }
.section-darker { background: var(--black-light); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.text-center { text-align: center; }

/* --- Glassmorphism Card --- */
.glass-card {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
/* faint top edge highlight — a signature of premium glass surfaces */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 213, 154, 0.5), transparent);
}
.glass-card:hover {
  border-color: rgba(201, 162, 76, 0.55);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
/* light sweep across every button on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::after { left: 130%; }
.btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
  color: #1a1408;
  box-shadow: 0 10px 30px rgba(201, 162, 76, 0.18);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 162, 76, 0.34);
}
.btn-outline {
  border: 1px solid rgba(201, 162, 76, 0.5);
  color: var(--gold);
  background: rgba(201, 162, 76, 0.04);
}
.btn-outline:hover {
  background: var(--gold);
  color: #1a1408;
  border-color: var(--gold);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}

/* --- Site-wide scroll progress bar --- */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 1002;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(201, 162, 76, 0.6);
  transition: width 0.08s linear;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
  /* transparent, with only a faint top fade so the links stay readable */
  background: linear-gradient(180deg, rgba(4, 4, 6, 0.28), transparent);
}
.navbar.scrolled {
  padding: 15px 0;
  background: linear-gradient(180deg, rgba(4, 4, 6, 0.34), transparent);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.nav-logo span { color: var(--white); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.2) 40%,
    rgba(10, 10, 10, 0.6) 70%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-title { margin-bottom: 1.5rem; color: var(--white-pure); }
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--gray-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 2.5s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* --- Scroll Animations --- */
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.reveal { opacity: 0; transform: translateY(48px) scale(0.985); transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }
.reveal-left { opacity: 0; transform: translateX(-48px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(48px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-scale.active { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Gold Divider --- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* --- Cursor Spotlight (desktop only) --- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.10) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
  will-change: transform;
}
.cursor-glow.active { opacity: 1; }

/* --- Particles Container --- */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  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); }
}

/* --- Scroll-Driven Video Section (Premium 3D) --- */
.scroll-video-section {
  position: relative;
  height: 600vh;
  background: var(--black);
}
.scroll-video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 3D viewing space for the video stage */
  perspective: 1600px;
  perspective-origin: 50% 45%;
}
/* The 3D stage: pure dolly-zoom so the frame ALWAYS fully covers.
   No rotation on the image plane => never exposes the black background. */
.scroll-video-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform;
  transform-origin: 50% 50%;
  /* --scale driven by JS, always >= 1 so there are zero black edges */
  transform: scale(var(--scale, 1.05));
  transition: transform 0.12s linear;
}
.scroll-video-stage::after {
  /* subtle inner frame glow for a crafted, premium edge */
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 160px 20px rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 2;
}
.scroll-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
  background: var(--black);
  opacity: 0;
  transition: opacity 0.8s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.scroll-frame-img.loaded {
  opacity: 1;
}

/* Cinematic moving light sweep */
.scroll-video-sheen {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(226, 201, 126, 0.06) 48%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(226, 201, 126, 0.06) 52%,
    transparent 70%
  );
  background-size: 250% 250%;
  animation: sheenMove 9s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes sheenMove {
  0% { background-position: 120% 0; }
  100% { background-position: -20% 0; }
}

.scroll-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.scroll-video-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  /* strong, clean cinematic scrim rising from the bottom (title-card style)
     plus a gentle darkening from the bottom-left corner where the text sits */
  background:
    linear-gradient(180deg,
      rgba(6, 6, 8, 0.42) 0%,
      transparent 20%,
      transparent 40%,
      rgba(6, 6, 8, 0.45) 66%,
      rgba(6, 6, 8, 0.9) 100%),
    linear-gradient(60deg,
      rgba(6, 6, 8, 0.6) 0%,
      rgba(6, 6, 8, 0.2) 35%,
      transparent 60%);
}
.scroll-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  /* subtle cinematic vignette to frame the shot */
  background: radial-gradient(ellipse at 50% 40%, transparent 45%, rgba(6,6,8,0.5) 100%);
}

/* Premium loader */
.scroll-video-loader {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background: var(--black);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.scroll-video-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.15);
  border-top-color: var(--gold);
  animation: rotate 1s linear infinite;
}
.loader-text {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
.scroll-text-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 clamp(1.5rem, 8vw, 9rem) clamp(6rem, 15vh, 11rem);
  pointer-events: none;
  perspective: 1300px;
  perspective-origin: 30% 60%;
}
.scroll-text-block {
  position: relative;
  text-align: left;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
  /* motion is driven continuously by JS (scroll-linked) — no CSS transition
     so every frame updates instantly for a buttery, cinematic feel */
  max-width: 620px;
  pointer-events: none;
}
/* thin gold rule that sits above each headline for an editorial, premium feel */
.scroll-text-block h2::before {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.6rem;
}
.scroll-text-block h2 {
  font-size: clamp(2.3rem, 5.4vw, 4.4rem);
  color: var(--white-pure);
  margin-bottom: 1.2rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.scroll-text-block p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(247, 243, 236, 0.9);
  max-width: 520px;
  margin: 0;
}
.scroll-progress-bar {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.scroll-progress-track {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.scroll-progress-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--black-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--glass-border);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201, 168, 76, 0.05); }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 2px; }

/* --- Feature Cards --- */
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  perspective: 1000px;
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.feature-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-card:hover .feature-card-image img { transform: scale(1.08); }
.feature-card-body { padding: 1.8rem; }
.feature-card-body h3 { margin-bottom: 0.6rem; color: var(--white); }
.feature-card-body p { font-size: 0.9rem; }

/* --- Interior Gallery Strip --- */
.gallery-strip {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip-item {
  flex: 0 0 340px;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.gallery-strip-item:hover { border-color: var(--gold); }
.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-strip-item:hover img { transform: scale(1.05); }
.gallery-strip-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-strip-item:hover .overlay { opacity: 1; }
.gallery-strip-item .overlay span { font-weight: 600; font-size: 0.95rem; color: var(--white); }

/* --- Full Gallery (gallery page) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 280px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.gallery-item:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(201, 162, 76, 0.12);
  position: relative;
  transform: scale(0.8);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay span { transform: scale(1); }
.gallery-overlay span::before,
.gallery-overlay span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.gallery-overlay span::before { width: 18px; height: 1.5px; }
.gallery-overlay span::after { width: 1.5px; height: 18px; }

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
  background: var(--glass-bg);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.2);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  padding: 1rem;
  z-index: 10;
  transition: var(--transition);
}
.lightbox-nav:hover { color: var(--gold); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- Amenity Cards --- */
.amenity-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.amenity-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.amenity-card-image { height: 220px; overflow: hidden; }
.amenity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.amenity-card:hover .amenity-card-image img { transform: scale(1.08); }
.amenity-card-body { padding: 1.5rem; }
.amenity-card-body h3 { margin-bottom: 0.5rem; color: var(--white); }
.amenity-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* --- Premium line-icon system (replaces all emoji) --- */
.lux-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  background: radial-gradient(circle at 32% 26%, rgba(201, 162, 76, 0.20), rgba(201, 162, 76, 0.03) 70%);
  margin: 0 auto 1.1rem;
  transition: var(--transition);
}
.lux-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.connectivity-card:hover .lux-icon,
.glass-card:hover .lux-icon,
.amenity-card:hover .lux-icon {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 162, 76, 0.25);
}
/* inline icon used inside contact rows */
.lux-icon-sm {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  margin: 0;
}
.lux-icon-sm svg { width: 22px; height: 22px; }

/* elegant checklist marker */
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0 !important;
  color: var(--gray-light);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.check-list li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* numbered step badge (replaces plain number blocks) */
.step-badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  border: 1px solid var(--glass-border);
  background: radial-gradient(circle at 32% 26%, rgba(201, 162, 76, 0.16), transparent 70%);
}

/* --- Pricing Cards --- */
.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08), transparent);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.pricing-type { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.pricing-value { font-family: var(--font-heading); font-size: 2.2rem; color: var(--white); margin-bottom: 0.3rem; }
.pricing-area { font-size: 0.9rem; color: var(--gray); margin-bottom: 2rem; }
.pricing-features { margin-bottom: 2rem; }
.pricing-features li { padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--gray-light); }

/* --- Forms --- */
.form-group { margin-bottom: 1.5rem; position: relative; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-dark); }

/* --- Footer --- */
.footer {
  background: var(--black-light);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand { }
.footer-brand h3 { font-family: var(--font-heading); color: var(--gold); font-size: 1.4rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: var(--gray); max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--gray); padding: 0.3rem 0; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* --- Location Page --- */
.connectivity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.connectivity-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: var(--transition);
}
.connectivity-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.connectivity-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.connectivity-card h4 { margin-bottom: 0.3rem; color: var(--white); }
.connectivity-card p { font-size: 0.85rem; }

/* --- Parallax Section --- */
.parallax-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
}
.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Page Transition --- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.page-transition.active { opacity: 1; pointer-events: all; }

/* --- Tabs --- */
.tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.tab {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}
.tab.active, .tab:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ========================================
   RESPONSIVE — Mobile First
   ======================================== */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .connectivity-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 200px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 1.5rem 1rem; }
  .hero { min-height: 100vh; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .feature-card-image { height: 200px; }
  .gallery-strip-item { flex: 0 0 280px; height: 200px; }
  .pricing-card { padding: 2rem 1.5rem; }
  .connectivity-grid { grid-template-columns: 1fr; }
  .parallax-section { height: 40vh; min-height: 300px; }
  .lightbox-nav { font-size: 1.5rem; padding: 0.5rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 15px; right: 15px; width: 40px; height: 40px; font-size: 1.5rem; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
}

@media (max-width: 480px) {
  .container { width: 92%; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 240px; }
  .filter-tabs { gap: 0.5rem; }
  .filter-tab { padding: 8px 16px; font-size: 0.8rem; }
  .tabs { gap: 0.4rem; }
  .tab { padding: 8px 18px; font-size: 0.8rem; }
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; }
  .btn { padding: 12px 28px; font-size: 0.9rem; }
}
