/* ══════════════════════════════════════════
   EVARA SHADES – LUXURY REAL ESTATE CSS
   Theme: Ultra-Luxury | Deep Green + Gold
   Font: Cormorant Garamond + Jost
   ══════════════════════════════════════════ */

/* ──────────────────────────────────────────
   0. CSS CUSTOM PROPERTIES
────────────────────────────────────────── */
:root {
  --green-deep:   #0f2318;
  --green-mid:    #1a3a28;
  --green-lt:     #2d5a3d;
  --green-accent: #3b7a52;
  --gold:         #c9a84c;
  --gold-lt:      #e2c47a;
  --gold-pale:    #f5e9c9;
  --white:        #fdfcf8;
  --off-white:    #f7f4ee;
  --charcoal:     #1c1c1c;
  --grey:         #6b6b6b;
  --grey-lt:      #d4d0c8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius:      4px;
  --radius-lg:   12px;
  --shadow:      0 4px 32px rgba(15,35,24,0.18);
  --shadow-deep: 0 12px 60px rgba(15,35,24,0.28);
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container:   1320px;
  --gap:         2rem;
}

/* ──────────────────────────────────────────
   1. RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.mt-md { margin-top: 2rem; }

/* ──────────────────────────────────────────
   2. TYPOGRAPHY HELPERS
────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--green-accent); }

.section-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ──────────────────────────────────────────
   3. BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1.1rem 3rem; font-size: 0.9rem; }

/* ──────────────────────────────────────────
   4. NAVIGATION
────────────────────────────────────────── */
.rera-fixed{
    display:none;
    /*position:fixed;right:0;top:100px;height:110px;width:auto;z-index:999;padding:10px;background-color:#000;*/
}
@media(max-width:800px){
    .rera-fixed{position:fixed;display:block;
    right:0;top:auto;bottom:10px;height:110px;width:auto;z-index:999;padding:10px;background-color:#000;
}
}
.text-center{text-align:center;}
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(15,35,24,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.25);
  padding: 20px 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.logo-evara {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
}
.logo-shades {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  font-weight: 500;
  text-transform: uppercase;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--green-deep);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--gold-lt); color: var(--green-deep); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--green-deep);
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem);
  gap: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.nav-mobile.open {
  display: flex;
  max-height: 600px;
}
.nav-mobile a {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-mobile a:last-child { border-bottom: none; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ──────────────────────────────────────────
   5. HERO SLIDER
────────────────────────────────────────── */
#hero { position: relative; height: 100vh; min-height: 640px; }

.heroSwiper, .hero-slide {
  height: 100vh;
  min-height: 640px;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--green-deep);
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,35,24,0.82) 0%, rgba(15,35,24,0.45) 60%, transparent 100%);
}
.hero-overlay--green {
  background: linear-gradient(135deg, rgba(29,68,44,0.85) 0%, rgba(15,35,24,0.4) 60%, transparent 100%);
}
.hero-overlay--dark {
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(15,35,24,0.45) 65%, transparent 100%);
}
.hero-overlay--warm {
  background: linear-gradient(135deg, rgba(28,20,10,0.82) 0%, rgba(15,35,24,0.45) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(2rem, 6vw, 8rem);
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 5.5rem;
  left: clamp(2rem, 6vw, 8rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { width: 40px; opacity: 1; }
  50% { width: 60px; opacity: 0.6; }
}

/* Swiper custom styles */
.heroSwiper-pagination { bottom: 2.5rem !important; left: clamp(2rem, 6vw, 8rem) !important; width: auto !important; text-align: left; }
.heroSwiper-pagination .swiper-pagination-bullet {
  width: 28px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.35);
  opacity: 1; margin: 0 4px;
  transition: all 0.3s;
}
.heroSwiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 48px;
}
.hero-prev, .hero-next {
  color: var(--gold) !important;
  width: 44px !important; height: 44px !important;
}
.hero-prev::after, .hero-next::after { font-size: 1.1rem !important; font-weight: 700; }

/* RERA strip */
.rera-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  background: rgba(15,35,24,0.92);
  backdrop-filter: blur(8px);
  padding: 0.5rem clamp(2rem, 6vw, 8rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.rera-sep { color: var(--gold); opacity: 0.6; }

/* Hero reveal animations */
.reveal-fade { opacity: 0; animation: revealFade 1s forwards 0.5s; }
.reveal-up { opacity: 0; transform: translateY(30px); animation: revealUp 0.9s forwards 0.6s; }
@keyframes revealFade { to { opacity: 1; } }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* ──────────────────────────────────────────
   6. ABOUT SECTION
────────────────────────────────────────── */
.section-about {
  background: var(--white);
  padding: clamp(5rem, 8vw, 9rem) 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-bottom: clamp(4rem, 6vw, 7rem);
}

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}
.badge {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--grey-lt);
  border-radius: var(--radius);
  min-width: 110px;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.badge-txt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  font-weight: 500;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-frame img { border-radius: var(--radius-lg); }
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 160px;
  height: 160px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-quote {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.5;
}

/* USP Strip */
.usp-strip {
  background: var(--green-deep);
  padding: 1.8rem clamp(2rem, 6vw, 8rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.usp-icon { font-size: 1.8rem; line-height: 1; }
.usp-item > div { display: flex; flex-direction: column; }
.usp-item strong { font-size: 0.85rem; font-weight: 600; }
.usp-item span { font-size: 0.68rem; color: var(--gold-lt); letter-spacing: 0.08em; text-transform: uppercase; }

/* ──────────────────────────────────────────
   7. LIFESTYLE / STORYTELLING
────────────────────────────────────────── */
.section-lifestyle {
  background: var(--off-white);
}

.lifestyle-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: stretch;
}
.lifestyle-block--right { direction: rtl; }
.lifestyle-block--right > * { direction: ltr; }

.lifestyle-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--green-mid);
  min-height: 480px;
}

.lifestyle-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem) clamp(3rem, 7vw, 8rem);
  background: var(--white);
}
.lifestyle-block--right .lifestyle-text { background: var(--off-white); }

.story-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}
.story-title em { font-style: italic; color: var(--green-accent); }

.lifestyle-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey);
  max-width: 420px;
  margin-bottom: 2rem;
}
.story-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
}

/* ──────────────────────────────────────────
   8. FEATURES (AC Kitchen, EV, Lobby)
────────────────────────────────────────── */
.section-features {
  background: var(--green-deep);
  padding: clamp(5rem, 8vw, 9rem) 0;
}
.section-features .section-title { color: var(--white); }
.section-features .section-title em { color: var(--gold-lt); }
.section-features .section-sub { color: rgba(255,255,255,0.55); }
.section-features .section-label { color: var(--gold); }

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border-color: rgba(201,168,76,0.25);
}

.feature-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.feature-img-wrap img { transition: transform 0.6s ease; }
.feature-card:hover .feature-img-wrap img { transform: scale(1.06); }

.feature-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.feature-body {
  padding: 1.8rem;
}
.feature-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.feature-tagline {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.feature-body p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

/* ──────────────────────────────────────────
   9. AMENITIES
────────────────────────────────────────── */
.section-amenities {
  background: var(--off-white);
  padding: clamp(5rem, 8vw, 9rem) 0;
}

.amenities-header { text-align: center; margin-bottom: 3rem; }
.amenities-header .section-sub { margin: 0 auto 0; }

.amenity-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--grey-lt);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--grey);
  background: var(--white);
  transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(15,35,24,0.07);
  transition: all var(--transition);
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.amenity-card.hidden { display: none; }

.amenity-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--green-mid);
}
.amenity-img img { transition: transform 0.55s ease; }
.amenity-card:hover .amenity-img img { transform: scale(1.07); }

.amenity-body {
  padding: 1.4rem;
}
.amenity-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.amenity-body p {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--grey);
}

/* ──────────────────────────────────────────
   10. GALLERY
────────────────────────────────────────── */
.section-gallery {
  background: var(--white);
  padding: clamp(5rem, 8vw, 9rem) 0;
}

.gallery-header { text-align: center; margin-bottom: 2.5rem; }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.gfilter-btn {
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--grey-lt);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--grey);
  background: transparent;
  transition: all 0.25s;
}
.gfilter-btn:hover, .gfilter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}

/* Masonry */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  break-inside: avoid;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item--tall img { min-height: 380px; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,35,24,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.gallery-item.hidden { display: none; }

/* ──────────────────────────────────────────
   11. LOCATION
────────────────────────────────────────── */
.section-location {
  background: var(--off-white);
  padding: clamp(5rem, 8vw, 9rem) 0;
}
.location-header { text-align: center; margin-bottom: 4rem; }
.location-header .section-sub { margin: 0 auto; }

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--grey-lt);
  background: var(--green-mid);
}
.map-frame iframe { display: block; width: 100%; height: 100%; }

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

.connect-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-lt);
}
.connect-item > div:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.connect-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
}
.connect-item span {
  font-size: 0.78rem;
  color: var(--grey);
  font-weight: 500;
}
.connect-item--nearby strong { color: var(--green-accent); }

.connect-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.connect-dot--gold { background: var(--gold); }

/* ──────────────────────────────────────────
   12. SPECIFICATIONS
────────────────────────────────────────── */
.section-specs {
  background: var(--green-deep);
  padding: clamp(5rem, 8vw, 9rem) 0;
}
.section-specs .section-title { color: var(--white); }
.section-specs .section-title em { color: var(--gold-lt); }
.section-specs .section-label { color: var(--gold); }

.specs-header { text-align: center; margin-bottom: 4rem; }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.spec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.spec-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.spec-card--highlight {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.25);
}

.spec-icon { font-size: 2rem; margin-bottom: 1rem; }

.spec-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.spec-card h4 em { font-style: italic; color: var(--gold-lt); }

.spec-card ul { display: flex; flex-direction: column; gap: 0.75rem; }
.spec-card li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.spec-card li:last-child { border-bottom: none; }
.spec-card li span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ──────────────────────────────────────────
   13. FLOOR PLANS
────────────────────────────────────────── */
.section-floorplans {
  background: var(--off-white);
  padding: clamp(5rem, 8vw, 9rem) 0;
}

.fp-header { text-align: center; margin-bottom: 4rem; }
.fp-header .section-sub { margin: 0 auto; }

.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-lt);
  transition: all var(--transition);
}
.fp-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.fp-label {
  background: var(--green-deep);
  color: var(--gold);
  text-align: center;
  padding: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fp-img-wrap {
  aspect-ratio: 4/3;
  background: var(--off-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.fp-img-wrap img {
  object-fit: contain;
  border-radius: var(--radius);
}

.fp-info {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--grey-lt);
}

.fp-area {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.75rem;
  color: var(--grey);
}
.fp-area span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}

/* Floor Plan Modal */
.fp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.fp-modal.active { display: flex; }

.fp-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,35,24,0.92);
  backdrop-filter: blur(6px);
}
.fp-modal-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 720px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
}
.fp-modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-size: 1.3rem;
  color: var(--grey);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.fp-modal-close:hover { color: var(--green-deep); }
#fpModalTitle {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}
#fpModalImg {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  max-height: 500px;
  background: var(--off-white);
}

/* ──────────────────────────────────────────
   14. CTA BANNER
────────────────────────────────────────── */
.section-cta-banner {
  position: relative;
  padding: clamp(6rem, 10vw, 12rem) 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--green-mid);
  transform: scale(1.1);
  transition: transform 0.8s ease;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,35,24,0.7), rgba(15,35,24,0.85));
}
.cta-banner-content {
  position: relative;
  z-index: 2;
}
.cta-banner-content .section-title { color: var(--white); }
.cta-banner-content .section-title em { color: var(--gold-lt); }

/* ──────────────────────────────────────────
   15. CONTACT
────────────────────────────────────────── */
.section-contact {
  background: var(--white);
  padding: clamp(5rem, 8vw, 9rem) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--grey);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
  transition: color 0.2s;
}
a.contact-detail-item:hover { color: var(--green-accent); }
.contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }

.contact-rera {
  font-size: 0.72rem;
  color: var(--grey);
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.contact-rera a { color: var(--green-accent); }

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--grey-lt);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.form-disclaimer {
  font-size: 0.68rem;
  color: var(--grey);
  margin-top: 1rem;
  line-height: 1.5;
  text-align: center;
}

/* ──────────────────────────────────────────
   16. FOOTER
────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.8rem; line-height: 1.7; }
.footer-tagline { color: var(--gold) !important; font-size: 0.7rem !important; letter-spacing: 0.1em; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links h5, .footer-contact h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-links a { font-size: 0.83rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.83rem; }
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-lt); }

.footer-rera {
  font-size: 0.65rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

.footer-disclaimer {
  font-size: 0.63rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.25);
  padding-bottom: 2rem;
}

.footer-copy {
  background: rgba(0,0,0,0.2);
  padding: 1rem 0;
  margin: 0 calc(-1 * clamp(1.5rem, 4vw, 4rem));
  padding-left: clamp(1.5rem, 4vw, 4rem);
  padding-right: clamp(1.5rem, 4vw, 4rem);
}
.footer-copy p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ──────────────────────────────────────────
   17. BACK TO TOP
────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.35s;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover { background: var(--gold-lt); transform: translateY(-3px); }

/* ──────────────────────────────────────────
   18. SCROLL ANIMATIONS
────────────────────────────────────────── */
.fade-in-section {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   19. PARALLAX
────────────────────────────────────────── */
.parallax-img {
  background-attachment: fixed;
}

/* ──────────────────────────────────────────
   20. RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .lifestyle-block { grid-template-columns: 1fr; }
  .lifestyle-block--right { direction: ltr; }
  .lifestyle-img { min-height: 320px; }
  .location-grid { grid-template-columns: 1fr; }
  .fp-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .fp-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-masonry { columns: 1; }
  .hero-headline { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; }
  .usp-strip { gap: 1.2rem; }
  .about-badges { flex-wrap: wrap; }
}

/* ──────────────────────────────────────────
   21. GLIGHTBOX OVERRIDES
────────────────────────────────────────── */
.glightbox-clean .gslide-description {
  background: var(--green-deep);
}
.glightbox-clean .gslide-title {
  font-family: var(--font-display);
  color: var(--white);
}

/* ──────────────────────────────────────────
   22. IMAGE PLACEHOLDER FALLBACK
────────────────────────────────────────── */
img[src=""],
img:not([src]) {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
}
