/* ============================================================
   ACE SECTOR 150 — LUXURY REAL ESTATE LANDING PAGE
   Color Palette:
     Primary:    #081B33 (deep navy)
     Secondary:  #D4AF37 (luxury gold)
     Accent:     #F7F7F7 (pearl)
     Text:       #1A1A1A
     Background: #FFFFFF
============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #081B33;
  --gold: #D4AF37;
  --gold-light: #E8C94A;
  --gold-dim: rgba(212,175,55,.18);
  --pearl: #F7F7F7;
  --text: #1A1A1A;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,.10);
  --glass-border: rgba(212,175,55,.25);
  --shadow-gold: 0 8px 40px rgba(212,175,55,.18);
  --shadow-dark: 0 16px 60px rgba(8,27,51,.35);
  --radius: 12px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-title: 'Cinzel', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SHARED TYPOGRAPHY ---------- */
.section-label {
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light { color: var(--white); }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 14px 32px;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.18);
  transform: translateX(-100%);
  transition: transform .4s;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 13px 30px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.5);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,.08);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 10px 0;
}
.site-header.scrolled {
  background: rgba(8,27,51,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
  padding: 10px 0;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 4px;
} */

.site-logo{
   height:50px;
   width:auto;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1;
}
.logo-sub {
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-call, .btn-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: .03em;
}
.btn-call {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-call:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa { color: #25D366; border: 1.5px solid rgba(37,211,102,.35); }
.btn-wa:hover { background: rgba(37,211,102,.1); }
.btn-visit {
  background: var(--gold);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 4px;
  letter-spacing: .04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-visit:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
   height: auto;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  animation: kenburns 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8,27,51,.88) 0%, rgba(8,27,51,.6) 50%, rgba(8,27,51,.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  /* padding-top: 80px; */
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  display: block;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  letter-spacing: .06em;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 400;
}
.hero-meta-item svg { color: var(--gold); flex-shrink: 0; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Form */
.hero-form-wrap { position: relative; }

.hero-form-glass {
  background: rgba(8,27,51,.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.hero-form-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.form-label-top {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ---------- FORMS ---------- */
.lead-form .form-group { margin-bottom: 14px; }
.lead-form input,
.lead-form textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  padding: 13px 16px;
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--white);
  transition: border-color .25s, background .25s;
  outline: none;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(255,255,255,.45); }
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
}

.contact-lead-form input,
.contact-lead-form textarea {
  background: var(--pearl);
  border: 1px solid #E0E0E0;
  color: var(--text);
}
.contact-lead-form input::placeholder,
.contact-lead-form textarea::placeholder { color: #888; }
.contact-lead-form input:focus,
.contact-lead-form textarea:focus { border-color: var(--gold); background: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .06em;
  padding: 15px 24px;
  border-radius: 6px;
  margin-top: 6px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.form-submit:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.form-submit:hover::after { transform: scaleX(1); }
.form-submit.full { margin-top: 4px; }

.form-note {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  text-align: center;
  margin-top: 10px;
}
.form-note.center { color: #999; }

/* Hero slide dots */
.hero-slide-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ---------- CAROUSEL SECTION ---------- */
.carousel-section {
  padding: 20px 0;
  overflow: hidden;
  text-align: center;
}




/* ---------- OVERVIEW / COUNTERS ---------- */
.overview-section {
  position: relative;
  padding: 100px 0;
}
.overview-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a50 100%);
}
.overview-section .container { position: relative; z-index: 1; }
.overview-section .section-label { text-align: center; }
.overview-section .section-title { text-align: center; }

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.counter-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .5s;
}
.counter-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.counter-card:hover::before { transform: scaleX(1); }

.counter-icon { font-size: 2rem; margin-bottom: 12px; }
.counter-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.counter-suffix { font-size: 1.5rem; }
.counter-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  letter-spacing: .05em;
}

/* ---------- HIGHLIGHTS ---------- */
.highlights-section { padding: 100px 0; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-card {
  background: var(--white);
  border: 1px solid #EEE;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.highlight-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.highlight-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.highlight-card:hover::after { transform: scaleX(1); }
.highlight-icon { font-size: 2.2rem; margin-bottom: 16px; }
.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.highlight-card p { font-size: .9rem; color: #666; line-height: 1.7; }

/* ---------- PRICING ---------- */
.pricing-section {
  position: relative;
  padding: 100px 0;
}
.pricing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #081B33 0%, #0f2e55 60%, #081B33 100%);
}
.pricing-section .container { position: relative; z-index: 1; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 16px;
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  background: rgba(212,175,55,.08);
  border-color: var(--gold);
  transform: scale(1.04);
}
.pricing-card:hover { transform: translateY(-6px) scale(1); border-color: var(--gold); }
.pricing-card.featured:hover { transform: translateY(-6px) scale(1.04); }

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.pricing-type {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.pricing-area { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1;
}
.pricing-features {
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: .87rem;
  color: rgba(255,255,255,.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}
.btn-price {
  display: block;
  text-align: center;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 24px;
  border-radius: 6px;
  letter-spacing: .06em;
  transition: var(--transition);
}
.btn-price:hover { background: var(--gold); color: var(--navy); }
.pricing-card.featured .btn-price { background: var(--gold); color: var(--navy); }
.pricing-card.featured .btn-price:hover { background: var(--gold-light); }

.pricing-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ---------- FLOOR PLANS ---------- */
.floorplan-section { padding: 30px 0; }
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.floorplan-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #EEE;
  transition: var(--transition);
}
.floorplan-card:hover { box-shadow: var(--shadow-dark); transform: translateY(-4px); }
.floorplan-img-wrap {
  /* position: relative;
  overflow: hidden;
  height: 240px; */

   position: relative;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width:768px){
  .floorplan-img-wrap img {
    width: 50%;
    height: 50%;
  }
  .floorplan-img-wrap {
    height: 150px;
  }
  .floorplan-info h3 {
    font-size: 1rem;
  }
}
.floorplan-img-wrap img {
  width: 100%; height: 100%;
  /* object-fit: contain; */
  object-fit: cover;
  transition: transform .5s;
}
.floorplan-card:hover .floorplan-img-wrap img { transform: scale(1.08); }
.floorplan-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,27,51,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.floorplan-card:hover .floorplan-overlay { opacity: 1; }
.btn-zoom {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-zoom:hover { background: var(--gold-light); }
.floorplan-info { padding: 5px 22px; background: var(--white); }
.floorplan-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
@media (max-width:768px){
  .floorplan-info h3 {
    font-size: 1rem;
    font-weight: 900;
  }
  .floorplan-info p {
    font-size: .65rem;
  }
  .btn-download {
    font-size: .65rem;
  }
}
.floorplan-info p { font-size: .85rem; color: #777; margin-bottom: 14px; }
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  transition: color .25s;
}
.btn-download:hover { color: var(--navy); }

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,27,51,.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(.92);
  transition: transform .35s;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 1.2rem;
  color: #666;
  transition: color .2s;
}
.modal-close:hover { color: var(--navy); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.modal-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  max-height: 360px;
}

/* ---------- AMENITIES ---------- */
.amenities-section {
  position: relative;
  padding: 100px 0;
}
.amenities-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #081B33 0%, #0a2140 100%);
}
.amenities-section .container { position: relative; z-index: 1; }
.amenities-section .section-label,
.amenities-section .section-title { text-align: center; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.amenity-item {
  text-align: center;
  padding: 2px 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: var(--transition);
  cursor: default;
}
.amenity-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(212,175,55,.1);
}
.amenity-icon { font-size: 2rem; margin-bottom: 10px; }
.amenity-item span {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  font-weight: 400;
  letter-spacing: .03em;
}

/* ---------- LOCATION ---------- */
.location-section { padding: 30px 0; }
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-timeline {
  position: relative;
  padding-left: 28px;
}
.location-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-dot {
  position: absolute;
  left: -25px;
  top: 14px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2.5px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.timeline-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--pearl);
  border-radius: 10px;
  border: 1px solid #EEE;
  transition: var(--transition);
}
.timeline-item:hover .timeline-content {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.timeline-icon { font-size: 1.6rem; flex-shrink: 0; }
.timeline-content h4 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.timeline-content p { font-size: .82rem; color: #666; }
.timeline-content strong { color: var(--gold); }



/* Mobile View */
@media (max-width: 768px) {

  .section-title {
    font-size: 1.6rem !important;
    line-height: 1.3;
  }

  .section-label {
    font-size: 12px !important;
    letter-spacing: 2px;
  }

  .timeline-content h4 {
    font-size: 0.65rem !important;
    font-weight: 600;
    
  }
  .timeline-item {
    margin-bottom: 0px;
  }
  .section-title {
    margin-bottom: 28px;
  }
  .timeline-content p {
    font-size: 0.55rem !important;
    line-height: 1.4;
  }

  .timeline-item {
    padding: 2px;
  }

  .timeline-icon {
    font-size: 20px;
  }

  .location-timeline {
    gap: 14px;
  }
}










.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(0.2);
}
.map-label {
  padding: 14px 20px;
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  text-align: center;
}

/* ---------- GALLERY MASONRY ---------- */
.gallery-section { padding: 30px 0; }
.gallery-section .section-label,
.gallery-section .section-title { text-align: center; }

.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .5s;
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,27,51,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.masonry-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--white);
  padding: 8px 18px;
  border-radius: 4px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }


@media (max-width: 768px) {
  .masonry-item {
    height: 200px !important;
  }

  .masonry-item img {
    height: 100%;
    object-fit: cover;
  }
}





/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 1.8rem;
  z-index: 10;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  line-height: 1;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--navy); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- WHY INVEST ---------- */
.invest-section {
  position: relative;
  padding: 100px 0;
}
.invest-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a2140 0%, var(--navy) 100%);
}
.invest-section .container { position: relative; z-index: 1; }
.invest-section .section-label,
.invest-section .section-title { text-align: center; }

.invest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.invest-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.invest-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  background: rgba(212,175,55,.07);
}
.invest-number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(212,175,55,.18);
  line-height: 1;
  margin-bottom: 12px;
  transition: color .3s;
}
.invest-card:hover .invest-number { color: rgba(212,175,55,.35); }
.invest-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.invest-card p { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.7; }


/* ---------- FAQ ---------- */
.faq-section { padding: 30px 0; background: var(--pearl); }
.faq-section .section-label,
.faq-section .section-title { text-align: center; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  margin-bottom: 12px;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: border-color .25s;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .35s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding: 0 22px 18px;
  font-size: .9rem;
  color: #555;
  line-height: 1.75;
}

@media (max-width:768px){

  .faq-section{
    padding: 50px 0;
  }

  .faq-list{
    max-width: 100%;
  }

  .faq-item{
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .faq-q{
    padding: 14px 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    gap: 8px;
  }

  .faq-icon{
    font-size: 1.1rem;
  }

  .faq-a p{
    padding: 0 16px 14px;
    font-size: 0.8rem;
    line-height: 1.7;
  }

}

@media (max-width:480px){

  .faq-q{
    font-size: 0.78rem;
    padding: 12px 14px;
  }

  .faq-a p{
    font-size: 0.75rem;
    padding: 0 14px 12px;
  }

}

/* ---------- CONTACT ---------- */
.contact-section {
  position: relative;
  padding: 100px 0;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy) 0%, #0f2e55 100%);
}
.contact-section .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-intro {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 28px;
  text-align: justify;
}






@media (max-width: 480px) {

  .section-label {
    font-size: 12px !important;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }

  .contact-intro {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
  }
}




.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: .7rem;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #020d1a;
  color: rgba(255,255,255,.65);
}
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-about {
  font-size: .85rem;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-title);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li,
.footer-col ul a {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
  line-height: 1.5;
}
.footer-col ul a:hover { color: var(--gold); }

.btn-footer-cta {
  display: inline-block;
  margin-top: 18px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .82rem;
  padding: 10px 20px;
  border-radius: 4px;
  letter-spacing: .05em;
  transition: var(--transition);
}
.btn-footer-cta:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  text-align: justify;
}
.footer-disclaimer { font-size: .72rem; margin-top: 4px; }

/* ---------- EXIT POPUP ---------- */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,27,51,.85);
  backdrop-filter: blur(10px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.exit-popup-overlay.open { opacity: 1; pointer-events: all; }

.exit-popup {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  max-width: 460px;
  width: 92%;
  position: relative;
  transform: scale(.88) translateY(20px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.exit-popup-overlay.open .exit-popup { transform: scale(1) translateY(0); }

.exit-popup-close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 1.1rem;
  color: var(--white);
  z-index: 5;
  background: rgba(0,0,0,.3);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.exit-popup-close:hover { background: rgba(0,0,0,.6); }

.exit-popup-img { position: relative; height: 200px; }
.exit-popup-img img { width: 100%; height: 100%; object-fit: cover; }
.exit-popup-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}

.exit-popup-body { padding: 28px 28px 24px; }
.exit-popup-eyebrow {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.exit-popup-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.exit-popup-sub { font-size: .85rem; color: #666; margin-bottom: 18px; }

.exit-popup .lead-form input,
.exit-popup .lead-form textarea{
background: var(--pearl);
border-color:#E0E0E0;
color:var(--text);
}

.exit-popup .lead-form textarea::placeholder,
.exit-popup .lead-form input::placeholder{
color:#999;
}
.exit-popup .lead-form input::placeholder { color: #999; }
.exit-popup .lead-form input:focus { border-color: var(--gold); }

/* ---------- STICKY MOBILE BAR ---------- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 1px solid rgba(212,175,55,.25);
}
.smb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s;
}
.smb-btn.call { color: var(--white); }
.smb-btn.whatsapp { color: #25D366; background: rgba(37,211,102,.08); }
.smb-btn.enquire { color: var(--gold); background: rgba(212,175,55,.1); }
.smb-btn:hover { background: rgba(255,255,255,.08); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  font-size: .9rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }
.delay-4 { transition-delay: .42s; }
.delay-5 { transition-delay: .52s; }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr 360px; gap: 40px; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .invest-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width:900px){

.header-ctas .btn-call,
.header-ctas .btn-wa{
display:none;
}

.hamburger{
display:flex;
z-index:10001;
}

.nav-links{
position:fixed;
top:0;
right:-100%;
width:320px;
max-width:85%;
height:100vh;
background:#081B33;
display:flex;
flex-direction:column;
padding:100px 25px 40px;
gap:0;
overflow-y:auto;
transition:.35s ease;
z-index:10000;
box-shadow:-10px 0 40px rgba(0,0,0,.35);
}
@media (max-width:900px){

  .site-header:not(.scrolled){
    background: linear-gradient(
    90deg,
    #0c2d67 0%,
    #1e4d96 45%,
    #3f67b1 100%
  );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

}
.nav-links.open{
right:0;
}

.nav-links a{
width:100%;
padding:18px 0;
font-size:1rem;
font-weight:600;
text-align:left;
color:#fff;
border-bottom:1px solid rgba(255,255,255,.08);
}



  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 21px;
  }
  .hero-form-wrap { max-width: 440px; width: 100%; }

  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .floorplan-grid { grid-template-columns: 1fr 1fr; }
  .location-layout { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 62px; }
  .testi-card { min-width: 85%; }
}

@media (max-width: 640px) {
  .section-title { font-size: 1.9rem; }
  .hero-title { font-size: 3rem; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: 1fr; }
  .floorplan-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-ctas .btn-visit { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .invest-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: 90%; padding: 24px 20px; }
  .hero-form-glass { padding: 24px 20px; }
  .contact-form-wrap { padding: 28px 22px; }
  .carousel-slide { height: 280px; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.4rem; }
  .pricing-price { font-size: 1.9rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
body.menu-open{
overflow:hidden;
}



@media (max-width:1024px){

.hero-content{
grid-template-columns:1fr !important;
gap:40px;
text-align:center;
}

.hero-left,
.hero-content > div:first-child{
max-width:100%;
}

.hero-form-wrap{
max-width:520px;
margin:auto;
width:100%;
}

.hero-meta{
justify-content:center;
}

.hero-btns{
justify-content:center;
}

.location-layout{
grid-template-columns:1fr !important;
}

.contact-grid{
grid-template-columns:1fr !important;
gap:40px;
}

}

@media (max-width:768px){

.container,
.header-inner,
.hero-content{
padding-left:18px;
padding-right:18px;
}

.hero{
min-height:auto;
padding:120px 0 80px;
height:auto;
}

.hero-title{
font-size:3rem !important;
}

.hero-tagline{
font-size:1rem;
}

.hero-meta{
flex-direction:column;
align-items:flex-start;
gap:12px;
}

.hero-btns{
flex-direction:column;
width:100%;
}

.hero-btns .btn-primary,
.hero-btns .btn-secondary{
width:100%;
justify-content:center;
}

.counters-grid,
.highlights-grid,
.pricing-grid,
.floorplan-grid,
.invest-grid{
grid-template-columns:1fr !important;
}

.amenities-grid{
/* grid-template-columns:repeat(2,1fr); */
display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-grid{
grid-template-columns:1fr !important;
gap:30px;
}

}
@media (max-width: 480px) {

  .invest-grid {
    gap: 14px;
  }

  .invest-card {
    padding: 16px 14px !important;
    height:auto !important;
      min-height:139px !important;
    border-radius: 14px;
  }

  .invest-card h3 {
    font-size: 16px !important;
    margin-bottom: 8px;
  }

  .invest-card p {
    font-size: 10px !important;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .invest-card .card-number {
    font-size: 42px !important;
    margin-bottom: 10px;
  }
  .invest-number {
  
  font-size: 1rem;
  }
}

@media (max-width:480px){

.hero-title{
font-size:2.4rem !important;
line-height:1.05;
}

.hero-form-glass{
padding:22px 16px;
}

.form-title{
font-size:1.4rem;
}

.section-title{
font-size:1.8rem;
}

.counter-card,
.highlight-card,
.pricing-card,
.floorplan-card,
.invest-card{
padding:24px 18px;
}

.timeline-content{
padding:14px;
}

.contact-form-wrap{
padding:24px 18px;
}

.modal-box{
padding:20px;
width:95%;
}

.exit-popup-body{
padding:22px 18px;
}

}


@media (max-width:360px){

.hero-title{
font-size:2rem !important;
}

.section-title{
font-size:1.6rem;
}

.pricing-price{
font-size:1.7rem;
}

.amenities-grid{
/* grid-template-columns:1fr; */
display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.hero-btns .btn-primary,
.hero-btns .btn-secondary{
padding:12px 18px;
font-size:.85rem;
}

}


/* Overflow Safety */

html,
body{
overflow-x:hidden;
}

img,
video,
iframe{
max-width:100%;
}

.masonry-grid{
overflow:hidden;
}

.toast{
max-width:90%;
white-space:normal;
text-align:center;
}

.modal-box img,
.lightbox-img{
max-width:100%;
height:auto;
}

body{
padding-bottom:70px;
}

@media(min-width:901px){
body{
padding-bottom:0;
}
}


.mobile-menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
backdrop-filter:blur(4px);
opacity:0;
visibility:hidden;
transition:.3s;
z-index:9998;
}

.mobile-menu-overlay.active{
opacity:1;
visibility:visible;
}

body.menu-open{
overflow:hidden;
}




/* ===== INTL TEL INPUT FIX ===== */

.iti{
width:100%;
position:relative !important;
}

.iti__country-list{
z-index:999999 !important;
max-width:320px !important;
width:320px !important;
overflow-x:hidden !important;
box-shadow:0 10px 30px rgba(0,0,0,.35);
}

/* HERO FORM */

.hero-form-glass .iti input{
color:#fff !important;
}

.hero-form-glass .iti__selected-dial-code{
color:#fff !important;
}

.hero-form-glass .iti__country-list{
background:#081B33 !important;
border:1px solid rgba(212,175,55,.25) !important;
}

.hero-form-glass .iti__country{
color:#fff !important;
}

.hero-form-glass .iti__search-input{
background:#102743 !important;
color:#fff !important;
}

/* CONTACT FORM */

.contact-lead-form .iti__country-list{
background:#fff !important;
border:1px solid #ddd !important;
}

.contact-lead-form .iti__country{
color:#1A1A1A !important;
}

.contact-lead-form .iti__selected-dial-code{
color:#1A1A1A !important;
}

/* POPUP FORM */

.exit-popup .iti__country-list{
background:#fff !important;
border:1px solid #ddd !important;
}

.exit-popup .iti__country{
color:#1A1A1A !important;
}

.exit-popup .iti__selected-dial-code{
color:#1A1A1A !important;
}

.exit-popup .iti__search-input{
background:#fff !important;
color:#1A1A1A !important;
}


/* ===== POPUP MOBILE FIX ===== */

.exit-popup{
max-height:90vh;
overflow:visible !important;
}

.exit-popup::-webkit-scrollbar{
width:6px;
}

.exit-popup::-webkit-scrollbar-thumb{
background:#D4AF37;
border-radius:20px;
}

@media (max-width:480px){

.exit-popup{
max-height:92vh;
}

.exit-popup-img{
height:120px;
}

.exit-popup-body{
padding:18px;
}

.exit-popup-body h3{
font-size:1.3rem;
}

.exit-popup-sub{
font-size:.8rem;
margin-bottom:12px;
}

.exit-popup .lead-form .form-group{
margin-bottom:10px;
}

.exit-popup .lead-form input,
.exit-popup .lead-form textarea{
padding:11px 14px;
font-size:.85rem;
}

.exit-popup .lead-form textarea{
min-height:80px;
}

}
/* ===== EXIT POPUP PHONE INPUT ===== */

.exit-popup .iti__selected-dial-code{
color:#1A1A1A !important;
font-weight:600;
}

.exit-popup .iti__country{
color:#1A1A1A !important;
}

.exit-popup .iti__search-input{
color:#1A1A1A !important;
background:#fff !important;
}

.exit-popup .iti input{
color:#1A1A1A !important;
}

.exit-popup .iti input::placeholder{
color:#888 !important;
}


/* CONTACT FORM COUNTRY DROPDOWN FIX */

.contact-lead-form .iti__country-list{
    background:#fff !important;
    border:1px solid #ddd !important;
}

.contact-lead-form .iti__country{
    color:#1A1A1A !important;
}

.contact-lead-form .iti__country:hover{
    background:#f5f5f5 !important;
}

.contact-lead-form .iti__search-input{
    background:#fff !important;
    color:#1A1A1A !important;
}

.contact-lead-form .iti__selected-dial-code{
    color:#1A1A1A !important;
}

.contact-lead-form .iti__dial-code{
    color:#D4AF37 !important;
}







.mobile-banner{
   display:none;
}

.mobile-banner img{
   width:100%;
   display:block;
   object-fit:cover;
}
@media (max-width:768px){

  .mobile-banner{
    display:block;
    margin-top:70px;
  }

  .hero-slides{
    display:none !important;
  }

   .hero{
    min-height:auto !important;
    height:auto !important;
    padding:0 !important;
    display:block !important;
  }

  .hero-content{
    padding-top:20px !important;
    background-color: #020d1a;
  }
  .hero-slides,
  .hero-overlay,
  .hero-slide-dots,
  .hero-scroll-hint{
    display:none !important;
  }
}

@media screen and (max-width: 1024px){
  
  .hero{
    height:auto !important;
    min-height:auto !important;
    /* padding:140px 0 80px !important; */
  }
  
  .hero-content{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:30px !important;
    text-align:center;
    
  }

  .hero-left{
    width:100% !important;
    max-width:100% !important;
  }

  .hero-form-wrap{
    width:100% !important;
    max-width:500px !important;
    margin:auto !important;
  }

  .hero-meta{
    justify-content:center !important;
  }

  .hero-btns{
    justify-content:center !important;
  }

  .nav-links{
    gap:14px !important;
  }

  .nav-links a{
    font-size:13px !important;
  }

  .header-ctas{
    gap:6px !important;
  }
}



@media (min-width: 769px) and (max-width: 1100px) {

  .hero-content{
    grid-template-columns: minmax(0,1fr) 320px !important;
    gap: 25px !important;
    align-items: center;
  }

  .hero-title{
    font-size: 4.2rem !important;
  }

  .hero-tagline{
    font-size: 1rem !important;
  }

  .hero-meta{
    gap: 12px !important;
  }

  .hero-meta-item{
    font-size: 13px !important;
  }

  .hero-form-wrap{
    width: 320px !important;
  }

  .hero-form-glass{
    padding: 22px 18px !important;
  }

  .form-title{
    font-size: 1.9rem !important;
  }

  .nav-links{
    gap: 14px !important;
  }

  .nav-links a{
    font-size: 12px !important;
  }

  .btn-wa,
  .btn-visit{
    padding: 8px 12px !important;
    font-size: 12px !important;
  }
}












.highlights-section{
  padding:100px 0;
  background:#f5f5f5;
}

.highlights-layout{
  display:grid;
  grid-template-columns:1fr 400px 1fr;
  gap:40px;
  align-items:center;
}

.highlight-column{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.highlight-box{
  position:relative;
  background:#fff;
  padding:28px 28px 28px 70px;
  border-radius:14px;
  font-size:1.2rem;
  font-weight:500;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
  overflow: hidden;
  transition: all .35s ease;
  cursor: pointer;
}
.highlight-box::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,.12),
    transparent
  );
  transition:.6s;
}

.highlight-box:hover::before{
  left:100%;
}

.highlight-box:hover{
  transform:translateY(-6px);
  background:linear-gradient(90deg,#13233d,#1d2f4d);
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.highlight-box:hover{
  color:#D4AF37;
}

.highlight-box span{
  transition:.3s;
}

.highlight-box:hover span{
  background:#D4AF37;
  color:#081B33;
  transform:translateY(-50%) scale(1.1);
}
.highlight-box span{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  background:#081B33;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.9rem;
  font-weight:700;
}

.highlight-box.right{
  padding:28px 70px 28px 28px;
}

.highlight-box.right span{
  left:auto;
  right:16px;
}

.highlight-center{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.highlight-image-wrap{
  width:380px;
  height:520px;
  border-radius:200px;
  overflow:hidden;
}

.highlight-image-wrap img{
  width:100%;
  height:70%;
  object-fit:cover;
}

.highlight-strip{
  position:absolute;
  background:#081b33a1;
  padding:80px 22px 80px 22px;
  font-size:3rem;
  font-weight:500;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  color:#fff;
}
@media (max-width:1100px){
  .highlights-layout{
    grid-template-columns:1fr;
    gap:40px;
  }

  .highlight-center{
    order:1;
    margin:auto;
  }

  .highlight-column{
    order:2;
    width:100%;
  }
}

/* Tablet + Mobile */
@media (max-width:768px){

  .highlights-section{
    padding:60px 0;
    overflow:hidden;
  }

  .highlights-layout{
    gap:10px;
  }

  .highlight-center{
    width:100%;
    display:flex;
    justify-content:center;
  }

  .highlight-image-wrap{
    width:280px;
    height:380px;
  }

  .highlight-strip{
    font-size:2rem;
    padding:60px 14px;
  }

  .highlight-column{
    width:100%;
    gap:18px;
  }

  .highlight-box,
  .highlight-box.right{
    width:100%;
    padding:22px 18px 22px 65px;
    font-size:1rem;
    border-radius:14px;
  }

  /* Crop Fix */
  .highlight-box span,
  .highlight-box.right span{
    left:14px !important;
    right:auto !important;
    width:36px;
    height:36px;
    font-size:.8rem;
    display:flex;
    align-items:center;
    justify-content:center;
  }

}

/* Small Mobile */
@media (max-width:480px){

  .highlight-image-wrap{
    width:240px;
    height:320px;
  }

  .highlight-strip{
    font-size:1.5rem;
    padding:45px 12px;
  }

  .highlight-box,
  .highlight-box.right{
    padding:7px 0px 7px 58px;
    font-size:.80em;
  }

  .highlight-box span,
  .highlight-box.right span{
    width:20px;
    height:20px;
    left:12px !important;
    font-size:.75rem;
  }
}



.about-section{
  padding:100px 0;
  background:#f7f2e8;
}

.about-layout{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:70px;
  align-items:center;
}

.about-content h2{
  font-size:3rem;
  font-weight:700;
  color:#081B33;
  margin-bottom:30px;
}

.about-content p{
  font-size:1.05rem;
  line-height:2;
  color:#333;
  margin-bottom:20px;
}

.about-btns{
  display:flex;
  gap:20px;
  margin-top:40px;
}

.about-btn{
  padding:18px 34px;
  border-radius:40px;
  font-size:1rem;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.brochure-btn{
  background:#003b4f;
  color:#fff;
}

.visit-btn{
  background:#b8862d;
  color:#fff;
}

.about-btn:hover{
  transform:translateY(-3px);
}

.about-image img{
  width:100%;
  border-radius:8px;
  display:block;
}

@media (max-width:1100px){

  .about-layout{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-image{
    order:1;
  }

  .about-content{
    order:2;
  }
}

@media (max-width:768px){

  .about-section{
    padding:60px 0;
  }

  .about-content h2{
    font-size:1.2rem;
    margin-bottom:20px;
  }

  .about-content p{
    font-size:.80rem;
    line-height:1.3;
    text-align: justify;
  }

  .about-btns{
    flex-direction:column;
    gap:15px;
  }

  .about-btn{
    width:72%;
    text-align:center;
    padding:3px 0px;
  }
}












@media (max-width:768px){

  .masonry-grid{
    display:flex !important;
    columns:unset !important;
    column-gap:0 !important;
    overflow-x:auto;
    gap:20px !important;
    padding:0 18px 15px 18px;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
  }

  .masonry-grid::-webkit-scrollbar{
    display:none;
  }

  .masonry-item{
    flex:0 0 85%;
    min-width:85%;
    margin-bottom:0 !important;
    scroll-snap-align:center;
    border-radius:16px;
    overflow:hidden;
  }

  .masonry-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
  }

}










.siteplan-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #071a35, #0a2a52);
    position: relative;
}

.siteplan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.siteplan-content .section-label {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.siteplan-content .section-title {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
}

.siteplan-content .section-title span {
    color: #d4af37;
}

.siteplan-text {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 30px;
}

.siteplan-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.siteplan-features div {
    background: rgba(255,255,255,0.08);
    padding: 14px;
    border-radius: 10px;
    color: #fff;
    border: 1px solid rgba(212,175,55,0.2);
}

.siteplan-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #d4af37;
    color: #071a35;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
}

.siteplan-image {
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    position: relative;
}

.siteplan-image img {
    width: 100%;
    border-radius: 18px;
    border: 2px solid rgba(212,175,55,0.3);
    filter: blur(4px);   /* Blur effect */
    transition: all 0.4s ease;
}

.siteplan-image::after {
    content: "Click to View Site Plan";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212,175,55,0.9);
    color: #071a35;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    pointer-events: none;
    z-index: 2;
    
}


@media (max-width: 768px) {
    .siteplan-section {
        padding: 60px 0;
    }

    .siteplan-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .siteplan-content .section-title {
        font-size: 32px;
    }

    .siteplan-text {
        font-size: 14px;
    }

    .siteplan-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .siteplan-content .section-title {
        font-size: 26px;
    }

    .siteplan-content .section-label {
        font-size: 12px;
    }

    .siteplan-text {
        font-size: 13px;
    }

    .siteplan-btn {
        width: 100%;
        text-align: center;
    }
}




















/* Floor Plan Description */
.floorplan-section p{
    /*max-width: 900px;*/
    margin: 18px auto 45px;
    font-size: 16px;
    line-height: 1.8;
    color: #5d5d5d;
    /*text-align: center;*/
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.floorplan-section p strong{
    color: #0b2341;
    font-weight: 600;
}

.floorplan-section p span{
    color: #d4a437;
    font-weight: 600;
}
@media (max-width:768px){

    .floorplan-section p{
        font-size: 14px;
        line-height: 1.7;
        margin: 15px auto 30px;
        padding: 0 10px;
    }

}