@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ── VARIABLES ── */
:root {
  --gold: #c6a96a;
  --gold-dark: #a07c3a;
  --gold-pale: #f7f0e3;
  --navy: #0d1b2a;
  --navy-mid: #16324f;
  --white: #ffffff;
  --off-white: #faf9f6;
  --text-dark: #1a1a1a;
  --text-mid: #5a5a5a;
  --border: #e5ddd0;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.17);
  --radius: 12px;
  --transition: all 0.35s ease;
}

/* ── RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--off-white);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── LAYOUT ── */
.main-container {
  display: flex;
  min-height: 100vh;
}
.main-content {
  flex: 1;
  overflow: visible;
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(14px);
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.nav-container {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 150px;
  height: 100%;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(198, 169, 106, 0.1);
}

.btn-download-brochure {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white !important;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
}
.btn-download-brochure:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 169, 106, 0.4);
}

.menu-btn {
  display: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO BANNER ── */
.banner {
  width: 100%;
  position: relative;
}

.slider {
  position: relative;
  height: 100vh;
  background: var(--navy);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* dark gradient so text is readable */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 27, 42, 0.88) 0%,
    rgba(13, 27, 42, 0.55) 55%,
    rgba(13, 27, 42, 0.15) 100%
  );
  z-index: 1;
}

/* hero overlay panel */
.banner-info {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(500px, 90vw);
  padding: 2rem 2.25rem;
  background: rgba(13, 27, 42, 0.42);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 169, 106, 0.22);
  border-radius: 18px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.info-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  padding: 0.28rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.banner-info h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  color: white;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.banner-info .location {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.87rem;
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.key-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 1.3rem;
}

.key-features .feature {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(198, 169, 106, 0.2);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
}

.feature-label {
  display: block;
  font-size: 0.64rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.feature-value {
  display: block;
  font-size: 0.78rem;
  color: white;
  font-weight: 500;
  margin-top: 0.1rem;
}

.hero-cta-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-cta-row .btn-primary {
  padding: 0.58rem 1.1rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.rera-badge {
  position: absolute;
  top: 84px;
  right: 20px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 3;
  letter-spacing: 0.03em;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  z-index: 5;
}
.slider-btn:hover {
  background: rgba(198, 169, 106, 0.5);
  border-color: var(--gold);
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── SECTION UTILITIES ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  margin-top: 0.65rem;
}

.section-title.center {
  text-align: center;
}
.section-title.center::after {
  margin: 0.65rem auto 0;
}

.section-subtitle {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 640px;
  line-height: 1.8;
  margin-top: 0.75rem;
}

/* ── OVERVIEW ── */
.overview {
  background: var(--off-white);
  padding: 5.5rem 0;
}

.overview-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

.overview-text p {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.overview-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.stat-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}
.stat-number {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── HIGHLIGHTS ── */
.highlights-section {
  background: var(--navy);
  padding: 5.5rem 0;
}
.highlights-section .section-title {
  color: white;
}
.highlights-section .section-title::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.highlights-section .section-tag {
  color: var(--gold);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(198, 169, 106, 0.18);
  border-radius: 12px;
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition: var(--transition);
}
.highlight-card:hover {
  background: rgba(198, 169, 106, 0.1);
  border-color: rgba(198, 169, 106, 0.45);
  transform: translateY(-3px);
}

.highlight-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.highlight-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ── LOCATION BENEFITS ── */
.location-benefits {
  background: white;
  padding: 5.5rem 0;
}

.location-benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.loc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.loc-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background: var(--off-white);
  border-radius: 10px;
  font-size: 0.91rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.loc-list li:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateX(4px);
}
.loc-list li::before {
  content: "→";
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── AMENITIES ── */
.amenities-section {
  background: var(--off-white);
  padding: 5.5rem 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.amenity-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.1rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.amenity-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(198, 169, 106, 0.17);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
}
.amenity-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ── GALLERY ── */
.gallery {
  background: white;
  padding: 5.5rem 0;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-grid.limited .gallery-item:nth-child(n + 4) {
  display: none;
}
.gallery-grid.expanded .gallery-item {
  display: block !important;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item::after {
  content: "⊕";
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0);
  color: white;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after {
  background: rgba(13, 27, 42, 0.38);
  opacity: 1;
}

.btn-view-more {
  display: block;
  margin: 2rem auto 0;
  padding: 0.8rem 2.5rem;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
}
.btn-view-more:hover {
  background: var(--navy);
  color: white;
}

/* ── WHY INVEST ── */
.why-invest {
  background: var(--navy);
  padding: 5.5rem 0;
}
.why-invest-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-invest .section-title {
  color: white;
}
.why-invest .section-title::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.why-invest .section-tag {
  color: var(--gold);
}
.why-invest p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.why-invest-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.why-invest-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(
    135deg,
    #8b6a1e 0%,
    var(--gold-dark) 50%,
    #6e5012 100%
  );
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.04'%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");
}

.cta-section .section-title {
  color: white;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}
.cta-section .section-title::after {
  background: rgba(255, 255, 255, 0.45);
  margin: 0.65rem auto 0;
}
.cta-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2rem;
  letter-spacing: 0.06em;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: white;
  color: var(--gold-dark) !important;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.btn-outline-white {
  background: transparent;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.65);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: white;
  transform: translateY(-3px);
}

/* ── BLUR PLACEHOLDER ── */
.blur-placeholder {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 2.5rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blur-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: blur(9px) brightness(0.65);
  transform: scale(1.06);
  display: block;
}

.blur-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  white-space: nowrap;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white !important;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
  font-family: "Poppins", sans-serif;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(160, 124, 58, 0.42);
}
.btn-brochure {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}
.btn-brochure:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 169, 106, 0.4);
}

/* ── LEAD FORM ── */
.lead-form {
  width: 370px;
  background: white;
  position: sticky;
  top: 0;
  height: 100vh;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--gold);
}

.form-container {
  padding: 2rem 1.75rem;
}

.form-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-align: center;
}

.anim {
  animation: gentlePulse 2s infinite alternate ease-in-out;
  text-align: center;
}
@keyframes gentlePulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.025);
  }
}

.anim2 {
  color: var(--gold-dark) !important;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 1.4rem !important;
  text-align: center;
  animation: none;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
  background: var(--off-white);
}
.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(198, 169, 106, 0.14);
}

.btn-submit {
  width: 100%;
  padding: 0.95rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white !important;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
  font-family: "Poppins", sans-serif;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160, 124, 58, 0.42);
}

/* ── MODAL ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2.5rem;
  border-radius: 18px;
  width: 90%;
  max-width: 440px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.modal-content h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.close-modal {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  font-size: 1.2rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--off-white);
  transition: var(--transition);
  color: var(--navy);
}
.close-modal:hover {
  background: var(--navy);
  color: white;
}

.modal-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.modal-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: "Poppins", sans-serif;
  background: var(--off-white);
  transition: var(--transition);
}
.modal-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(198, 169, 106, 0.14);
}

/* ── IMAGE POPUP ── */
.image-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 3000;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
}

#popupImage {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
}

.close-popup {
  position: absolute;
  top: -18px;
  right: -18px;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 3001;
}
.close-popup:hover {
  background: rgba(255, 255, 255, 0.38);
}

/* ── FOOTER ── */
.footer-section {
  background: var(--navy);
  color: white;
  padding: 4rem 0 2rem;
}

.contact-details {
  margin-bottom: 2.5rem;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.contact-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48%;
  height: 2px;
  background: var(--gold);
}

.contact-info {
  display: grid;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.label {
  font-weight: 600;
  min-width: 150px;
  font-size: 0.88rem;
  color: var(--gold);
}
.value {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}
.phone-link,
.email-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
.phone-link:hover,
.email-link:hover {
  color: white;
}

.disclaimer-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.disclaimer-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.disclaimer-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.82rem;
}

.sys {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.sys p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ── MOBILE BOTTOM NAV ── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.14);
  z-index: 1000;
}

.mobile-bottom-nav a,
.mobile-bottom-nav .btn-brochure {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  font-weight: 700;
  font-size: 0.93rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

/* ── FLASH MESSAGES ── */
.flash-message {
  width: 100%;
  padding: 1.1rem 2rem;
  text-align: center;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.success {
  background: var(--navy);
  color: white;
}
.error {
  background: #dc3545;
  color: white;
}
.flash-message p {
  margin: 0;
  text-align: center;
  font-weight: bold;
  color: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .main-container {
    flex-direction: column;
  }
  .lead-form {
    width: 100%;
    height: auto;
    position: static;
    border-left: none;
    border-top: 3px solid var(--gold);
  }
}

@media (max-width: 1024px) {
  .overview-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .location-benefits-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-invest-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-invest-img {
    height: 260px;
  }
}

@media (max-width: 900px) {
  .banner {
    margin-top: 0;
  }
  .slider {
    height: auto;
    min-height: 100svh;
  }
  .slide img {
    position: static;
    width: 100%;
    height: 56vw;
    object-fit: cover;
  }
  .slide::before {
    height: 56vw;
    position: absolute;
    inset: 0;
  }

  .banner-info {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    border-radius: 0;
    background: var(--navy);
    border: none;
    border-top: 3px solid var(--gold);
    backdrop-filter: none;
    max-height: none;
    overflow: visible;
  }

  .slider-btn {
    top: 28vw;
  }
  .rera-badge {
    top: 8px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    width: 100%;
  }
  .menu-btn {
    display: block;
  }

  .key-features {
    grid-template-columns: 1fr 1fr;
  }
  .hero-cta-row {
    flex-direction: column;
  }
  .hero-cta-row .btn-primary {
    text-align: center;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid.limited .gallery-item:nth-child(n + 3) {
    display: none;
  }
  .btn-view-more {
    display: block !important;
  }

  .section-title {
    font-size: 1.7rem;
  }
  .mobile-bottom-nav {
    display: flex;
  }
  .footer-section {
    padding-bottom: 80px;
  }
  .disclaimer-section {
    display: none;
  }
  .contact-item {
    flex-direction: column;
    gap: 0.2rem;
  }
}

@media (max-width: 576px) {
  .banner-info {
    padding: 1.5rem;
  }
  .key-features {
    grid-template-columns: 1fr 1fr;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section-container {
    padding: 0 1rem;
  }
  .overview,
  .highlights-section,
  .location-benefits,
  .amenities-section,
  .gallery,
  .why-invest,
  .cta-section {
    padding: 3.5rem 0;
  }
  .about-cta-row {
    flex-direction: column;
  }
  .about-cta-row .btn-primary {
    text-align: center;
  }
}

/* ══════════════════════════════════════
   ICON SYSTEM ADDITIONS
══════════════════════════════════════ */

/* Hero feature icon */
.key-features .feature {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.5rem;
  row-gap: 0;
  align-items: center;
}
.feature-icon-fa {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 1rem;
  width: 18px;
  text-align: center;
}
.feature-label {
  grid-column: 2;
}
.feature-value {
  grid-column: 2;
}

/* Hero location line icon */
.banner-info .location i {
  margin-right: 0.4rem;
  color: var(--gold);
}

/* About section */
.overview-para {
  color: var(--text-mid);
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.85;
}
.about-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* Stat items – icon replace */
.stat-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--gold-dark);
  transition: var(--transition);
}
.stat-item:hover .stat-icon-wrap {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}
.stat-number {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

/* Highlight FA icon inside gradient box */
.highlight-icon i {
  color: white;
  font-size: 0.95rem;
}

/* Location list – FA icon replaces ::before */
.loc-list li::before {
  display: none;
}
.loc-list li i {
  color: var(--gold-dark);
  font-size: 0.95rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* Amenity FA icon */
.amenity-icon i {
  font-size: 1.35rem;
  color: var(--gold-dark);
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon i {
  color: white;
}

/* Gallery subtitle spacing */
.gallery .section-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Why Invest – invest-points list */
.invest-points {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.75rem;
}
.invest-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.invest-point-icon {
  width: 40px;
  height: 40px;
  background: rgba(198, 169, 106, 0.15);
  border: 1px solid rgba(198, 169, 106, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  transition: var(--transition);
}
.invest-point:hover .invest-point-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  border-color: transparent;
}
.invest-point strong {
  display: block;
  color: white;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}
.invest-point p {
  font-size: 0.84rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0 !important;
  line-height: 1.5;
}

/* Form icon group */
.form-icon-group {
  position: relative;
  margin-bottom: 1rem;
}
.form-icon-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-size: 0.88rem;
  pointer-events: none;
}
.form-icon-group input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
  background: var(--off-white);
}
.form-icon-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(198, 169, 106, 0.14);
}
.modal-form .form-icon-group {
  margin-bottom: 0;
}

/* Lead form header icon */
.form-header-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: white;
}
.form-container h2 {
  font-size: 1.35rem;
}

/* Section tag icon spacing */
.section-tag i {
  margin-right: 0.3rem;
}

/* Footer contact icon spacing */
.label i {
  margin-right: 0.4rem;
}
.contact-item {
  align-items: center;
}

/* Rera badge icon */
.rera-badge i {
  margin-right: 0.3rem;
  font-size: 0.65rem;
}

/* Btn icon spacing */
.btn-primary i,
.btn-white i,
.btn-outline-white i,
.btn-submit i,
.btn-download-brochure i,
.btn-view-more i {
  margin-right: 0.4rem;
}

/* Info badge icon */
.info-badge i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .invest-points {
    gap: 0.85rem;
  }
  .about-cta-row {
    flex-direction: column;
  }
}
