/* ==========================================================================
   NEOPOLIS — LUXURY REAL ESTATE DESIGN SYSTEM
   Inspired by PRAANGAN "Legacy of Luxury" Figma Design
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
:root {
  /* PRAANGAN Cream / Sand Palette */
  --bg-cream:       #EDE8DF;
  --bg-cream-light: #F5F1EA;
  --bg-offwhite:    #F2F1EE;
  --bg-sand:        #DDD7CC;
  --bg-white:       #FFFFFF;

  /* Dark Teal Palette */
  --teal-900: #0F2A30;
  --teal-800: #1A3C44;
  --teal-700: #21505B;
  --teal-600: #2A6472;
  --teal-400: #4A8F9E;
  --teal-100: #D5E8EC;

  /* Accent Gold — thin lines, labels */
  --gold:       #8A7355;
  --gold-light: #BFA980;
  --gold-bg:    rgba(138,115,85,0.12);

  /* Text */
  --text-dark:   #0B2026;
  --text-body:   #25363B;
  --text-muted:  #52666B;
  --gold-accent: #8E7040;
  --text-light:  #FFFFFF;
  --text-cream:  #EDE8DF;

  /* Fonts */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 7rem 0;

  /* Transitions */
  --ease: all 0.4s cubic-bezier(0.16,1,0.3,1);

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(15,42,48,0.06);
  --shadow-md: 0 15px 40px rgba(15,42,48,0.10);
  --shadow-lg: 0 30px 70px rgba(15,42,48,0.16);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-body);
  overflow-x: hidden;
  background: var(--bg-cream);
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
}

p { margin-bottom: 1.2rem; }
a { color: inherit; text-decoration: none; transition: var(--ease); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Scroll Progress */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--teal-600);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: var(--teal-400); border-radius: 3px; }


/* --------------------------------------------------------------------------
   2. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.fade-out { opacity: 0; visibility: hidden; }

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-brand {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-800);
  margin-bottom: 0.4rem;
}

.preloader-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.preloader-ring-wrapper { position: relative; width: 52px; height: 52px; }

.preloader-ring {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(26,60,68,0.15);
  border-top-color: var(--teal-700);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.preloader-subtext {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* --------------------------------------------------------------------------
   3. NAVIGATION — PRAANGAN STYLE
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.8rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.45s ease, background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

/* Transparent state — nav links and logo are white over hero */
.site-header:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.88);
}

.site-header:not(.scrolled) .nav-link::after {
  background: rgba(255,255,255,0.7);
}

.site-header:not(.scrolled) .nav-link:hover {
  color: #FFFFFF;
}

.site-header:not(.scrolled) .nav-cta {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.55);
}

.site-header:not(.scrolled) .nav-cta:hover {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.85);
}

.site-header:not(.scrolled) .brand-logo {
  /* handled by brand-logo-dark / brand-logo-light classes */
}

/* Scrolled state — solid cream bar with dark teal text */
.site-header.scrolled {
  padding: 1rem 0;
  background: rgba(237,232,223,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(26,60,68,0.10);
  box-shadow: var(--shadow-md);
}

/* scrolled logo handled by brand-logo-dark / brand-logo-light */

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex-direction: column;
  align-items: flex-start;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.4s ease, transform 0.3s ease;
}

/* Over hero: show white SVG logo, hide navy logo */
.brand-logo-dark {
  display: block;
}

.brand-logo-light {
  display: none;
}

/* After scrolling: hide white logo, show navy logo */
.site-header.scrolled .brand-logo-dark {
  display: none;
}

.site-header.scrolled .brand-logo-light {
  display: block;
}

.brand-divider { display: none; }
.brand-text { display: none; }

/* Nav links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 1px;
  background: var(--teal-700);
  transition: width 0.35s ease;
}

.nav-link:hover { color: var(--teal-700); }
.nav-link:hover::after { width: 100%; }

/* INQUIRE NOW Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-800);
  border: 1.5px solid var(--teal-800);
  background: transparent;
  border-radius: 4px;
  transition: var(--ease);
  cursor: pointer;
}

.nav-cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }

.nav-cta:hover {
  background: var(--teal-800);
  color: var(--text-cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover svg { transform: scale(1.1); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 18px;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--teal-800);
  position: absolute;
  transition: var(--ease);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 8px; }
.nav-toggle span:nth-child(3) { top: 16px; }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 8px; }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 8px; }


/* --------------------------------------------------------------------------
   4. HERO — FULL BLEED CINEMATIC + DARK OVERLAY (PRAANGAN)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--teal-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 14s cubic-bezier(0.25,1,0.5,1);
  filter: brightness(0.6) saturate(0.9);
}

.hero:hover .hero-bg { transform: scale(1.0); }

/* Teal-tinted gradient overlay — like PRAANGAN */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(15,42,48,0.55) 0%,
      rgba(15,42,48,0.30) 40%,
      rgba(15,42,48,0.75) 100%);
  z-index: 1;
}

.hero-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 22vw, 28rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
  user-select: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding-top: 5rem;
}

/* "LIMITED 4 & 5 BHK ONLY" style eyebrow */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.5rem;
}

/* Main headline — mixed weight like "Crafting Iconic / Luxury Living Spaces" */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.0;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}

.hero-title .highlight {
  font-style: italic;
  font-weight: 600;
  color: #EDE8DF;
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(237,232,223,0.85);
  max-width: 680px;
  margin: 0 auto 2.8rem;
  line-height: 1.8;
}

.hero-subtitle-bright {
  font-weight: 500;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-scroll-indicator:hover { transform: translate(-50%, 5px); }

.hero-scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-scroll-mouse {
  width: 20px; height: 34px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  position: relative;
}

.hero-scroll-wheel {
  width: 2px; height: 6px;
  background: rgba(255,255,255,0.6);
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  border-radius: 1px;
  animation: scroll-anim 2s ease infinite;
}

@keyframes scroll-anim {
  0%  { opacity: 1; transform: translate(-50%,0); }
  75% { opacity: 0; transform: translate(-50%,12px); }
  76% { opacity: 0; transform: translate(-50%,0); }
  100%{ opacity: 1; transform: translate(-50%,0); }
}


/* --------------------------------------------------------------------------
   BUTTONS — PRAANGAN OUTLINED STYLE
   -------------------------------------------------------------------------- */
.btn-bronze {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dark);
  border: 1.5px solid var(--teal-800);
  background: transparent;
  cursor: pointer;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-bronze::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal-800);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-bronze:hover {
  color: var(--text-cream);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.btn-bronze:hover::before { transform: scaleX(1); transform-origin: left; }

/* Hero outline button */
.btn-outline-bronze {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.85);
  border: 1.5px solid rgba(237,232,223,0.4);
  background: transparent;
  cursor: pointer;
  transition: var(--ease);
}

.btn-outline-bronze:hover {
  border-color: rgba(237,232,223,0.9);
  color: #FFF;
  transform: translateY(-2px);
}

.btn-zoom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dark);
  border: 1px solid var(--teal-800);
  background: var(--bg-cream);
  cursor: pointer;
  transition: var(--ease);
}

.btn-zoom:hover {
  background: var(--teal-800);
  color: var(--text-cream);
}

/* --------------------------------------------------------------------------
   REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }


/* --------------------------------------------------------------------------
   SECTION HEADER — PRAANGAN STYLE
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Spaced uppercase label */
.section-eyebrow, .section-eyebrow-light {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-accent);
  display: block;
  margin-bottom: 0.85rem;
}

.section-eyebrow-light { color: #D5B984; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
}


/* --------------------------------------------------------------------------
   5. STATS BAR — CREAM BACKGROUND
   -------------------------------------------------------------------------- */
.stats-bar {
  background: var(--bg-offwhite);
  border-top: 1px solid rgba(26,60,68,0.08);
  border-bottom: 1px solid rgba(26,60,68,0.08);
  padding: 4rem 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 1.5rem;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem; top: 10%;
  height: 80%; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(26,60,68,0.12), transparent);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.4rem;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(3rem,5vw,4.5rem);
  font-weight: 700;
  color: #0B2026;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-plus {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-600);
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #43585D;
}


/* --------------------------------------------------------------------------
   6. PHILOSOPHY / LEGACY & VISION — CREAM + IMAGE
   -------------------------------------------------------------------------- */
.section-cream {
  background: var(--bg-cream);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.section-light {
  background: var(--bg-offwhite);
  padding: var(--section-pad);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.philosophy-content {
  padding-right: 2rem;
}

.philosophy-title {
  font-size: clamp(2.4rem,4vw,3.4rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.philosophy-copy {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-body);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.philosophy-quote {
  border-left: 3px solid var(--gold-accent);
  padding-left: 1.5rem;
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: #0C343D;
  line-height: 1.7;
}

/* RERA tag */
.rera-tag {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.55rem 1.3rem;
  border: 1.5px solid #2B4247;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #2B4247;
}

.philosophy-media { position: relative; }

.philosophy-img-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.philosophy-img-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}

.philosophy-img-frame:hover img { transform: scale(1.04); }

/* Person card overlay */
.philosophy-person-card {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: rgba(255,255,255,0.95);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  min-width: 200px;
}

.philosophy-person-card h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.philosophy-person-card span {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* --------------------------------------------------------------------------
   7. HIGHLIGHTS — GRID ON CREAM
   -------------------------------------------------------------------------- */
.section-sandstone { background: var(--bg-cream); padding: var(--section-pad); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid rgba(26,60,68,0.10);
}

.highlight-block {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(26,60,68,0.10);
  border-bottom: 1px solid rgba(26,60,68,0.10);
  transition: background 0.35s ease;
}

.highlight-block:nth-child(3n) { border-right: none; }
.highlight-block:nth-last-child(-n+3) { border-bottom: none; }

.highlight-block:hover { background: rgba(26,60,68,0.03); }

.highlight-icon-wrap {
  width: 44px; height: 44px;
  margin-bottom: 1.4rem;
  color: var(--teal-700);
}

.highlight-icon-wrap svg {
  width: 100%; height: 100%;
  stroke-width: 1.2;
}

.highlight-block h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.highlight-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  font-weight: 400;
  margin: 0;
}


/* --------------------------------------------------------------------------
   8. AMENITIES
   -------------------------------------------------------------------------- */
.amenities-section { background: var(--bg-offwhite); padding: var(--section-pad); }

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

.amenities-media { position: relative; }

.amenities-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.amenities-media-tag {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--bg-cream);
  padding: 1.2rem 1.8rem;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--teal-700);
}

.amenities-media-tag span {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #4A6065;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.amenities-media-tag strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 600;
}

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

.amenity-card {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(26,60,68,0.10);
  transition: padding-left 0.35s ease;
  cursor: default;
}

.amenity-card:last-child { border-bottom: none; }
.amenity-card:hover { padding-left: 0.5rem; }

.amenity-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.amenity-svg {
  width: 22px; height: 22px;
  color: var(--teal-600);
  flex-shrink: 0;
  stroke-width: 1.5;
}

.amenity-header h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 600;
}

.amenity-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 400;
  margin: 0;
  padding-left: 2.4rem;
}


/* --------------------------------------------------------------------------
   9. MASTER PLAN
   -------------------------------------------------------------------------- */
.masterplan-section {
  background: var(--teal-900);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.masterplan-section .section-title { color: var(--text-cream); }
.masterplan-section .section-eyebrow { color: rgba(237,232,223,0.45); }

.masterplan-frame {
  position: relative;
  margin-top: 2.5rem;
}

.masterplan-img-container {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.masterplan-img-container img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  transition: transform 1.2s ease;
  filter: brightness(0.9);
}

.masterplan-img-container:hover img { transform: scale(1.03); }

.masterplan-overlay-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(237,232,223,0.06);
  border: 1px solid rgba(237,232,223,0.12);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2.5rem;
  margin-top: 1px;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.masterplan-info { display: flex; gap: 3.5rem; flex-wrap: wrap; }

.masterplan-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.masterplan-info-item span {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.45);
}

.masterplan-info-item strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-cream);
  font-weight: 400;
}

.btn-zoom {
  color: var(--text-cream);
  border-color: rgba(237,232,223,0.35);
  background: transparent;
}

.btn-zoom:hover {
  background: rgba(237,232,223,0.1);
  color: var(--text-cream);
  border-color: rgba(237,232,223,0.7);
}


/* --------------------------------------------------------------------------
   10. FLOOR PLANS — PROPERTY CARDS (PRAANGAN STYLE)
   -------------------------------------------------------------------------- */
.floorplans-section { background: var(--bg-offwhite); padding: var(--section-pad); }

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.floorplan-card {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.floorplan-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.floorplan-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 1.8rem 1.2rem;
  border-bottom: 1px solid rgba(26,60,68,0.08);
}

.floorplan-header-bar h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.floorplan-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-800);
  border: 1.5px solid var(--teal-600);
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.floorplan-image-wrapper {
  position: relative;
  overflow: hidden;
}

.floorplan-image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: blur(18px) brightness(0.55);
  transition: filter 0.8s ease;
}

.floorplan-gate-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: rgba(15,42,48,0.35);
  backdrop-filter: blur(2px);
  transition: opacity 0.5s ease;
}

.floorplan-gate-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(237,232,223,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--text-cream);
}

.floorplan-gate-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-cream);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.floorplan-gate-overlay p {
  font-size: 0.85rem;
  color: rgba(237,232,223,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Project details bar under card */
.floorplan-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.8rem;
  border-top: 1px solid rgba(26,60,68,0.08);
}

.floorplan-meta-items {
  display: flex;
  gap: 2rem;
}

.floorplan-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-body);
}

.floorplan-meta-item svg {
  width: 14px; height: 14px;
  color: var(--teal-600);
  stroke-width: 1.5;
}

.floorplan-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark);
}

.btn-view-details {
  display: block;
  width: 100%;
  padding: 0.9rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-800);
  border: none;
  border-top: 1px solid rgba(26,60,68,0.10);
  background: transparent;
  cursor: pointer;
  transition: var(--ease);
}

.btn-view-details:hover { background: var(--teal-800); color: var(--text-cream); }


/* --------------------------------------------------------------------------
   11. LOCATION
   -------------------------------------------------------------------------- */
.location-section { background: var(--bg-cream); padding: var(--section-pad); }

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

.location-map-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-directions-btn {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: var(--bg-cream);
  color: var(--teal-800);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.map-directions-btn:hover { background: var(--teal-800); color: var(--text-cream); }

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

.location-card {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(26,60,68,0.10);
}

.location-card:last-child { border-bottom: none; }

.location-time {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--teal-600);
  margin-bottom: 0.4rem;
}

.location-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.location-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}


/* --------------------------------------------------------------------------
   12. CONTACT / ENQUIRE
   -------------------------------------------------------------------------- */
.contact-section { background: var(--teal-900); padding: var(--section-pad); }
.contact-section .section-title { color: var(--text-cream); }
.contact-section .section-eyebrow { color: rgba(237,232,223,0.4); }

.contact-card-glass {
  background: rgba(237,232,223,0.05);
  border: 1px solid rgba(237,232,223,0.12);
  backdrop-filter: blur(12px);
  padding: 4rem;
  max-width: 780px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field { display: flex; flex-direction: column; }
.form-group-full { grid-column: 1 / -1; }

.form-input {
  width: 100%;
  background: rgba(237,232,223,0.08);
  border: 1px solid rgba(237,232,223,0.18);
  color: var(--text-cream);
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(237,232,223,0.4); }
.form-input:focus { border-color: rgba(237,232,223,0.5); }

.form-input option { background: var(--teal-800); color: var(--text-cream); }

.contact-section .btn-bronze {
  color: var(--text-cream);
  border-color: rgba(237,232,223,0.4);
  width: 100%;
  max-width: 360px;
  margin: 0.5rem auto 0;
  display: flex;
}

.contact-section .btn-bronze:hover { background: rgba(237,232,223,0.12); color: var(--text-cream); }
.contact-section .btn-bronze:hover::before { background: rgba(237,232,223,0.12); }


/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--teal-900);
  border-top: 1px solid rgba(237,232,223,0.08);
  padding: 5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(237,232,223,0.08);
}

.footer-brand { padding-right: 1rem; }

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  height: 38px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(237,232,223,0.55);
  margin: 0;
}

.footer-partner-label {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.3);
  display: block;
  margin-bottom: 0.8rem;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.6);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(237,232,223,0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--text-cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(237,232,223,0.3);
}


/* --------------------------------------------------------------------------
   14. MODALS
   -------------------------------------------------------------------------- */
.modal, .lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(15,42,48,0.75);
  backdrop-filter: blur(8px);
}

.modal.active, .lightbox-modal.active { display: flex; }

.modal-content {
  background: var(--bg-cream);
  padding: 3rem;
  max-width: 520px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  transition: color 0.3s;
}

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

.lightbox-modal { padding: 2rem; }

.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  z-index: 10000;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(237,232,223,0.8);
  transition: color 0.3s;
}

.lightbox-close:hover { color: #FFF; }

.lightbox-img-wrap {
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
}

.lightbox-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-caption {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.5);
  margin-top: 1rem;
}

/* Modal form */
.modal-content .form-input {
  background: var(--bg-offwhite);
  border: 1px solid rgba(26,60,68,0.15);
  color: var(--text-dark);
}

.modal-content .form-input::placeholder { color: var(--text-muted); }
.modal-content .form-input:focus { border-color: var(--teal-600); }

.modal-content .btn-bronze {
  width: 100%;
  justify-content: center;
}


/* --------------------------------------------------------------------------
   15. FLOATING ACTIONS
   -------------------------------------------------------------------------- */
.floating-action-bar {
  position: fixed;
  bottom: 2rem; right: 1.5rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.float-action-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.float-action-btn svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.float-action-btn:hover { transform: translateY(-3px) scale(1.03); }

.float-btn-call { background: var(--teal-800); color: #FFF; }
.float-btn-call:hover { background: var(--teal-700); color: #FFF; }

.float-btn-whatsapp { background: #25D366; color: #FFF; }
.float-btn-whatsapp:hover { background: #1db954; color: #FFF; }

.float-btn-visit { background: var(--bg-cream); color: var(--teal-800); border: 1px solid rgba(26,60,68,0.2); }
.float-btn-visit:hover { background: var(--teal-800); color: #FFF; }
