/* ============================================
   DREAM AURA - Luxury Real Estate
   Premium Design System
   ============================================ */

/* Custom Font Faces */
@font-face {
  font-family: "Zenitha";
  src: url("../fonts/ZenithaClassic_PERSONAL_USE_ONLY.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Ocean Delight";
  src: url("../fonts/Ocean Delight.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Blue Mirage";
  src: url("../fonts/blue-mirage.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

/* CSS Custom Properties */
:root {
  /* Colors - Deep Navy & Gold */
  --navy-900: #050a15;
  --navy-800: #0a1628;
  --navy-700: #0f2744;
  --navy-600: #1a3a5c;
  --navy-500: #2a4a6c;

  --gold-400: #e8d5a3;
  --gold-500: #d4b86d; /* Brightened for better contrast */
  --gold-600: #a8893f;

  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-60: rgba(255, 255, 255, 0.75);
  --white-50: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.65);
  --white-30: rgba(255, 255, 255, 0.6);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);

  --cream: #faf8f3;
  --cream-dark: #f0ebe0;

  /* Typography */
  --font-display: "Cormorant Garamond", "Zenitha", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;
  --font-script: "Ocean Delight", cursive;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--navy-800);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
  background: rgba(5, 10, 21, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 45px;
  width: auto;
}

.nav__logo-dream {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.nav__logo-aura {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white-70);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--duration-fast) var(--ease-out);
}

/* ============================================
   HERO SECTION - CINEMATIC EDITORIAL LUXURY
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy-800);
  overflow: hidden;
}

/* Background Layers */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 100% 80% at 0% 50%,
      rgba(201, 169, 98, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 140% 100% at 85% 50%,
      rgba(201, 169, 98, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 80% 100% at 100% 100%,
      rgba(201, 169, 98, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 60% at 50% 0%,
      rgba(201, 169, 98, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 100% 100% at 20% 80%,
      rgba(15, 39, 68, 0.8) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      var(--navy-900) 0%,
      var(--navy-800) 50%,
      #0d1f35 100%
    );
}

/* Gold Ambient Orbs - Luxurious floating light */
.hero__gold-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbPulse 8s ease-in-out infinite, orbFadeIn 2s ease-out forwards;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 98, 0.35) 0%,
    transparent 70%
  );
  top: -15%;
  left: -10%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(232, 213, 163, 0.25) 0%,
    transparent 70%
  );
  bottom: -10%;
  right: 20%;
  animation-delay: 2s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 98, 0.3) 0%,
    transparent 70%
  );
  top: 30%;
  right: -5%;
  animation-delay: 4s;
}

.hero__orb--4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(232, 213, 163, 0.2) 0%,
    transparent 70%
  );
  bottom: 20%;
  left: 30%;
  animation-delay: 1s;
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2) translate(10px, -10px);
    opacity: 0.9;
  }
}

@keyframes orbFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}

/* Floating Gold Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-500), 0 0 20px rgba(201, 169, 98, 0.5);
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes particleFloat {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Gold Vignette - Luxury Edge Glow */
.hero__noise::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 100% 100% at 50% 50%,
      transparent 40%,
      rgba(201, 169, 98, 0.08) 100%
    ),
    linear-gradient(180deg, rgba(201, 169, 98, 0.1) 0%, transparent 20%),
    linear-gradient(0deg, rgba(201, 169, 98, 0.08) 0%, transparent 15%);
  pointer-events: none;
}

/* Decorative Organic Shapes - CSS-based for performance */
.hero__leaves {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: heroLeavesIn 2s var(--ease-out) forwards;
}

.hero__leaves--back {
  inset: 0;
  background: radial-gradient(
      ellipse 60% 80% at 10% 85%,
      rgba(201, 169, 98, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 70% 60% at 95% 15%,
      rgba(201, 169, 98, 0.28) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 70% at 80% 75%,
      rgba(201, 169, 98, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 45% 55% at 5% 25%,
      rgba(201, 169, 98, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 55% 65% at 50% 50%,
      rgba(201, 169, 98, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 50% at 50% 5%,
      rgba(201, 169, 98, 0.15) 0%,
      transparent 50%
    );
  animation: heroLeavesIn 2.5s var(--ease-out) 0.2s forwards;
}

.hero__leaves--front {
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: radial-gradient(
      ellipse 90% 110% at 100% 0%,
      rgba(201, 169, 98, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 80% 100% at 85% 100%,
      rgba(201, 169, 98, 0.22) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 70% at 60% 35%,
      rgba(201, 169, 98, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 60% at 25% 15%,
      rgba(201, 169, 98, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 50% at 40% 70%,
      rgba(201, 169, 98, 0.1) 0%,
      transparent 50%
    );
  animation: heroLeavesIn 2s var(--ease-out) 0.5s forwards;
}

@keyframes heroLeavesIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gold Accent Lines */
.hero__accents {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__accent-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
}

.hero__accent-line--top {
  top: 0;
  left: 5%;
  right: 40%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--gold-500),
    var(--gold-400),
    transparent
  );
  animation: accentReveal 1.5s var(--ease-out) 0.8s forwards;
  box-shadow: 0 0 15px rgba(201, 169, 98, 0.4);
}

.hero__accent-line--top::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  transform: translate(50%, -50%);
  box-shadow: 0 0 15px rgba(201, 169, 98, 0.6);
}

.hero__accent-line--bottom {
  bottom: 0;
  right: 5%;
  left: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-400),
    var(--gold-500)
  );
  animation: accentReveal 1.5s var(--ease-out) 1s forwards;
  box-shadow: 0 0 15px rgba(201, 169, 98, 0.4);
}

.hero__accent-line--left {
  top: 15%;
  bottom: 25%;
  left: 40px;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--gold-500),
    var(--gold-400),
    transparent
  );
  animation: accentReveal 1.5s var(--ease-out) 1.2s forwards;
  box-shadow: 0 0 15px rgba(201, 169, 98, 0.3);
}

.hero__accent-line--left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--gold-400);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 25px rgba(201, 169, 98, 0.7);
}

@keyframes accentReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}

/* Main Grid Layout */
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px var(--space-xl) 15px;
  flex: 1;
}

/* Primary Content - Left */
.hero__primary {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Intro Tag */
.hero__intro {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-500);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--white-10);
  opacity: 0;
  animation: heroSlideIn 0.8s var(--ease-out) 0.3s forwards;
}

/* Stats Row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  animation: heroSlideIn 0.8s var(--ease-out) 0.5s forwards;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-50);
}

.hero__stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--gold-500),
    transparent
  );
  opacity: 0.4;
}

/* Description */
.hero__desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-70);
  max-width: 380px;
  opacity: 0;
  animation: heroSlideIn 0.8s var(--ease-out) 0.7s forwards;
}

/* Developer Badge */
.hero__by {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--white-10);
  opacity: 0;
  animation: heroSlideIn 0.8s var(--ease-out) 0.9s forwards;
}

.hero__by span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
}

.hero__by strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}

.hero__since {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* Brand/Logo */
.hero__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  animation: heroSlideIn 1s var(--ease-out) 0.3s forwards;
}

.hero__brand-dream {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.hero__brand-aura {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white);
  line-height: 0.9;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero__brand-line {
  width: 60px;
  height: 2px;
  background: var(--gold-500);
  margin-top: var(--space-sm);
  transform-origin: left;
  transform: scaleX(0);
  animation: lineGrow 0.8s var(--ease-out) 0.8s forwards;
}

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

/* Tagline - Stacked: "Live" on top, "THE AURA OF" tucked below */
.hero__tagline-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: var(--space-xs);
  opacity: 0;
  animation: heroSlideIn 1s var(--ease-out) 0.3s forwards;
}

.hero__live {
  font-family: var(--font-script);
  font-size: clamp(4rem, 12vw, 7.5rem);
  color: var(--white);
  line-height: 0.8;
  text-shadow: 0 4px 30px rgba(201, 169, 98, 0.4),
    0 0 60px rgba(201, 169, 98, 0.2);
  position: relative;
  margin-bottom: 0.1em;
}

.hero__aura-line {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  margin-left: 10em;
}

.hero__the {
  font-family: "Blue Mirage", var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.95;
}

.hero__aura {
  font-family: "Blue Mirage", var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #f5e6c4 0%,
    #e8d5a3 25%,
    #c9a962 50%,
    #e8d5a3 75%,
    #f5e6c4 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 3px 15px rgba(201, 169, 98, 0.4));
}

.hero__of {
  font-family: "Blue Mirage", var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.95;
}

/* Legacy class */
.hero__aura-of {
  display: none;
}

@keyframes goldShimmer {
  0%,
  100% {
    background-position: 200% center;
  }
  50% {
    background-position: -200% center;
  }
}

/* Legacy classes (keeping for compatibility) */
.hero__tagline-line,
.hero__tagline-wrapper,
.hero__tagline {
  display: none;
}

.hero__tagline-main,
.hero__tagline-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Headline */
.hero__headline {
  font-family: "Blue Mirage", var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroWordIn 0.8s var(--ease-out) forwards;
  animation-delay: calc(0.7s + var(--i) * 0.1s);
}

.hero__amp {
  display: inline-block;
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.3em;
  color: var(--gold-500);
  margin: 0 0.1em;
  opacity: 0;
  animation: heroWordIn 0.8s var(--ease-out) 1s forwards;
}

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

/* Subtitle */
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--white-70);
  opacity: 0;
  animation: heroSlideIn 1s var(--ease-out) 1.2s forwards;
}

.hero__subtitle span {
  display: block;
  font-size: 0.85rem;
  color: var(--white-50);
  letter-spacing: 0.1em;
}

/* CTA Buttons */
.hero__cta {
  display: flex;
  gap: var(--space-md);
  opacity: 0;
  animation: heroSlideIn 0.8s var(--ease-out) 1.1s forwards;
}

.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 1.8rem;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.hero__btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.hero__btn-primary:hover::before {
  opacity: 1;
}

.hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201, 169, 98, 0.35);
}

.hero__btn-text,
.hero__btn-icon {
  position: relative;
  z-index: 1;
}

.hero__btn-icon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out);
}

.hero__btn-primary:hover .hero__btn-icon svg {
  transform: translateX(4px);
}

.hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.5rem;
  border: 1px solid var(--white-20);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
}

.hero__btn-secondary svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
}

.hero__btn-secondary:hover {
  background: var(--white-05);
  border-color: var(--gold-500);
}

/* Visual - Right */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  opacity: 0;
  animation: heroFrameIn 1.2s var(--ease-out) 0.5s forwards;
}

@keyframes heroFrameIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__frame {
  position: relative;
  max-width: 380px;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero__frame--cover {
  max-width: 340px;
}

.hero__frame--cover .hero__image {
  border-radius: 12px;
  object-fit: cover;
}

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

.hero__frame-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 98, 0.15) 0%,
    transparent 70%
  );
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
  transition: background 0.4s ease;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(201, 169, 98, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero__frame:hover .hero__image {
  transform: scale(1.02);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.6), 0 15px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(201, 169, 98, 0.3);
}

.hero__frame:hover .hero__frame-glow {
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 98, 0.25) 0%,
    transparent 70%
  );
}

.hero__frame-border {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 12px;
  pointer-events: none;
}

.hero__frame-border::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 169, 98, 0.1);
  border-radius: 16px;
}

/* Corner accents on frame */
.hero__frame::before,
.hero__frame::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold-500);
  z-index: 2;
}

.hero__frame::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.hero__frame::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

/* Bottom Bar */
.hero__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-xl);
  opacity: 0;
  animation: heroSlideIn 1s var(--ease-out) 1.6s forwards;
}

/* RERA Badge */
.hero__rera {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero__rera img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.8;
}

.hero__rera-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__rera-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
}

.hero__rera-number {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-90);
  letter-spacing: 0.05em;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-50);
}

.hero__scroll-line {
  width: 1px;
  height: 30px;
  background: var(--gold-500);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    var(--gold-400),
    transparent
  );
  animation: scrollDrop 1.5s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* Developer Credit */
.hero__developer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--white-50);
}

.hero__developer strong {
  color: var(--white-70);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Animation Base */
@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   HERO RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
    max-height: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px var(--space-lg) 15px;
  }

  .hero__primary {
    align-items: center;
  }

  .hero__tagline-stack {
    align-items: center;
  }

  .hero__aura-line {
    margin-left: 0;
    justify-content: center;
  }

  .hero__tagline-line {
    justify-content: center;
    text-align: center;
  }

  .hero__tagline-wrapper {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .hero__tagline-main {
    align-items: center;
  }

  .hero__tagline {
    flex-direction: column;
    align-items: center;
  }

  .hero__tagline-text {
    align-items: center;
  }

  .hero__headline {
    text-align: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    margin-bottom: var(--space-md);
  }

  .hero__orb--1 {
    width: 350px;
    height: 350px;
  }
  .hero__orb--2 {
    width: 280px;
    height: 280px;
  }
  .hero__orb--3 {
    width: 220px;
    height: 220px;
  }
  .hero__orb--4 {
    width: 250px;
    height: 250px;
  }

  .hero__frame {
    max-width: 320px;
  }

  .hero__image {
    max-height: 55vh;
  }

  .hero__accent-line--left {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__primary {
    gap: var(--space-sm);
  }

  .hero__live {
    font-size: 6rem;
    margin-bottom: 0.25em;
  }

  .hero__grid {
    padding: 70px var(--space-md) 15px;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .hero__btn-primary,
  .hero__btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero__bottom {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-md);
  }

  .hero__scroll {
    display: none;
  }

  .hero__developer {
    order: -1;
  }

  .hero__leaves--front {
    top: -10%;
    right: -40%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__primary {
    gap: 0.25rem;
  }

  .hero__tagline-stack {
    margin-bottom: 0;
  }

  .hero__live {
    /* Viewport-aware scaling: uses smaller of width or height constraint */
    /* Ensures proper sizing on both tall/narrow (Samsung) and short/wide (iPhone SE) screens */
    font-size: max(5rem, min(24vw, 11vh));
    margin-bottom: 0.15em;
  }

  .hero__aura-line {
    gap: 0.2em;
  }

  .hero__aura-of {
    font-size: 1.4rem;
  }

  .hero__the {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
  }

  .hero__headline {
    font-size: 1.5rem;
    white-space: normal;
    text-align: center;
  }

  .hero__aura {
    font-size: 1.8rem;
  }

  .hero__frame {
    max-width: 280px;
  }

  .hero__image {
    max-height: 50vh;
  }

  .hero__frame::before,
  .hero__frame::after {
    width: 20px;
    height: 20px;
  }

  .hero__orb--1,
  .hero__orb--2,
  .hero__orb--3,
  .hero__orb--4 {
    width: 200px;
    height: 200px;
  }

  .hero__particles span {
    display: none;
  }

  .hero__particles span:nth-child(-n + 5) {
    display: block;
  }
}

/* iPhone Plus / Pro Max (414px width, ~896px height) */
@media (max-width: 414px) {
  .hero__live {
    /* Tall screens: height is generous, width constrains */
    font-size: max(5rem, min(23vw, 10.5vh));
  }
}

/* iPhone SE / Standard iPhones (375px width, ~667px height - shorter screens) */
@media (max-width: 375px) {
  .hero__live {
    /* Shorter screens: height becomes the constraint */
    font-size: max(4.8rem, min(22vw, 11vh));
  }

  .hero__aura {
    font-size: 1.7rem;
  }
}

/* ============================================
   BUILDING SECTION
   ============================================ */
.building {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
  overflow: hidden;
}

.building::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy-800);
  z-index: -1;
}

.building__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      ellipse 80% 50% at 0% 100%,
      rgba(201, 169, 98, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 100% 0%,
      rgba(201, 169, 98, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 60% at 100% 80%,
      rgba(15, 39, 68, 0.4) 0%,
      transparent 50%
    );
}

/* Dramatic Spotlight Effect */
.building__spotlight {
  position: absolute;
  top: -20%;
  left: 25%;
  width: 50%;
  height: 120%;
  background: radial-gradient(
    ellipse 100% 80% at 50% 0%,
    rgba(201, 169, 98, 0.06) 0%,
    rgba(201, 169, 98, 0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: spotlightPulse 8s ease-in-out infinite;
}

@keyframes spotlightPulse {
  0%, 100% { opacity: 0.8; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.1); }
}

/* Ambient Gold Orbs */
.building__ambient-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.building__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  animation: buildingOrbFloat 12s ease-in-out infinite;
}

.building__orb--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.building__orb--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 213, 163, 0.12) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
  animation-delay: -4s;
}

.building__orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes buildingOrbFloat {
  0%, 100% {
    opacity: 0.4;
    transform: translate(0, 0) scale(1);
  }
  25% {
    opacity: 0.7;
    transform: translate(20px, -30px) scale(1.1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-10px, 20px) scale(0.95);
  }
  75% {
    opacity: 0.8;
    transform: translate(15px, 10px) scale(1.05);
  }
}

/* Floating Dust Particles */
.building__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.building__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift 15s linear infinite;
}

.building__particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.building__particle:nth-child(2) { left: 25%; animation-delay: -3s; }
.building__particle:nth-child(3) { left: 45%; animation-delay: -6s; }
.building__particle:nth-child(4) { left: 60%; animation-delay: -9s; }
.building__particle:nth-child(5) { left: 75%; animation-delay: -12s; }
.building__particle:nth-child(6) { left: 90%; animation-delay: -2s; }

@keyframes particleDrift {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0.5);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

.building__content {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* Architectural Grid Lines */
.building__grid-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  opacity: 0.04;
}

.building__grid-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold-500) 15%,
    var(--gold-500) 85%,
    transparent 100%
  );
  animation: gridLinePulse 6s ease-in-out infinite;
}

.building__grid-line:nth-child(1) { animation-delay: 0s; }
.building__grid-line:nth-child(2) { animation-delay: -1.2s; }
.building__grid-line:nth-child(3) { animation-delay: -2.4s; }
.building__grid-line:nth-child(4) { animation-delay: -3.6s; }
.building__grid-line:nth-child(5) { animation-delay: -4.8s; }

@keyframes gridLinePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Building Carousel */
.building__showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.building__carousel {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: linear-gradient(
    145deg,
    rgba(15, 39, 68, 0.95) 0%,
    rgba(10, 22, 40, 0.98) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.5),
    0 15px 35px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Top ambient glow */
.building__carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(201, 169, 98, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 2;
}

/* Gold Corner Accents */
.building__corner {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 5;
  pointer-events: none;
}

.building__corner::before,
.building__corner::after {
  content: "";
  position: absolute;
  background: var(--gold-500);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.building__corner::before {
  width: 100%;
  height: 2px;
}

.building__corner::after {
  width: 2px;
  height: 100%;
}

.building__carousel:hover .building__corner::before,
.building__carousel:hover .building__corner::after {
  opacity: 1;
}

.building__corner--tl { top: 12px; left: 12px; }
.building__corner--tl::before { top: 0; left: 0; background: linear-gradient(90deg, var(--gold-500), transparent); }
.building__corner--tl::after { top: 0; left: 0; background: linear-gradient(180deg, var(--gold-500), transparent); }

.building__corner--tr { top: 12px; right: 12px; }
.building__corner--tr::before { top: 0; right: 0; background: linear-gradient(-90deg, var(--gold-500), transparent); }
.building__corner--tr::after { top: 0; right: 0; background: linear-gradient(180deg, var(--gold-500), transparent); }

.building__corner--bl { bottom: 12px; left: 12px; }
.building__corner--bl::before { bottom: 0; left: 0; background: linear-gradient(90deg, var(--gold-500), transparent); }
.building__corner--bl::after { bottom: 0; left: 0; background: linear-gradient(0deg, var(--gold-500), transparent); }

.building__corner--br { bottom: 12px; right: 12px; }
.building__corner--br::before { bottom: 0; right: 0; background: linear-gradient(-90deg, var(--gold-500), transparent); }
.building__corner--br::after { bottom: 0; right: 0; background: linear-gradient(0deg, var(--gold-500), transparent); }

/* Slides Container */
.building__slides {
  position: relative;
  width: 100%;
  height: 580px;
}

.building__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.building__slide--active {
  opacity: 1;
  visibility: visible;
}

.building__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-lg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: subtleFloat 6s ease-in-out infinite;
}

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

/* Label at bottom of image */
.building__slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.6) 70%,
    transparent 100%
  );
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* Carousel Navigation */
.building__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.building__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 50%;
  color: var(--gold-400);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.building__arrow svg {
  width: 20px;
  height: 20px;
}

.building__arrow:hover {
  background: rgba(201, 169, 98, 0.15);
  border-color: var(--gold-500);
  color: var(--gold-300);
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(201, 169, 98, 0.2);
}

.building__arrow:active {
  transform: scale(0.95);
}

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

.building__dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.building__dot:hover {
  background: rgba(201, 169, 98, 0.3);
  border-color: rgba(201, 169, 98, 0.5);
}

.building__dot--active {
  background: var(--gold-500);
  border-color: var(--gold-400);
  transform: scale(1.2);
  box-shadow:
    0 0 15px rgba(201, 169, 98, 0.5),
    0 0 30px rgba(201, 169, 98, 0.25);
}

.building__info {
  color: var(--white);
}

.building__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.building__title em {
  font-style: italic;
  color: var(--gold-500);
}

.building__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white-70);
  margin-bottom: var(--space-lg);
}

.building__stats {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
}

.building__stat {
  text-align: center;
}

.building__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold-500);
  line-height: 1;
}

.building__stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
}

.building__developer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.building__developer span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
}

.building__developer strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .building__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .building__showcase {
    order: -1;
    margin: 0 auto var(--space-lg);
  }

  .building__carousel {
    max-width: 90%;
  }

  .building__slides {
    height: auto;
    min-height: 550px;
    aspect-ratio: 3/4;
  }

  .building__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-md);
  }

  .building__stats {
    justify-content: center;
  }

  .building__developer {
    align-items: center;
  }

  .building__info .btn {
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .building__carousel {
    max-width: 95%;
  }

  .building__slides {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .building__carousel {
    max-width: 100%;
    border-radius: 12px;
    padding: var(--space-sm);
  }

  .building__slides {
    height: auto;
    min-height: 450px;
    aspect-ratio: 2/3;
  }

  .building__slide img {
    padding: var(--space-sm);
  }

  .building__corner {
    width: 30px;
    height: 30px;
  }

  .building__corner--tl { top: 8px; left: 8px; }
  .building__corner--tr { top: 8px; right: 8px; }
  .building__corner--bl { bottom: 8px; left: 8px; }
  .building__corner--br { bottom: 8px; right: 8px; }

  .building__nav {
    gap: var(--space-md);
  }

  .building__arrow {
    width: 40px;
    height: 40px;
  }

  .building__arrow svg {
    width: 16px;
    height: 16px;
  }

  .building__dot {
    width: 10px;
    height: 10px;
  }

  .building__slide-label {
    font-size: 0.75rem;
    padding: var(--space-sm) var(--space-md);
  }
}

@media (max-width: 768px) {
  .hero__logo-aura {
    font-size: 2.5rem;
  }

  .hero__live {
    font-size: 1.8rem;
  }

  .hero__rera--bottom {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: var(--space-xl);
  }

  .building__carousel {
    max-width: 100%;
  }

  .building__slides {
    height: auto;
    min-height: 400px;
    aspect-ratio: 3/4;
  }

  .building__slide img {
    object-fit: contain;
    padding: var(--space-md);
  }

  .building__stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .building__stat-number {
    font-size: 2.5rem;
  }
}

/* Hero content base styles */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px var(--space-lg) 100px;
}

/* Grid layout hero (when NOT using brochure style) */
.hero:not(.hero--brochure) .hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* Alternative hero backgrounds (for non-brochure style) */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 80% 60% at 20% 100%,
      rgba(201, 169, 98, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 20%,
      rgba(26, 58, 92, 0.5) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      var(--navy-900) 0%,
      var(--navy-800) 50%,
      var(--navy-700) 100%
    );
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero__leaf {
  position: absolute;
  color: var(--gold-500);
  opacity: 0.06;
}

.hero__leaf--1 {
  top: -5%;
  left: -5%;
  width: 400px;
  height: auto;
  transform: rotate(-30deg);
}

.hero__leaf--2 {
  bottom: -10%;
  right: -8%;
  width: 500px;
  height: auto;
  transform: rotate(150deg);
}

.hero__prelude {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__title-ampersand {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.2em;
  color: var(--gold-500);
  margin: 0 0.1em;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeScale 0.6s var(--ease-out) 0.7s forwards;
}

.hero__title-line--script {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-400);
  animation-delay: 0.6s;
}

.hero__tagline {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white-70);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero__rera {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 4px;
  max-width: fit-content;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.hero__rera img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.hero__rera-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
}

.hero__rera-number {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-90);
  letter-spacing: 0.05em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-out);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 169, 98, 0.35);
}

.btn--primary:hover svg {
  transform: translateX(4px);
}

.btn--outline {
  background: transparent;
  color: var(--white-90);
  border: 1px solid var(--white-20);
}

.btn--outline:hover {
  background: var(--white-10);
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.btn--full {
  width: 100%;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-header--light {
  color: var(--white);
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

.section-header__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-sm);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-header__title em {
  font-style: italic;
  color: var(--gold-500);
}

.section-header--light .section-header__title {
  color: var(--white);
}

.section-header__desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--navy-600);
}

.section-header--light .section-header__desc {
  color: var(--white-70);
}

/* ============================================
   OVERVIEW SECTION
   ============================================ */
.overview {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
  overflow: hidden;
}

/* Subtle top edge blend */
.overview__gradient-top {
  display: none;
}

/* Ambient gold orbs */
.overview__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.overview__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: overviewOrbFloat 15s ease-in-out infinite;
}

.overview__orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.12) 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.overview__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 213, 163, 0.1) 0%, transparent 70%);
  bottom: 20%;
  right: -5%;
  animation-delay: -5s;
}

.overview__orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes overviewOrbFloat {
  0%, 100% {
    opacity: 0.5;
    transform: translate(0, 0) scale(1);
  }
  33% {
    opacity: 0.8;
    transform: translate(30px, -20px) scale(1.1);
  }
  66% {
    opacity: 0.6;
    transform: translate(-20px, 30px) scale(0.95);
  }
}

.overview__decor {
  position: absolute;
  top: 0;
  right: -10%;
  pointer-events: none;
}

.overview__leaf {
  width: 400px;
  color: var(--gold-500);
  opacity: 0.08;
  transform: rotate(45deg);
}

/* Overview section header - dark theme */
.overview .section-header__title {
  color: var(--white);
}

.overview .section-header__title em {
  font-style: italic;
  color: var(--gold-500);
}

.overview .section-header__desc {
  color: var(--white-70);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.feature {
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  transition: all var(--duration-normal) var(--ease-out);
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(10, 22, 40, 0.08);
  border-color: var(--gold-500);
}

.feature__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-md);
  color: var(--gold-500);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--navy-800);
}

.feature__text {
  font-size: 0.95rem;
  color: var(--navy-600);
  line-height: 1.7;
}

/* Feature cards with images - Premium Dark Theme */
.feature--image {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(15, 39, 68, 0.95) 0%,
    rgba(10, 22, 40, 0.98) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature--image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.3) 0%,
    transparent 50%,
    rgba(201, 169, 98, 0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature--image:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 10px 25px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(201, 169, 98, 0.1);
}

.feature--image:hover::before {
  opacity: 1;
}

.feature--image .feature__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.feature--image .feature__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, transparent 100%);
  pointer-events: none;
}

.feature--image .feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature--image:hover .feature__image img {
  transform: scale(1.08);
}

.feature--image .feature__content {
  padding: var(--space-md) var(--space-lg);
  position: relative;
}

.feature--image .feature__title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--white);
}

.feature--image .feature__text {
  color: var(--white-60);
  font-size: 0.9rem;
}

.feature--image .feature__text {
  font-size: 0.9rem;
}

/* ============================================
   DEVELOPERS SECTION
   ============================================ */
.developers {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
  overflow: hidden;
}

/* Gold accent lines */
.developers__accent {
  position: absolute;
  width: 1px;
  height: 60%;
  top: 20%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201, 169, 98, 0.3) 20%,
    rgba(201, 169, 98, 0.5) 50%,
    rgba(201, 169, 98, 0.3) 80%,
    transparent 100%
  );
}

.developers__accent--left {
  left: 5%;
}

.developers__accent--right {
  right: 5%;
}

/* Ambient orb */
.developers__orb {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(201, 169, 98, 0.08) 0%,
    transparent 60%
  );
  filter: blur(60px);
  pointer-events: none;
  animation: developersOrbPulse 8s ease-in-out infinite;
}

@keyframes developersOrbPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.developers__content {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

/* Logo Side */
.developers__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.developers__logo-frame {
  position: relative;
  padding: var(--space-xl);
  background: linear-gradient(
    145deg,
    rgba(15, 39, 68, 0.8) 0%,
    rgba(10, 22, 40, 0.9) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.developers__logo-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.4) 0%,
    transparent 40%,
    transparent 60%,
    rgba(201, 169, 98, 0.3) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.developers__logo-frame:hover {
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 169, 98, 0.1);
}

.developers__logo-frame:hover::before {
  opacity: 1;
}

.developers__logo {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.developers__tagline {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--gold-500);
}

.developers__tagline::before,
.developers__tagline::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-500) 50%,
    transparent 100%
  );
}

.developers__tagline::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-500) 100%
  );
}

.developers__tagline::after {
  background: linear-gradient(
    90deg,
    var(--gold-500) 0%,
    transparent 100%
  );
}

/* Content Side */
.developers__info {
  max-width: 600px;
}

.developers__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.developers__title em {
  font-style: italic;
  color: var(--gold-500);
}

/* Stats */
.developers__stats {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.developers__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.developers__stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold-500);
  line-height: 1;
  text-shadow: 0 0 30px rgba(201, 169, 98, 0.3);
}

.developers__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-50);
}

/* Text */
.developers__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white-70);
  margin-bottom: var(--space-md);
}

.developers__text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .developers__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .developers__brand {
    justify-self: center;
  }

  .developers__info {
    max-width: 100%;
  }

  .developers__stats {
    justify-content: center;
  }

  .developers__accent {
    display: none;
  }
}

@media (max-width: 640px) {
  .developers__logo {
    width: 160px;
  }

  .developers__stats {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .developers__stat {
    align-items: center;
  }

  .developers__stat-number {
    font-size: 2.2rem;
  }
}

/* ============================================
   AMENITIES SECTION
   ============================================ */
.amenities {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
  overflow: hidden;
}

.amenities__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.amenities__leaf {
  position: absolute;
  color: var(--gold-500);
  opacity: 0.04;
}

.amenities__leaf--1 {
  top: -10%;
  left: -5%;
  width: 350px;
  transform: rotate(-20deg);
}

.amenities__leaf--2 {
  bottom: -15%;
  right: -8%;
  width: 450px;
  transform: rotate(160deg);
}

/* Amenities Carousel */
.amenities-carousel {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
  padding: var(--space-lg) 0;
}

/* Gold lines above and below */
.amenities-carousel::before,
.amenities-carousel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 20%, var(--gold-400) 50%, var(--gold-500) 80%, transparent 100%);
  pointer-events: none;
}

.amenities-carousel::before {
  top: 0;
  box-shadow: 0 0 20px 5px rgba(201, 169, 98, 0.15);
}

.amenities-carousel::after {
  bottom: 0;
  box-shadow: 0 0 20px 5px rgba(201, 169, 98, 0.15);
}

/* Ambient orbs */
.amenities-carousel__viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.amenities-carousel__viewport::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: amenityOrb1 8s ease-in-out infinite;
}

.amenities-carousel__viewport::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: amenityOrb2 10s ease-in-out infinite;
}

@keyframes amenityOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(30px, 20px) scale(1.1); opacity: 1; }
}

@keyframes amenityOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-20px, -15px) scale(1.15); opacity: 0.9; }
}

.amenities-carousel__track {
  display: flex;
  gap: var(--space-md);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.amenities-carousel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 50%;
  color: var(--gold-400);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.amenities-carousel__arrow svg {
  width: 22px;
  height: 22px;
}

.amenities-carousel__arrow:hover {
  background: rgba(201, 169, 98, 0.15);
  border-color: var(--gold-500);
  color: var(--gold-300);
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(201, 169, 98, 0.25);
}

.amenities-carousel__arrow:active {
  transform: scale(0.95);
}

.amenities-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Amenity Cards */
.amenity-card {
  flex: 0 0 calc((100% - var(--space-md) * 2) / 3);
  min-width: 0;
  position: relative;
  background: linear-gradient(145deg, var(--white-05) 0%, rgba(201, 169, 98, 0.03) 100%);
  border: 1px solid var(--white-10);
  border-radius: 4px;
  overflow: visible;
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 1;
}

/* Gold accent line at top */
.amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 20%, var(--gold-400) 50%, var(--gold-500) 80%, transparent 100%);
  opacity: 0.7;
  z-index: 3;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.amenity-card:hover::before {
  opacity: 1;
}

/* Invisible hover buffer zone - prevents jitter when hovering at bottom edge */
.amenity-card::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  pointer-events: auto;
}

.amenity-card:hover {
  border-color: var(--gold-500);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(201, 169, 98, 0.15),
    inset 0 1px 0 rgba(201, 169, 98, 0.1);
  transform: translateY(-8px);
}

.amenity-card__image {
  height: 420px;
  overflow: hidden;
  position: relative;
  border-radius: 4px 4px 0 0;
}

.amenity-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 21, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.amenity-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.amenity-card:hover .amenity-card__image img {
  transform: scale(1.08);
}

.amenity-card__content {
  padding: var(--space-lg);
}

.amenity-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.amenity-card__text {
  font-size: 0.95rem;
  color: var(--white-50);
  line-height: 1.5;
}

/* Amenity Features */
.amenities__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--white-10);
}

.amenity-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white-70);
  font-size: 0.9rem;
}

.amenity-feature svg {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
}

/* Safety & Structural Features */
.safety-features {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  position: relative;
  overflow: hidden;
}

/* Gold corner accents */
.safety-features::before,
.safety-features::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold-500);
  pointer-events: none;
}

.safety-features::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.safety-features::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

/* Ambient glow */
.safety-features__title {
  position: relative;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.safety-features__title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 50%, transparent 100%);
}

.safety-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.safety-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.03) 100%);
  border: 1px solid rgba(201, 169, 98, 0.15);
  transition: all var(--duration-normal) var(--ease-out);
}

.safety-feature:hover {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.06) 100%);
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.safety-feature__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety-feature__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: invert(1) brightness(1.1) drop-shadow(0 2px 8px rgba(201, 169, 98, 0.3));
}

.safety-feature__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.safety-feature__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-90);
  letter-spacing: 0.02em;
}

.safety-feature__desc {
  font-size: 0.85rem;
  color: var(--gold-500);
  letter-spacing: 0.03em;
}

/* ============================================
   SPECIFICATIONS SECTION
   ============================================ */
.specs {
  padding: var(--space-3xl) 0;
  background: var(--cream);
  position: relative;
}

/* Gold accent lines above and below */
.specs::before,
.specs::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 20%, var(--gold-400) 50%, var(--gold-500) 80%, transparent 100%);
}

.specs::before {
  top: 0;
}

.specs::after {
  bottom: 0;
}

.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.spec {
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  transition: all var(--duration-normal) var(--ease-out);
}

.spec:hover {
  border-color: var(--gold-500);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.06);
}

.spec__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.spec__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-500);
  line-height: 1;
}

.spec__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy-800);
}

.spec__text {
  font-size: 0.9rem;
  color: var(--navy-600);
  line-height: 1.7;
}

/* Visual spec cards with images */
.specs__grid--visual {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.spec--visual {
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.04);
  transition: all var(--duration-normal) var(--ease-out);
}

/* Gold accent line at top of card */
.spec--visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-400) 50%, var(--gold-600) 100%);
  opacity: 0.6;
  z-index: 2;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.spec--visual:hover::before {
  opacity: 1;
}

.spec--visual:hover {
  border-color: var(--gold-500);
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(10, 22, 40, 0.08),
    0 0 0 1px rgba(201, 169, 98, 0.1);
}

.spec--visual .spec__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.spec--visual .spec__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.spec--visual .spec__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.spec--visual:hover .spec__image img {
  transform: scale(1.08);
}

.spec--visual .spec__content {
  padding: var(--space-md) var(--space-lg);
}

.spec--visual .spec__title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--navy-800);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.spec--visual .spec__text {
  font-size: 0.9rem;
  color: var(--navy-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .specs__grid--visual {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .spec--visual .spec__image {
    height: 150px;
  }

  .spec--visual .spec__title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .specs__grid--visual {
    grid-template-columns: 1fr;
  }

  .spec--visual .spec__image {
    height: 180px;
  }
}

/* ============================================
   FLOOR PLAN SECTION
   ============================================ */
.floorplan {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  overflow: hidden;
}

.floorplan__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floorplan__leaf {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  color: var(--gold-500);
  opacity: 0.04;
  transform: rotate(-30deg);
}

.floorplan__wrapper {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}

.floorplan__frame {
  position: relative;
  background: var(--white);
  padding: var(--space-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.floorplan__frame img {
  width: 100%;
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-out);
}

.floorplan__frame img:hover {
  transform: scale(1.02);
}

.floorplan__zoom {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.85rem;
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-out);
}

.floorplan__zoom svg {
  width: 18px;
  height: 18px;
}

.floorplan__zoom:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

.floorplan__compass {
  position: absolute;
  top: var(--space-lg);
  right: calc(-60px - var(--space-lg));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gold-500);
}

.floorplan__compass span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.floorplan__compass svg {
  width: 30px;
  height: 30px;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
  padding: var(--space-3xl) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Gold accent lines */
.location::before,
.location::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 20%, var(--gold-400) 50%, var(--gold-500) 80%, transparent 100%);
  z-index: 1;
}

.location::before {
  top: 0;
}

.location::after {
  bottom: 0;
}

/* Subtle decorative background elements */
.location__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Corner accent - top left */
.location__decor::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  border-left: 1px solid var(--gold-400);
  border-top: 1px solid var(--gold-400);
  opacity: 0.5;
}

/* Corner accent - bottom right */
.location__decor::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  border-right: 1px solid var(--gold-400);
  border-bottom: 1px solid var(--gold-400);
  opacity: 0.5;
}

/* Subtle radial glow in corners */
.location__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.location__glow--1 {
  top: -100px;
  left: -100px;
}

.location__glow--2 {
  bottom: -100px;
  right: -100px;
}


/* Main Layout - Map Left, Landmarks Right */
.location__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.location__map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

.location__map img {
  width: 100%;
  display: block;
}

/* Landmarks Grid - Clean 2-column layout */
.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* Individual landmark item */
.landmark-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
}

/* Icon - no box, just the image */
.landmark-item__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landmark-item__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

/* Text-based logos */
.landmark-item__icon--logo img {
  filter: invert(1);
  width: auto;
  height: auto;
  max-width: 60px;
  max-height: 52px;
}

/* Text content */
.landmark-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.landmark-item__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.3;
}

.landmark-item__dist {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-600);
}

/* Upcoming Infrastructure - Premium */
.location__upcoming {
  text-align: center;
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-lg);
}

.upcoming__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.upcoming__line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.upcoming__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.upcoming__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.upcoming__badge {
  position: relative;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.03) 100%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.upcoming__badge::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400), var(--gold-500));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.upcoming__badge:hover {
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.2);
}

.upcoming__badge:hover::before {
  opacity: 0.15;
}

.upcoming__badge-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}

/* Tablet: Center badges properly when wrapping */
@media (max-width: 768px) {
  .upcoming__grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    justify-items: center;
    gap: var(--space-sm);
  }
}

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

  .upcoming__badge {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact__leaf {
  position: absolute;
  color: var(--gold-500);
  opacity: 0.04;
}

.contact__leaf--1 {
  top: -15%;
  right: -10%;
  width: 400px;
  transform: rotate(30deg);
}

.contact__leaf--2 {
  bottom: -20%;
  left: -10%;
  width: 350px;
  transform: rotate(-150deg);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  transition: all var(--duration-fast) var(--ease-out);
}

.contact__item:hover {
  background: var(--white-10);
  border-color: var(--gold-500);
}

.contact__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
}

.contact__icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
}

.contact__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 4px;
}

.contact__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-90);
}

.contact__logos {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--white-10);
}

.contact__logos img {
  height: 50px;
  width: auto;
}

/* Contact Form */
.contact__form {
  background: var(--white);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--navy-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy-800);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  transition: all var(--duration-fast) var(--ease-out);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-900);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--white-10);
}

.footer__logo {
  margin-bottom: var(--space-sm);
}

.footer__logo-img {
  height: 50px;
  width: auto;
}

.footer__logo-dream {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.footer__logo-aura {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--white-60);
  margin-bottom: var(--space-md);
}

.footer__rera {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__rera-badge {
  width: 36px;
  height: 36px;
}

.footer__rera-badge[src*="desouzas"] {
  width: auto;
  height: 36px;
}

.footer__rera-qr {
  width: 50px;
  height: 50px;
  background: white;
  padding: 3px;
  border-radius: 4px;
  margin-left: var(--space-sm);
}

.footer__rera span {
  display: block;
  font-size: 0.7rem;
  color: var(--white-50);
}

.footer__rera strong {
  font-size: 0.8rem;
  color: var(--white-80);
}

.footer__nav h3,
.footer__contact h3,
.footer__developer h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-md);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 0.9rem;
  color: var(--white-60);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__contact p {
  font-size: 0.85rem;
  color: var(--white-60);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer__contact a {
  color: var(--gold-400);
}

.footer__contact a:hover {
  color: var(--gold-500);
}

.footer__developer img {
  max-width: 140px;
  margin-bottom: var(--space-sm);
}

.footer__developer p {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.5;
}

.footer__since {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-500);
  margin-top: 8px;
}

.footer__marketing h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-md);
}

.footer__marketing img {
  max-width: 100px;
  margin-bottom: var(--space-sm);
}

.footer__marketing p {
  font-size: 0.85rem;
  color: var(--white-60);
}

.footer__website a {
  color: var(--gold-400);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__website a:hover {
  color: var(--gold-300);
}

.footer__bottom {
  padding-top: var(--space-lg);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--white-50);
  margin-bottom: 8px;
}

.footer__disclaimer {
  font-size: 0.7rem;
  color: var(--white-30);
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 21, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.modal__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 10;
  color: var(--white);
  transition: all var(--duration-fast) var(--ease-out);
}

.modal__close:hover {
  color: var(--gold-500);
}

.modal__close svg {
  width: 28px;
  height: 28px;
}

.modal__content {
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  pointer-events: none;
}

.modal__content img {
  pointer-events: auto;
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Panzoom handles all touch interactions */
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
  cursor: grab;
}

.modal__content img:active {
  cursor: grabbing;
}

/* Zoom controls hidden - Panzoom handles zoom */
.modal__zoom-controls {
  display: none !important;
}

.modal__zoom-btn svg {
  width: 22px;
  height: 22px;
}

.modal__zoom-level {
  min-width: 50px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-400);
  letter-spacing: 0.02em;
}

/* Hint text */
.modal.active::after {
  content: 'Pinch or double-tap to zoom';
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--white-70);
  background: rgba(10, 20, 40, 0.8);
  padding: 10px 20px;
  border-radius: 25px;
  opacity: 1;
  animation: fadeOutHint 2s ease 1.5s forwards;
  pointer-events: none;
  z-index: 10002;
}

@keyframes fadeOutHint {
  to { opacity: 0; }
}

@media (hover: hover) and (pointer: fine) {
  .modal.active::after {
    content: 'Scroll to zoom, drag to pan';
  }
}

/* Smaller screens: adjust zoom controls */
@media (max-width: 480px) {
  .modal__zoom-controls {
    bottom: 20px;
    padding: 8px 12px;
    gap: 6px;
  }

  .modal__zoom-btn {
    width: 40px;
    height: 40px;
  }

  .modal__zoom-btn svg {
    width: 20px;
    height: 20px;
  }

  .modal__zoom-level {
    min-width: 45px;
    font-size: 0.8rem;
  }

  .modal__close {
    top: var(--space-md);
    right: var(--space-md);
  }
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--duration-fast) var(--ease-out);
}

.whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  /* Non-brochure hero responsive */
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .developer__content {
    flex-direction: column;
    text-align: center;
  }

  /* Amenities carousel - 2 visible on tablet */
  .amenity-card {
    flex: 0 0 calc((100% - var(--space-md)) / 2);
  }

  .amenities-carousel__arrow {
    width: 44px;
    height: 44px;
  }

  .amenities-carousel__arrow svg {
    width: 18px;
    height: 18px;
  }

  .amenity-card__image {
    height: 360px;
  }

  .safety-features__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .safety-feature {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

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

  .floorplan__compass {
    display: none;
  }

  .location__main {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .landmarks-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .landmark-item__icon,
  .landmark-item__icon img {
    width: 44px;
    height: 44px;
  }

  .landmark-item__name {
    font-size: 0.9rem;
  }

  /* Hide corner accents on tablet */
  .location__decor::before,
  .location__decor::after {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-900);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
    transition: right var(--duration-normal) var(--ease-out);
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

  /* Amenities carousel - 1 visible on mobile */
  .amenities-carousel {
    gap: var(--space-sm);
  }

  .amenity-card {
    flex: 0 0 100%;
  }

  .amenities-carousel__arrow {
    width: 40px;
    height: 40px;
  }

  .amenities-carousel__arrow svg {
    width: 16px;
    height: 16px;
  }

  .amenity-card__image {
    height: 380px;
  }

  .landmark-item {
    gap: var(--space-sm);
  }

  .landmark-item__icon,
  .landmark-item__icon img {
    width: 40px;
    height: 40px;
  }

  .landmark-item__name {
    font-size: 0.85rem;
  }

  .landmark-item__dist {
    font-size: 0.75rem;
  }

  .upcoming-item {
    font-size: 0.8rem;
  }

  .upcoming-divider {
    height: 12px;
  }

  .amenity-card__title {
    font-size: 1.4rem;
  }

  .amenity-card__text {
    font-size: 0.9rem;
  }

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

  .safety-features {
    padding: var(--space-lg);
  }

  .safety-features__title {
    font-size: 1.2rem;
  }

  .safety-features::before,
  .safety-features::after {
    width: 40px;
    height: 40px;
  }

  .safety-feature__icon {
    width: 56px;
    height: 56px;
  }

  .safety-feature__icon img {
    width: 48px;
    height: 48px;
  }

  .safety-feature__name {
    font-size: 1rem;
  }

  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__rera {
    justify-content: center;
  }

  .footer__developer,
  .footer__marketing {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact__logos {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }

  .amenity-card__image {
    height: 280px;
  }

  .amenities__features {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp svg {
    width: 24px;
    height: 24px;
  }
}

/* Very small screens (Samsung Galaxy 360x740 - tall & narrow) */
@media (max-width: 360px) {
  .hero__primary {
    gap: 0.15rem;
  }

  .hero__live {
    /* Narrow but tall: width constrains, height is generous */
    font-size: max(4.5rem, min(21vw, 9vh));
    margin-bottom: 0.12em;
  }

  .hero__aura {
    font-size: 1.6rem;
  }

  .hero__headline {
    font-size: 1.3rem;
  }

  .hero__subtitle {
    font-size: 0.85rem;
  }

  .section-header__title {
    font-size: 1.5rem;
  }

  .building__title {
    font-size: 1.5rem;
  }

  .building__stat-number {
    font-size: 2rem;
  }

  .amenity-card__title {
    font-size: 1.2rem;
  }

  .contact__form {
    padding: var(--space-md);
  }

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