/* ============================================================
   CSS VARIABLES & THEME
   ============================================================ */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-theme='dark'] {
  --bg: #070707;
  --bg-2: #0d0d0d;
  --bg-3: #141414;
  --bg-card: #1a1918;
  --gold: #c9a96e;
  --gold-lt: #e8d5a3;
  --gold-dk: #9a7a45;
  --gold-dim: rgba(201, 169, 110, 0.18);
  --gold-glow: rgba(201, 169, 110, 0.08);
  --text: #f0ebe0;
  --text-2: #a09275;
  /* --text-3: #4a4035; */
  --text-3: #806b54;
  --border: rgba(201, 169, 110, 0.13);
  --nav-bg: rgba(7, 7, 7, 0.96);
  --modal-bg: rgba(0, 0, 0, 0.85);
  --input-bg: rgba(255, 255, 255, 0.04);
  --input-border: rgba(201, 169, 110, 0.25);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-theme='light'] {
  --bg: #f8f4ee;
  --bg-2: #ede8df;
  --bg-3: #ffffff;
  --bg-card: #ffffff;
  --gold: #8b6914;
  --gold-lt: #c9a96e;
  --gold-dk: #6a4f0f;
  --gold-dim: rgba(139, 105, 20, 0.1);
  --gold-glow: rgba(139, 105, 20, 0.06);
  --text: #0d0a07;
  --text-2: #4a3c28;
  --text-3: #9a8e7a;
  --border: rgba(139, 105, 20, 0.18);
  /* --nav-bg: rgba(248, 244, 238, 0.97); */
  --nav-bg: rgba(237, 232, 223, 0.97);
  --modal-bg: rgba(0, 0, 0, 0.7);
  --input-bg: rgba(0, 0, 0, 0.03);
  --input-border: rgba(139, 105, 20, 0.3);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
  transition:
    background 0.5s var(--ease),
    color 0.5s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body {
    cursor: auto;
  }
  .cursor-ring,
  .cursor-dot {
    display: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: var(--font-body);
  border: none;
  background: none;
  cursor: pointer;
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-lt);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0;
}
.preloader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.8s var(--ease);
}
.preloader-sub {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0;
  text-align: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 7%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
#navbar.scrolled {
  background: var(--nav-bg);
  border-bottom-color: var(--border);
  height: 68px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 70px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.nav-logo span {
  /* font-style: italic; */
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-nav {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all 0.3s var(--ease);
  font-family: var(--font-body);
}
.btn-nav:hover {
  background: var(--gold);
  color: #070707;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 1rem;
  background: var(--bg-card);
  transition: all 0.3s;
}
.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 1100;
  padding: 100px 40px 40px;
  transition: right 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav a:hover {
  color: var(--gold);
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1099;
  background: var(--modal-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: 25px;
  right: 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 1.2rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 1101;
}
.mobile-nav-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

/* ============================================================
   SECTION UTILITY
   ============================================================ */
section {
  position: relative;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0.02em;
}
.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  height: 100vh;
  /* min-height: 700px; */
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

/* BG Gradient */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--surface-1);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
}

.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
}

.hero-slider .slide-1 {
  background-image: url('./media/slider-image-02.jpg');
  animation: slideFadeInOut 32s infinite;
}

.hero-slider .slide-2 {
  background-image: url('./media/slider-image-01.jpg');
  animation: slideFadeInOut 32s infinite;
  animation-delay: 8s;
}

.hero-slider .slide-3 {
  background-image: url('./media/slider-image-03.jpg');
  animation: slideFadeInOut 32s infinite;
  animation-delay: 16s;
}

.hero-slider .slide-4 {
  background-image: url('./media/slider-image-04.jpg');
  animation: slideFadeInOut 32s infinite;
  animation-delay: 24s;
}

@keyframes slideFadeInOut {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  12% {
    opacity: 1;
    transform: scale(1.08);
  }
  25% {
    opacity: 1;
    transform: scale(1.03);
  }
  37% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* Building image */
.hero-building {
  z-index: 2;
  overflow: hidden;
}
.hero-building img {
  width: 100%;
  height: 130%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
  opacity: 0.65;
  filter: grayscale(20%) contrast(1.1);
  mask-image: linear-gradient(
    to top,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 20%,
    black 60%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 20%,
    black 60%,
    transparent 100%
  );
}

/* Vignette Overlay */
.hero-vignette {
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 7, 0.2) 0%,
    transparent 25%,
    transparent 75%,
    rgba(7, 7, 7, 0.8) 100%
  );
}

/* Content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 100px 5% 220px; */
  padding: 5%;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-logo {
  opacity: 0;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--gold);
  opacity: 0;
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.3vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 20px;
  opacity: 0;
}

.hero-divider {
  opacity: 0;
}

.hero-text {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  opacity: 0;
}
.hero-badge img {
  height: auto;
  max-width: 280px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-animation: badgePulse 2.5s infinite ease-in-out;
  animation: badgePulse 2.5s infinite ease-in-out;
}
.hero-badge:nth-child(2) img {
  max-width: 320px;
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.hero-badge-large img {
  position: absolute;
  left: 10vh;
  top: 15vh;
  max-width: 360px;
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

@-webkit-keyframes badgePulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes badgePulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.hero-ctas {
  display: flex;
  gap: 16px;
  /* margin-top: 36px; */
  margin-top: 0;
  opacity: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 36px;
  background: var(--gold);
  color: #070707;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  background: var(--gold-lt);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold-lt);
  background: transparent;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 20px;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 1;
  z-index: 9;
}
.scroll-cue span {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
}
.scroll-cue-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
  -webkit-animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
    transform-origin: top;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============================================================
   STATS MARQUEE
   ============================================================ */
.marquee-section {
  padding: 22px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: -moz-max-content;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  -webkit-animation: marqueeScroll 30s linear infinite;
}
.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  white-space: nowrap;
}
.marquee-stat {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-2);
}
.marquee-stat strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.marquee-diamond {
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.6;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  padding: 120px 5%;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.about-image-wrap {
  position: relative;
}
.about-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 600px;
}
.about-slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.about-slide {
  min-width: 100%;
  height: 100%;
}
.about-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(10%);
  -webkit-filter: grayscale(10%);
}

.about-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.about-nav:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.about-nav.prev {
  left: 15px;
}
.about-nav.next {
  right: 15px;
}
.about-image-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--border);
  z-index: -1;
  transition: all 0.5s var(--ease);
}
.about-image-wrap:hover .about-image-frame {
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
}

.about-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  padding: 20px 28px;
  text-align: center;
}
.about-tag-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: #070707;
  line-height: 1;
  display: block;
}
.about-tag-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(7, 7, 7, 0.7);
}

/* .about-content {
} */
.about-intro {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  color: var(--text-2);
  font-style: italic;
  margin: 24px 0;
}
.about-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-2);
  font-weight: 400;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  border: 1px solid var(--border);
}
.stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.3s;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: var(--gold-glow);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-num sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   LAYOUTS
   ============================================================ */
.glance-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.glance-table-wrap {
  margin-top: 50px;
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.glance-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background: var(--surface);
  white-space: nowrap;
}
.glance-table th {
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold);
  padding: 20px 15px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--gold);
}
.glance-table th span {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-3);
  letter-spacing: normal;
  text-transform: none;
  display: block;
  margin-top: 4px;
}
.glance-table td {
  padding: 20px 15px;
  color: var(--text-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}
.glance-table tbody tr:last-child td {
  border-bottom: none;
}
.glance-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.glance-table strong {
  color: var(--text);
  font-weight: 500;
}
.glance-table .price {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   FLOOR PLANS
   ============================================================ */
#floor-plans {
  padding: 120px 5%;
  background: var(--bg-2);
}
.floor-plans-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.floor-plans-inner p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 500px;
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.fp-header {
  margin-bottom: 60px;
}
.fp-tabs {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border-bottom: 1px solid var(--border);
}
.fp-tab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  color: var(--text-3);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.fp-tab::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-glow);
  opacity: 0;
  transition: opacity 0.3s;
}
.fp-tab:hover {
  color: var(--gold);
}
.fp-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.fp-tab.active::after {
  opacity: 1;
}

.fp-panel {
  display: none;
}
.fp-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-top: 50px;
  animation: fadeInUp 0.5s var(--ease);
  -webkit-animation: fadeInUp 0.5s var(--ease);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fp-plan-image {
  /* background: var(--bg-card); */
  /* border: 1px solid var(--border); */
  /* aspect-ratio: 4/3; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.fp-plan-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* padding: 20px; */
  cursor: pointer;
}

.fp-config-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.05em;
}
.fp-config-name em {
  color: var(--gold);
  font-style: italic;
}
.fp-area-badge {
  /* display: inline-block; */
  /* margin-top: 12px; */
  /* padding: 8px 16px; */
  /* background: var(--gold-dim); */
  /* border: 1px solid var(--border); */
  font-size: 1.2rem;
  color: var(--gold-lt);
  letter-spacing: 0.1em;
}
.fp-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-2);
  font-weight: 400;
  margin: 20px 0;
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.fp-desc p,
.fp-desc ul {
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  page-break-inside: avoid;
}
.fp-desc .section-heading {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 12px;
}
.fp-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}
.fp-features li {
  font-size: 0.78rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.03em;
}
.fp-features li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.fp-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--border);
  margin: 24px 0;
}
.fp-spec {
  padding: 16px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
}
.fp-spec:nth-child(even) {
  border-right: none;
}
.fp-spec-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.fp-spec-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
}
.fp-ctas {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   PROJECT HIGHLIGHTS
   ============================================================ */
.project-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  line-height: 1.6;

  @media (max-width: 102px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 768px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.project-highlights .section-heading {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.2rem;
  margin-block: 24px 12px;
}

/* ============================================================
   COMMERCIAL SHOPS
   ============================================================ */
#commercial {
  padding: 120px 5%;
  background: var(--bg);
}
.commercial-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.commercial-header {
  margin-bottom: 60px;
}
.commercial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.commercial-img-wrap {
  position: relative;
}
.retail-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 600px;
}
.retail-slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.retail-slide {
  min-width: 100%;
  height: 100%;
}
.retail-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(10%);
  -webkit-filter: grayscale(10%);
}
.retail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.retail-nav:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.retail-nav.prev {
  left: 15px;
}
.retail-nav.next {
  right: 15px;
}
.commercial-img-layer {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--border);
  z-index: -1;
  transition: all 0.5s var(--ease);
}
.commercial-img-wrap:hover .commercial-img-layer {
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
}
.commercial-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold);
  padding: 24px 28px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: #070707;
  line-height: 1.2;
}

.commercial-features {
  list-style: none;
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.commercial-features li {
  padding-left: 20px;
  position: relative;
}
.commercial-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 0.7rem;
}
.commercial-feat-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 4px;
}
.commercial-feat-sub {
  font-size: 0.85rem;
  color: var(--text-3);
  pointer-events: none;
}

.commercial-fp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.retail-fp-item img {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: border-color 0.3s;
  cursor: pointer;
}
.retail-fp-item img:hover {
  border-color: var(--gold);
}
.retail-fp-label {
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* ========== FLOATING SIDEBAR ========== */
@keyframes sidebarFloat {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-10px);
  }
}

.floating-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  right: auto;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: sidebarFloat 5s infinite ease-in-out;
}

.float-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--gold);
  color: #fff;
  padding: 10px;
  text-decoration: none;
  width: 40px;
  height: 40px;
  overflow: hidden;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
  border-radius: 0 8px 8px 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

@keyframes pulseAttention {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.float-item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: #fff;
  animation: pulseAttention 2s infinite ease-in-out;
}

.float-item span {
  white-space: nowrap;
  margin-left: 12px;
  opacity: 0;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  transition: opacity 0.3s ease 0.1s;
}

@keyframes rippleGold {
  0% {
    box-shadow:
      2px 2px 10px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(212, 175, 55, 0.6);
  }
  70% {
    box-shadow:
      2px 2px 10px rgba(0, 0, 0, 0.2),
      0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow:
      2px 2px 10px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(212, 175, 55, 0);
  }
}
@keyframes rippleWa {
  0% {
    box-shadow:
      2px 2px 10px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow:
      2px 2px 10px rgba(0, 0, 0, 0.2),
      0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      2px 2px 10px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@keyframes rippleCall {
  0% {
    box-shadow:
      2px 2px 10px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(2, 132, 199, 0.6);
  }
  70% {
    box-shadow:
      2px 2px 10px rgba(0, 0, 0, 0.2),
      0 0 0 15px rgba(2, 132, 199, 0);
  }
  100% {
    box-shadow:
      2px 2px 10px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(2, 132, 199, 0);
  }
}

.float-site {
  animation: rippleGold 2s infinite;
}

.float-item:hover {
  width: 180px;
  background-color: #b3912a; /* Darker gold */
  animation: none;
}

.float-item:hover span {
  opacity: 1;
}

.float-wa {
  background-color: #25d366;
  animation: rippleWa 2s infinite;
}

.float-wa:hover {
  background-color: #128c7e;
  animation: none;
}

.float-call {
  background-color: #0284c7;
  animation: rippleCall 2s infinite;
}

.float-call:hover {
  background-color: #0369a1;
  animation: none;
}

@media (max-width: 768px) {
  .floating-sidebar {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    animation: none;
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  .float-item {
    flex-direction: column;
    justify-content: center;
    width: 33.33%;
    height: 56px;
    padding: 6px;
    border-radius: 0;
    box-shadow: none;
  }
  .float-item:hover {
    width: 33.33%;
  }
  .float-item svg {
    margin-bottom: 2px;
  }
  .float-item span {
    display: block;
    margin-left: 0;
    opacity: 1;
    font-size: 11px;
    white-space: normal;
    text-align: center;
    line-height: 1.1;
  }
}

/* ========== MODAL ========== */
/* ============================================================
   AMENITIES
   ============================================================ */
#amenities {
  padding: 120px 5%;
  background: var(--bg);
}
.amenities-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.amenities-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.amenities-intro {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-2);
  font-weight: 400;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
}
.amenity-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.amenity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.amenity-card:hover::before {
  opacity: 1;
}
.amenity-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  margin-bottom: 18px;
}
.amenity-icon svg {
  width: 100%;
  height: 100%;
}
.amenity-name {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 8px;
}
.amenity-desc {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text-3);
  font-weight: 400;
}

/* ============================================================
   VIRTUAL TOUR
   ============================================================ */
#virtual-tour {
  padding: 120px 5%;
  background: var(--bg-2);
}
.vt-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.vt-header {
  margin-bottom: 50px;
}

.vt-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  border: 1px solid var(--border);
  overflow: hidden;
}
.experience-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.experience-slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.experience-slide {
  min-width: 100%;
  height: 100%;
}
.experience-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(10%);
  -webkit-filter: grayscale(10%);
}
.experience-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.experience-nav:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.experience-nav.prev {
  left: 15px;
}
.experience-nav.next {
  right: 15px;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: 120px 5%;
  background: var(--bg);
}
.gallery-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-header {
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}
.gallery-item:nth-child(2) {
  grid-column: span 5;
}
.gallery-item:nth-child(3) {
  grid-column: span 5;
}
.gallery-item:nth-child(4) {
  grid-column: span 4;
}
.gallery-item:nth-child(5) {
  grid-column: span 4;
}
.gallery-item:nth-child(6) {
  grid-column: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(10%);
  -webkit-filter: grayscale(10%);
  transition:
    transform 0.8s var(--ease),
    filter 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 7, 0.7) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-caption {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* ============================================================
   LOCATION
   ============================================================ */
#location {
  padding: 120px 5%;
  background: var(--bg-2);
}
.location-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-map {
  margin-top: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.85;
}
.location-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-card));
  color: var(--text-3);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 12px;
}
.location-map-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 0.5;
}

.loc-points {
  list-style: none;
  margin-top: 40px;
}
.loc-point {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  /* padding: 18px 16px; */
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-card) 100%);
  transition: all 0.3s var(--ease-out);
}
.loc-point:hover {
  background: var(--bg-card);
  border-color: var(--gold-dim);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.1);
}
.loc-point:last-child {
  margin-bottom: 0;
}
.loc-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.4rem;
  background: rgba(201, 169, 110, 0.08);
  transition: all 0.3s var(--ease-out);
}
.loc-point:hover .loc-icon {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.15);
  transform: scale(1.1);
}
.loc-icon svg {
  width: 16px;
  height: 16px;
}
.loc-name {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.loc-sub {
  font-size: 0.73rem;
  color: var(--text-3);
  margin-top: 3px;
  letter-spacing: 0.2px;
}
.loc-dist {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  white-space: nowrap;
  text-align: right;
  transition: color 0.3s var(--ease-out);
}
.loc-point:hover .loc-dist {
  color: var(--gold-lt);
}

/* ============================================================
   DEVELOPER PROFILE
   ============================================================ */
#developer {
  padding: 120px 5%;
  background: var(--bg);
}
.developer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dev-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dev-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.dev-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(7, 7, 7, 0.9), transparent);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-2);
}

.dev-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.dev-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 30px;
}
.dev-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-2);
  font-weight: 400;
}
.dev-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.dev-stat {
  text-align: center;
}
.dev-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.dev-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   CONTACT / LEAD FORM SECTION
   ============================================================ */
#contact {
  padding: 120px 5%;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: 'SKYVISTA';
  position: absolute;
  right: -5%;
  top: 50%;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 20rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  line-height: 1;
  pointer-events: none;
  letter-spacing: 0.1em;
  transform: translateY(-50%);
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-header {
  margin-bottom: 60px;
}
.contact-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--text-2);
  margin-top: 16px;
}

.form-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}
.form-tab {
  padding: 12px 28px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-3);
  background: transparent;
  font-family: var(--font-body);
  transition: all 0.3s;
}
.form-tab:first-child {
  border-right: none;
}
.form-tab.active {
  background: var(--gold);
  color: #070707;
  border-color: var(--gold);
  font-weight: 600;
}

.form-panel {
  display: none;
}
.form-panel.active {
  display: block;
  animation: fadeInUp 0.4s var(--ease);
  -webkit-animation: fadeInUp 0.4s var(--ease);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
}
.form-input::-moz-placeholder,
.form-textarea::-moz-placeholder {
  color: var(--text-3);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-3);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form-select option {
  background: var(--bg-3);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-disclaimer {
  font-size: 0.68rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-top: 16px;
  grid-column: span 2;
}
.form-submit-wrap {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: 120px 5%;
  background: var(--bg);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-header {
  margin-bottom: 60px;
}
.faq-list {
  list-style: none;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  cursor: inherit;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: all 0.3s;
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.faq-item.open .faq-icon svg {
  color: #070707;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-answer-inner {
  padding: 0 40px 24px 0;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-2);
  font-weight: 400;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.footer-brand .nav-logo {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-3);
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  font-size: 0.82rem;
  color: var(--text-3);
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-rera {
  font-size: 0.7rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 700px;
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--text-3);
  white-space: nowrap;
}

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.sticky-book {
  background: var(--gold);
  color: #070707;
  animation: ctaPulse 3s ease-in-out infinite;
}
.sticky-book:hover {
  background: var(--gold-lt);
  transform: translateX(-4px);
}
.sticky-wa {
  background: #25d366;
  color: #fff;
}
.sticky-wa:hover {
  background: #128c7e;
  transform: translateX(-4px);
}
.sticky-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(201, 169, 110, 0);
  }
}

/* Left-side scroll buttons */
.sticky-cta-left {
  position: fixed;
  right: 30px;
  left: auto;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.sticky-scroll-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: none; /* Hidden by default, controlled by JS */
  transition: all 0.3s var(--ease);
}

.sticky-scroll-btn:hover {
  background: var(--gold);
  color: #070707;
  border-color: var(--gold);
  transform: scale(1.1);
}

.sticky-scroll-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--modal-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.4s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--ease);
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 36px 36px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
}
.modal-sub {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 4px;
}
.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  flex-shrink: 0;
  font-size: 1.2rem;
  background: none;

  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all 0.3s;
}
.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.modal-body {
  padding: 28px 36px 36px;
}
.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.modal-form-grid .form-group.full {
  grid-column: span 2;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.4s var(--ease);
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.95);
  transition: transform 0.4s var(--ease);
}
.lightbox-overlay.open .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 2501;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid,
  .commercial-grid,
  .location-inner,
  .developer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .about-image-wrap {
    max-height: 400px;
  }
  .about-slider-container {
    height: 400px;
  }
  .amenities-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .cursor-ring,
  .cursor-dot {
    display: none;
  }
  .btn-primary {
    padding: 8px 16px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .nav-links,
  .btn-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-eyebrow {
    display: block;
    text-align: center;
    letter-spacing: 0.3em;
    padding: 0 15px;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    display: none;
  }
  .hero-countdown {
    bottom: 90px;
    transform: translateX(-50%) scale(0.9);
  }
  .scroll-cue {
    bottom: 80px;
    opacity: 0.6; /* Slight fade so it doesn't distract */
  }
  .fp-panel.active {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .form-submit-wrap {
    grid-column: span 1;
  }
  .form-disclaimer {
    grid-column: span 1;
  }
  .about-tag,
  .commercial-badge {
    padding: 10px 16px;
    left: 0px;
    bottom: 0px;
    right: auto;
    top: auto;
  }
  .commercial-badge {
    font-size: 1.2rem;
  }
  .commercial-fp-grid {
    grid-template-columns: 1fr;
  }
  .retail-slider-container {
    height: 350px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .hero-countdown {
    bottom: 120px;
    gap: 0;
  }
  .countdown-item {
    padding: 10px 14px;
    min-width: 60px;
  }
  .modal-form-grid {
    grid-template-columns: 1fr;
  }
  .modal-form-grid .form-group.full {
    grid-column: span 1;
  }
  .modal-body,
  .modal-header {
    padding: 20px;
  }
  .sticky-cta {
    bottom: 16px;
    right: 36px;
  }
  .sticky-cta-left {
    bottom: 16px;
    left: 16px;
  }
  .sticky-cta-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .sticky-cta-btn > span {
    display: none;
  }
  .fp-specs {
    grid-template-columns: 1fr;
  }
  .fp-spec {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  #contact::before {
    display: none;
  }
  .dev-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fp-features {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .fp-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .fp-tabs::-webkit-scrollbar {
    height: 3px;
    background: var(--bg-2);
  }
  .fp-tabs::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
  }
  .fp-tab {
    white-space: nowrap;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .form-tabs {
    flex-direction: column;
  }
  .form-tab:first-child {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-slider .slide-1 {
    background-image: url('./media/slider-image-02-responsive.jpg');
  }
  .hero-slider .slide-2 {
    background-image: url('./media/slider-image-01-responsive.jpg');
  }
  .hero-slider .slide-3 {
    background-image: url('./media/slider-image-03-responsive.jpg');
  }
  .hero-slider .slide-4 {
    background-image: url('./media/slider-image-04-responsive.jpg');
  }
}

@media (max-width: 768px) {
  .hero-badge-large img {
    left: unset;
    top: 15vh;
    right: 12.5%;
    max-width: 240px;
  }

  .hero-content {
    padding: 35vh 5% 0;
  }
}
