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

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #9A7540;
  --charcoal: #0E0E0E;
  --surface: #111111;
  --surface2: #181818;
  --surface3: #1F1F1F;
  --text: #F0EAE0;
  --text-muted: #8A8078;
  --border: rgba(201, 169, 110, 0.2);
  --white: #FFFFFF;
  --radius: 2px;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--charcoal);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--transition);
}

.cursor-ring.hovered {
  transform: translate(-50%, -50%) scale(1.8);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--transition);
}

nav.scrolled {
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-logo-text span:last-child {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240, 234, 224, 0.6);
  text-decoration: none;
  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(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: none;
  transition: all 0.3s var(--transition);
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: right 0.5s var(--transition);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 28px;
  cursor: none;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  height: auto;
  min-height: 100vh;
  position: relative;
  display: block;
  overflow: visible;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 48px;
  align-items: start;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(14, 14, 14, 0.92) 40%, rgba(50, 120, 80, 0.08) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 60%);
}

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

.hero-content {
  max-width: 760px;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-form-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 120px;
  /* aligns form start around the hero title height */
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--transition) forwards;
}

.hero-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--transition) forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-location {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s var(--transition) forwards;
}

.hero-location i {
  color: var(--gold);
  margin-right: 8px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--transition) forwards;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(240, 234, 224, 0.7);
}

.hero-feature i {
  color: var(--gold);
  font-size: 11px;
}

.hero-price-card {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  background: rgba(201, 169, 110, 0.05);
  backdrop-filter: blur(10px);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s var(--transition) forwards;
}

.hero-price-bhk {
  padding: 20px 28px;
  border-right: 1px solid var(--border);
}

.hero-price-bhk .label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.hero-price-bhk .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
}

.hero-price-amt {
  padding: 20px 28px;
}

.hero-price-amt .label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.hero-price-amt .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s var(--transition) forwards;
}

.hero-form-wrap {
  width: 100%;
  max-width: 420px;
  margin-top: 0;
  padding: 20px;
  border: 1px solid var(--border);
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  animation: fadeUp 0.8s 1.5s var(--transition) forwards;
}

.btn-primary-gold {
  background: var(--gold);
  color: var(--charcoal);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border: none;
  cursor: none;
  transition: all 0.3s var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(201, 169, 110, 0.3);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid var(--gold);
  cursor: none;
  transition: all 0.3s var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-outline-gold:hover {
  background: rgba(201, 169, 110, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 1.8s var(--transition) forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s infinite;
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero-stats {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  margin: 28px 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 1.7s var(--transition) forwards;
}

.hero-stats .stat-badge {
  flex: 1;
  min-width: 0;
}

.stat-badge {
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  text-align: center;
  min-width: 0;
}

.stat-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-badge .lbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════ */
section {
  padding: 120px 60px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-eyebrow span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-section {
  background: var(--surface);
}

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

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.about-img-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 0;
}

.about-img-wrapper>img {
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 2;
  background: var(--gold);
  color: var(--charcoal);
  padding: 24px 28px;
  text-align: center;
}

.about-badge .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  display: block;
  line-height: 1;
}

.about-badge .small {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.about-content {
  padding-left: 20px;
}

.about-desc {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(240, 234, 224, 0.6);
  margin: 24px 0 48px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.about-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: all 0.3s;
}

.about-feature:hover .about-feature-icon {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.about-feature-text h5 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.about-feature-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PRICING — 4-card grid for Aveline
═══════════════════════════════════════════ */
.pricing-section {
  background: var(--charcoal);
  text-align: center;
}

.pricing-header {
  max-width: 600px;
  margin: 0 auto 70px;
}

.pricing-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

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

.price-card {
  background: var(--surface2);
  border: 1px solid var(--gold-dark);
  padding: 40px 28px;
  position: relative;
  transition: all 0.4s var(--transition);
  cursor: none;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dark);
}

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

.price-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 16px;
  margin-bottom: 24px;
}

.price-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.price-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
}

.price-size {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 6px;
}

.price-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.price-btn {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: none;
  transition: all 0.3s;
}

.price-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.price-card.featured {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.02));
  border-color: var(--gold-dark);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 20px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   HIGHLIGHTS
═══════════════════════════════════════════ */
.highlights-section {
  background: var(--surface);
}

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

.highlights-img {
  position: relative;
  height: 640px;
}

.highlights-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights-img::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--border);
  z-index: 0;
}

.highlights-img>img {
  position: relative;
  z-index: 1;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.highlight-item {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: all 0.3s;
}

.highlight-item:first-child {
  padding-top: 0;
}

.highlight-item:hover .highlight-num {
  color: var(--gold);
}

.highlight-item:hover {
  padding-left: 8px;
}

.highlight-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.2);
  min-width: 70px;
  line-height: 1;
  transition: color 0.3s;
}

.highlight-text h4 {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   AMENITIES
═══════════════════════════════════════════ */
.amenities-section {
  background: var(--charcoal);
}

.amenities-header {
  max-width: 600px;
  margin-bottom: 70px;
}

.amenities-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.8;
}

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

@media (max-width:576px) {
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));

  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.amenity-item {
  background: var(--surface2);
  padding: 44px 36px;
  transition: all 0.4s var(--transition);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.float-enquiry,
.mob-bar {
  display: none !important;
}

.float-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--transition);
}

.float-contact.show {
  opacity: 1;
  pointer-events: auto;
}

.float-contact-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--transition), filter 0.25s var(--transition);
}

.float-contact-btn i {
  font-size: 16px;
}

.float-contact-btn.call {
  background: var(--gold);
  color: var(--charcoal);
}

.float-contact-btn.whatsapp {
  background: #25D366;
  color: #0d2515;
}

.float-contact-btn:hover {
  transform: translateX(-4px);
  filter: brightness(1.05);
}

.amenity-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.amenity-item:hover {
  background: var(--surface3);
}

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

.amenity-item:hover .amenity-icon {
  color: var(--gold);
  border-color: var(--gold);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(201, 169, 110, 0.6);
  margin-bottom: 24px;
  transition: all 0.3s;
}

.amenity-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.amenity-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.amenity-stars {
  color: var(--gold);
  font-size: 11px;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery-section {
  background: var(--surface);
  padding-bottom: 0;
}

.gallery-header {
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 3px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-more-btn {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

/* ═══════════════════════════════════════════
   VIRTUAL TOUR
═══════════════════════════════════════════ */
.tour-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
}

.tour-bg {
  position: absolute;
  inset: 0;
  background: url('img/deskban2.webp') center/cover no-repeat;
}

.tour-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.75);
}

.tour-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.tour-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 8px 20px;
  margin-bottom: 24px;
}

.tour-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 40px;
}

.play-btn {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: rgba(201, 169, 110, 0.1);
  cursor: none;
  transition: all 0.3s;
  position: relative;
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  animation: ripple 2s infinite;
}

.play-btn i {
  color: var(--gold);
  font-size: 28px;
  margin-left: 5px;
}

.play-btn:hover {
  background: rgba(201, 169, 110, 0.2);
  border-color: var(--gold);
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════ */
.location-section {
  background: var(--charcoal);
}

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

.map-wrapper {
  position: relative;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border);
  z-index: 0;
}

.map-wrapper iframe {
  width: 100%;
  height: 440px;
  position: relative;
  z-index: 1;
  display: block;
  /* Make the map visible/light on the dark theme */
  filter: grayscale(0%) invert(0%) brightness(1.15) contrast(1.05);
}

.location-advantages {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-adv {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: padding 0.3s;
}

.location-adv:hover {
  padding-left: 10px;
}

.location-adv-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.4);
}

.location-adv-text {
  font-size: 13px;
  color: rgba(240, 234, 224, 0.7);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--gold);
}

.footer-dev-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-dev-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

.footer-rera {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 10px 20px;
}

.footer-rera span:first-child {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-rera span:last-child {
  font-size: 13px;
  color: var(--text);
}

.footer-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 32px;
}

.footer-bottom {
  padding: 24px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-bottom {
  padding: 24px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
  max-width: 800px;
}

/* ═══════════════════════════════════════════
   FORM
═══════════════════════════════════════════ */
.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  position: relative;
}

.form-field input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 16px 18px 16px 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}

.form-field input::placeholder {
  color: var(--text-muted);
}

.form-field input:focus {
  border-color: var(--gold);
}

.form-field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 13px;
}

.form-submit {
  background: var(--gold);
  border: none;
  color: var(--charcoal);
  padding: 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: none;
  transition: all 0.3s;
  width: 100%;
}

.form-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

/* ═══════════════════════════════════════════
   FLOATING ENQUIRY
═══════════════════════════════════════════ */
.float-enquiry {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
}

.float-enquiry-btn {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.4);
  transition: all 0.3s;
  position: relative;
}

.float-enquiry-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  animation: ripple 2.5s infinite;
}

.float-enquiry-btn i {
  color: var(--charcoal);
  font-size: 20px;
}

.float-enquiry-btn:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
  width: 90%;
  transform: translateY(20px);
  transition: transform 0.3s var(--transition);
}

.modal-overlay.active .modal-box {
  transform: none;
}

.modal-img {
  overflow: hidden;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-form {
  padding: 48px 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: none;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════
   MOBILE BOTTOM BAR
═══════════════════════════════════════════ */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.mob-bar-btn {
  flex: 1;
  padding: 14px 8px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
}

.mob-bar-btn i {
  font-size: 16px;
}

.mob-bar-btn:first-child {
  background: var(--gold);
  color: var(--charcoal);
}

.mob-bar-btn:first-child:hover {
  background: var(--gold-light);
}

.mob-bar-btn:not(:first-child):hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  section {
    padding: 80px 24px;
  }

  nav {
    padding: 18px 24px;
  }

  nav.scrolled {
    padding: 12px 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-form-column {
    justify-content: flex-start;
    padding-top: 0;
    align-items: flex-start;
  }

  .hero-form-wrap {
    max-width: 100%;
  }

  .hero-stats {
    display: none;
  }

  .about-grid,
  .highlights-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-badge {
    right: 0;
    bottom: -20px;
  }

  .about-content {
    padding-left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }

  .footer-bottom {
    padding: 20px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .modal-box {
    grid-template-columns: 1fr;
  }

  .modal-img {
    display: none;
  }

  .mob-bar {
    display: flex;
  }

  .float-enquiry {
    bottom: 80px;
  }

  .float-contact {
    right: 12px;
    top: auto;
    bottom: 90px;
    transform: none;
  }

  .float-contact-btn {
    width: 44px;
    height: 44px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

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

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary-gold,
  .btn-outline-gold {
    text-align: center;
  }
}