
/* =====================================================
   CSS VARIABLES & RESET
===================================================== */
:root {
  --gold: #b8975a;
  --gold-light: #d4b483;
  --gold-dark: #8a6e3a;
  --gold-pale: rgba(184,151,90,0.12);
  --dark: #080808;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --white: #ffffff;
  --off-white: #f7f4ef;
  --grey: #888;
  --grey-light: #bbb;
  --fd: 'Cormorant Garamond', serif;
  --fb: 'DM Sans', sans-serif;
  --nav-h: 70px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; display:block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--fb); }

/* =====================================================
   UTILITY
===================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--fd);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--dark);
}
.section-title .accent { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }
.section-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184,151,90,0.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--fb);
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-outline.white { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.6); }
.btn-outline.white:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

/* =====================================================
   FORMS
===================================================== */
.form-field {
  position: relative;
  margin-bottom: 14px;
}
.form-field .field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 13px;
  z-index: 2;
  pointer-events: none;
}
.form-field input {
  width: 100%;
  padding: 13px 14px 13px 40px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--fb);
  font-size: 13px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.form-field input::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.form-field.light input {
  border-color: #ddd;
  background: var(--white);
  color: var(--dark);
}
.form-field.light input::placeholder { color: #aaa; }
.form-field.light input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.12);
}
.form-field.light .field-icon { color: var(--gold); }

/* =====================================================
   SCROLL TO TOP
===================================================== */
#goTop {
  position: fixed;
  bottom: 80px;
  right: 18px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(184,151,90,0.35);
  transition: background var(--transition), transform var(--transition);
}
#goTop.visible { display: flex; }
#goTop:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* =====================================================
   STICKY MOBILE BAR
===================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(8,8,8,0.97);
  border-top: 1px solid rgba(184,151,90,0.25);
  display: none;
}
@media (max-width: 991px) { .sticky-bar { display: flex; } }

.sticky-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
}
.sticky-bar a:last-child { border-right: none; }
.sticky-bar a i { font-size: 16px; color: var(--gold); }
.sticky-bar a.sb-enquire { background: var(--gold); }
.sticky-bar a.sb-enquire i { color: #fff; }
.sticky-bar a.sb-enquire:hover { background: var(--gold-dark); }

/* =====================================================
   HEADER / NAV
===================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 8000;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.header.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  height: 62px;
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 32px;
}

.logo {
  font-family: var(--fd);
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  flex-shrink: 0;
}
.logo span { color: var(--white); font-weight: 400; font-style: italic; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 7999;
  pointer-events: none;
}
@media (max-width: 991px) {
  .hamburger { display: flex; }
  .main-nav { display: none; }
  .nav-drawer { display: block; }
}

.nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.35s;
}
.nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--dark2);
  border-left: 1px solid rgba(184,151,90,0.2);
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.nav-drawer.open { pointer-events: all; }
.nav-drawer.open .nav-overlay { opacity: 1; }
.nav-drawer.open .nav-panel { transform: translateX(0); }

.nav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-panel-logo {
  font-family: var(--fd);
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
}
.nav-panel-logo span { color: var(--white); font-style: italic; font-weight: 400; }
.nav-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-close:hover { background: rgba(184,151,90,0.2); color: var(--gold); }

.nav-panel-links {
  padding: 16px 0;
}
.nav-panel-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.2s, background 0.2s;
}
.nav-panel-links a i {
  font-size: 12px;
  color: var(--gold);
  width: 16px;
}
.nav-panel-links a:hover { color: var(--gold); padding-left: 30px; background: rgba(184,151,90,0.05); }

.nav-panel-cta {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-panel-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.nav-panel-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}
.nav-panel-contact a i { color: var(--gold); }

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(10,6,1,0.85) 100%),
    url('https://gurgaonhouze.co.in/dlf-group/ews-flats/assets/images/gallery/6.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Animated grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
/* Gold vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 60%, rgba(184,151,90,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

/* Hero Content */
.hero-content { padding: 60px 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 10px;
}
.hero-title .accent { color: var(--gold); font-style: italic; }

.hero-subtitle {
  font-family: var(--fd);
  font-size: clamp(14px, 2vw, 20px);
  color: rgba(255,255,255,0.65);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-divider { width: 56px; height: 1px; background: var(--gold); margin-bottom: 28px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-badge {
  padding: 6px 14px;
  border: 1px solid rgba(184,151,90,0.45);
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(184,151,90,0.05);
  backdrop-filter: blur(4px);
  transition: border-color 0.25s, background 0.25s;
}
.hero-badge:hover { border-color: var(--gold); background: rgba(184,151,90,0.12); }

.hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--gold);
  padding: 14px 28px;
  border-radius: 2px;
  margin-bottom: 32px;
  animation: pulseGold 2.5s infinite;
}
@keyframes pulseGold {
  0%   { box-shadow: 0 0 0 0 rgba(184,151,90,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(184,151,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,151,90,0); }
}
.hero-price-pill .pill-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.hero-price-pill .pill-value {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-price-pill .pill-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.25);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Form Card */
.hero-form-card {
  background: rgba(8,8,8,0.9);
  border: 1px solid rgba(184,151,90,0.3);
  border-radius: 4px;
  padding: 36px 30px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.hfc-title {
  font-family: var(--fd);
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.hfc-sub {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 6px;
}
.hfc-divider { width: 28px; height: 1px; background: var(--gold); margin-bottom: 22px; }
.hfc-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* =====================================================
   MOBILE FORM (below hero)
===================================================== */
.mobile-hero-form {
  display: none;
  background: var(--dark2);
  padding: 40px 0;
  border-top: 1px solid rgba(184,151,90,0.2);
}
@media (max-width: 991px) { .mobile-hero-form { display: block; } }

.mobile-hero-form .mhf-title {
  font-family: var(--fd);
  font-size: 24px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.mobile-hero-form .mhf-sub {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* =====================================================
   ABOUT SECTION
===================================================== */
.about-section { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  z-index: 0;
  transition: transform 0.4s;
}
.about-img-wrap:hover::before { transform: translate(-4px,-4px); }
.about-img-wrap img {
  width: 100%;
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 2;
  background: var(--gold);
  padding: 18px 24px;
  text-align: center;
}
.about-badge .ab-num {
  font-family: var(--fd);
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.about-badge .ab-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  display: block;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ddd;
  border: 1px solid #ddd;
  margin: 28px 0;
}
.stat-item {
  background: var(--white);
  padding: 18px 16px;
  text-align: center;
}
.stat-val {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
}

/* =====================================================
   HIGHLIGHTS SECTION
===================================================== */
.highlights-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.highlights-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 40%, rgba(184,151,90,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.highlights-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.highlights-header p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.highlight-card {
  background: var(--dark2);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.highlight-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}
.highlight-card:hover { background: var(--dark3); }
.highlight-card:hover::after { width: 100%; }

.hc-num {
  font-family: var(--fd);
  font-size: 44px;
  font-weight: 700;
  color: rgba(184,151,90,0.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.highlight-card:hover .hc-num { color: rgba(184,151,90,0.4); }
.hc-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
  transition: transform 0.4s;
}
.highlight-card:hover .hc-icon { transform: scale(1.15); }
.hc-title {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}
.hc-desc { font-size: 12px; color: var(--grey); line-height: 1.6; }

/* =====================================================
   PRICE SECTION
===================================================== */
.price-section { background: var(--white); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.price-card {
  border: 1px solid #e8e0d4;
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.price-card.dark {
  background: var(--dark);
  border-color: rgba(184,151,90,0.3);
}
.price-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(184,151,90,0.14);
  transform: translateY(-5px);
}
.pc-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  font-weight: 600;
  white-space: nowrap;
}
.pc-icon {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.pc-name {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.price-card.dark .pc-name { color: var(--white); }
.pc-config {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.pc-price {
  font-family: var(--fd);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  margin: 18px 0 22px;
  line-height: 1;
}
.pc-features {
  text-align: left;
  margin-bottom: 24px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  padding: 7px 0;
  border-bottom: 1px solid #f0ebe3;
}
.price-card.dark .pc-features li {
  color: #aaa;
  border-bottom-color: rgba(255,255,255,0.06);
}
.pc-features li i { color: var(--gold); font-size: 11px; flex-shrink: 0; }

/* =====================================================
   AMENITIES SECTION
===================================================== */
.amenities-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #130d03 100%);
  position: relative;
  overflow: hidden;
}
.amenities-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8975a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}
.amenities-section .container { position: relative; z-index: 1; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.amenity-card {
  border: 1px solid rgba(184,151,90,0.15);
  padding: 32px 20px 28px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.amenity-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,151,90,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.amenity-card:hover {
  border-color: rgba(184,151,90,0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.amenity-card:hover::after { opacity: 1; }
.amenity-icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
  transition: transform 0.5s;
  position: relative;
  z-index: 1;
}
.amenity-card:hover .amenity-icon { transform: rotateY(360deg); }
.amenity-name {
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* =====================================================
   CONNECTIVITY SECTION
===================================================== */
.connectivity-section { background: var(--off-white); }

.conn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.conn-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.conn-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.conn-item:hover { transform: translateX(5px); box-shadow: 0 6px 24px rgba(184,151,90,0.12); }
.conn-num {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  min-width: 38px;
  line-height: 1;
}
.conn-info h5 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.conn-info span { font-size: 12px; color: var(--grey); }

/* =====================================================
   GALLERY SECTION
===================================================== */
.gallery-section { background: var(--white); }

.gallery-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.gallery-header p { font-size: 14px; color: #666; line-height: 1.8; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8e0d4;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.large { grid-column: span 2; }

/* Gallery placeholder images (since originals aren't available) */
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1206, #2a1e08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(184,151,90,0.4);
  font-size: 13px;
}
.gallery-placeholder i { font-size: 28px; }

/* =====================================================
   CTA STRIP
===================================================== */
.cta-strip {
  background: var(--gold);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.cta-strip .container { position: relative; }
.cta-title {
  font-family: var(--fd);
  font-size: clamp(26px, 4vw, 44px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-sub { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 15px; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--gold);
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--fb);
  transition: all var(--transition);
}
.btn-white:hover { background: var(--dark); color: var(--white); }

/* =====================================================
   DECISION CORNER
===================================================== */
.decision-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.decision-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(184,151,90,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.decision-reasons { margin-top: 12px; }
.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.reason-item:last-child { border-bottom: none; }
.reason-num {
  font-family: var(--fd);
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
  min-width: 36px;
  line-height: 1;
}
.reason-body h5 {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.reason-body p { font-size: 13px; color: var(--grey); line-height: 1.6; }

.decision-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,151,90,0.25);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.decision-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.dfc-title {
  font-family: var(--fd);
  font-size: 26px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.dfc-sub { font-size: 13px; color: var(--grey); margin-bottom: 24px; line-height: 1.5; }

/* =====================================================
   LOCATION / MAP SECTION
===================================================== */
.location-section { background: var(--dark2); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.location-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  margin-top: 28px;
}
.location-address i { color: var(--gold); font-size: 20px; margin-top: 2px; }
.location-address h5 { font-size: 14px; color: var(--white); font-weight: 600; margin-bottom: 2px; }
.location-address span { font-size: 12px; color: var(--grey); }

.map-wrapper {
  position: relative;
  border: 2px solid rgba(184,151,90,0.25);
  border-radius: 2px;
  overflow: hidden;
}
.map-wrapper iframe { display: block; width: 100%; height: 420px; border: none; }

/* =====================================================
   FOOTER
===================================================== */
footer {
  background: #040404;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--fd);
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--white); font-style: italic; font-weight: 400; }
.footer-about { font-size: 14px; color: var(--grey); line-height: 1.8; margin-bottom: 24px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.fc-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fc-icon {
  width: 42px; height: 42px;
  background: rgba(184,151,90,0.1);
  border: 1px solid rgba(184,151,90,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}
.fc-icon.wa { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.2); }
.fc-icon.wa i { color: #25D366; }
.fc-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2px;
}
.fc-text a {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}
.fc-text a:hover { color: var(--gold); }

.footer-form-title {
  font-family: var(--fd);
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-form-sub { font-size: 13px; color: var(--grey); margin-bottom: 22px; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.05); margin: 0 0 24px; }
.disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: center;
}
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  padding-bottom: 80px;
  letter-spacing: 0.5px;
}
.footer-bottom a { color: var(--gold); }

/* =====================================================
   POPUPS
===================================================== */
/* Enquire Popup */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0s 0.35s;
  backdrop-filter: blur(4px);
}
.popup-backdrop.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s, visibility 0s 0s;
}
.popup-box {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  max-width: 760px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.popup-img-col {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.popup-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.popup-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.popup-img-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.popup-img-text h4 {
  font-family: var(--fd);
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
.popup-img-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.popup-img-text p i { color: var(--gold); }

.popup-form-col { padding: 36px 32px; }
.popup-form-col h3 {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.popup-form-col .pf-divider { width: 28px; height: 2px; background: var(--gold); margin: 12px 0 20px; }

.popup-close-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--dark);
  color: var(--white);
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  z-index: 10;
  transition: background 0.2s;
}
.popup-close-btn:hover { background: var(--gold); }

/* Reload Modal Overlay */
.modal-backdrop-custom {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0s 0.35s;
  backdrop-filter: blur(4px);
}
.modal-backdrop-custom.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s, visibility 0s 0s;
}
.modal-box {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  max-width: 700px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-img-col {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.modal-img-col img { width:100%; height:100%; object-fit:cover; display:block; }
.modal-img-col .mi-overlay {
  position: absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.modal-form-col {
  padding: 32px 28px;
  background: #fff;
}
.modal-form-col h5 {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.modal-form-col h6 {
  font-size: 12px;
  color: var(--grey);
  font-weight: 400;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.modal-form-col h6 i { color: var(--gold); }
.modal-divider { width: 26px; height: 1px; background: var(--gold); margin-bottom: 18px; }
.modal-close-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  z-index: 10;
}
.modal-close-btn:hover { background: var(--gold); }

/* =====================================================
   FADE IN ANIMATIONS
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   RESPONSIVE: TABLET (max 991px)
===================================================== */
@media (max-width: 991px) {

  section { padding: 72px 0; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-form-card { display: none; }
  .hero-content { padding: 48px 0 56px; }
  .hero-title { font-size: clamp(34px, 7vw, 52px); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { bottom: -14px; right: -10px; }

  .highlights-header { grid-template-columns: 1fr; gap: 16px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }

  .price-grid { max-width: 100%; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .conn-grid { grid-template-columns: 1fr; gap: 48px; }

  .gallery-header { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; }

  .decision-grid { grid-template-columns: 1fr; gap: 48px; }

  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-wrapper iframe { height: 320px; }

  .footer-grid { grid-template-columns: 1fr; gap: 48px; }

  .popup-box { grid-template-columns: 1fr; max-width: 440px; }
  .popup-img-col { display: none; }

  .modal-box { grid-template-columns: 1fr; max-width: 400px; }
  .modal-img-col { display: none; }

  .footer-bottom { padding-bottom: 100px; }
}

/* =====================================================
   RESPONSIVE: MOBILE (max 600px)
===================================================== */
@media (max-width: 600px) {

  section { padding: 56px 0; }

  .container { padding: 0 18px; }
  .header-inner { padding: 0 18px; }

  .hero-title { font-size: clamp(30px, 9vw, 44px); }
  .hero-subtitle { font-size: 12px; letter-spacing: 2px; }
  .hero-badges { gap: 6px; }
  .hero-badge { font-size: 9px; padding: 5px 10px; }
  .hero-price-pill { padding: 12px 20px; gap: 12px; }
  .hero-price-pill .pill-value { font-size: 24px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-outline, .hero-actions .btn-gold { width: 100%; }

  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card { padding: 24px 20px; }

  .price-grid { grid-template-columns: 1fr; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .amenity-card { padding: 22px 14px 18px; }
  .amenity-icon { font-size: 24px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }

  .about-stats { grid-template-columns: 1fr 1fr 1fr; }
  .stat-val { font-size: 20px; }

  .decision-form-card { padding: 28px 22px; }

  .popup-form-col { padding: 28px 24px; }
  .modal-form-col { padding: 28px 24px; }

  .footer-bottom { padding-bottom: 90px; }
}

/* =====================================================
   CUSTOM SCROLLBAR
===================================================== */
 
/* Webkit — Chrome, Safari, Edge */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: var(--dark, #080808);
}
::-webkit-scrollbar-thumb {
  background: var(--gold, #b8975a);
  border-radius: 0;
  transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light, #d4b483);
}
::-webkit-scrollbar-corner {
  background: var(--dark, #080808);
}
 
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #b8975a #080808;
}