﻿/* ================================================
   PURVA WINDERMERE - SHARED STYLES
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c17f59;
  --gold-light: #d4956f;
  --gold-bg: rgba(193,127,89,0.08);
  --dark: #0a1628;
  --dark-blue: #0d1e36;
  --accent: #003366;
  --white: #ffffff;
  --off-white: #f9f6f0;
  --gray: #6b7280;
  --gray-dark: #374151;
  --light-gray: #e8e4dd;
  --radius: 12px;
  --shadow: 0 2px 20px rgba(10,22,40,0.06);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.10);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --teal-glow: 0 0 30px rgba(193,127,89,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; line-height: 1.3; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* â”€â”€ NAVBAR â”€â”€ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 22, 40, 0.6);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(10,22,40,0.95); box-shadow: 0 4px 24px rgba(0,0,0,0.2); border-bottom-color: transparent; }
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
}
.nav-logo img {
  height: 26px; width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 400;
  transition: color 0.3s; letter-spacing: 0.3px; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 30px;
  font-weight: 500 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: 0.3s; display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* â”€â”€ HERO â”€â”€ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.75) 50%, rgba(10,22,40,0.95) 100%);
  z-index: 1;
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%); z-index: 2;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 850px; padding: 0 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(168,216,234,0.1);
  border: 1px solid rgba(168,216,234,0.35);
  color: #a8d8ea; padding: 10px 28px; border-radius: 4px;
  font-size: 0.72rem; letter-spacing: 3.5px; text-transform: uppercase;
  margin-bottom: 24px; font-weight: 600;
}
.hero h1 {
  color: var(--white); font-size: 3.6rem; font-weight: 700;
  margin-bottom: 16px;
}
.hero h1 span { color: #a8d8ea; }
.hero-subtitle {
  color: rgba(255,255,255,0.85); font-size: 1.15rem;
  font-weight: 300; margin-bottom: 32px; letter-spacing: 0.5px;
}
.hero-stats {
  display: flex; justify-content: center; gap: 48px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  display: block; color: var(--gold); font-size: 2.2rem;
  font-family: 'DM Serif Display', serif; font-weight: 700;
}
.hero-stat .label {
  color: rgba(255,255,255,0.5); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* â”€â”€ PAGE HEADER (inner pages) â”€â”€ */
.page-header {
  position: relative; padding: 160px 5% 80px;
  text-align: center; overflow: hidden;
}
.page-header .hero-bg { position: absolute; inset: 0; }
.page-header .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.85) 100%); }
.page-header-content { position: relative; z-index: 2; }
.page-header h1 {
  color: var(--white); font-size: 3rem; margin-bottom: 12px;
}
.page-header h1 span { color: var(--gold); }
.page-header p {
  color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 600px;
  margin: 0 auto; font-weight: 300;
}
.page-header .hero-badge { margin-bottom: 16px; }

/* â”€â”€ BUTTONS â”€â”€ */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--white);
  padding: 14px 36px; border: none; border-radius: 30px;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(193,127,89,0.3); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  padding: 14px 36px; border: 1px solid rgba(255,255,255,0.35);
  border-radius: 30px; font-size: 0.9rem; font-weight: 400;
  cursor: pointer; transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  display: inline-block; background: transparent; color: var(--dark);
  padding: 14px 36px; border: 1px solid var(--light-gray);
  border-radius: 30px; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* â”€â”€ SECTIONS â”€â”€ */
.section { padding: 100px 5%; }
.section-dark { background: var(--dark); color: var(--white); }
.section-offwhite { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 14px; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  color: var(--gray); font-size: 1.05rem;
  max-width: 620px; margin: 0 auto; font-weight: 300;
}
.section-dark .section-header p { color: rgba(255,255,255,0.55); }
.section-divider {
  width: 48px; height: 3px; background: var(--gold);
  margin: 18px auto 0; border-radius: 2px; position: relative;
}
.section-divider::after {
  content: ''; position: absolute; left: calc(100% + 6px); top: 0;
  width: 8px; height: 3px; background: var(--gold); border-radius: 2px; opacity: 0.4;
}
.container { max-width: 1200px; margin: 0 auto; }

/* â”€â”€ ABOUT â”€â”€ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-image-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 200px; height: 200px; border: 3px solid var(--gold);
  border-radius: var(--radius); z-index: -1; opacity: 0.4;
}
.about-content h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 20px; }
.about-content p {
  color: var(--gray); line-height: 1.8; margin-bottom: 20px;
}
.about-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px;
}
.about-detail { display: flex; align-items: center; gap: 12px; }
.about-detail .icon {
  width: 42px; height: 42px; background: var(--gold-bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.about-detail .text { font-size: 0.9rem; color: #444; font-weight: 500; }

/* â”€â”€ HIGHLIGHTS CARDS â”€â”€ */
.highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.highlight-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid transparent;
  border-radius: var(--radius); padding: 32px 24px; text-align: left;
  transition: var(--transition);
}
.highlight-card:hover {
  background: rgba(193,127,89,0.06);
  border-left-color: var(--gold);
  transform: translateY(-3px);
}
.highlight-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.highlight-card h4 {
  color: var(--white); font-size: 1.05rem; margin-bottom: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600;
}
.highlight-card p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.6; }

/* â”€â”€ PRICING CARDS â”€â”€ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.price-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 36px 28px; text-align: center;
  border: 1px solid var(--light-gray); transition: var(--transition);
  position: relative; overflow: hidden;
  border-top: 3px solid var(--gold);
}
.price-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
}
.price-card.featured { border: 2px solid var(--gold); }
.price-card.featured::before {
  content: 'Popular'; position: absolute; top: 18px; right: -32px;
  background: var(--gold); color: var(--white);
  font-size: 0.65rem; padding: 4px 42px;
  transform: rotate(45deg); letter-spacing: 1px; text-transform: uppercase;
  font-weight: 600;
}
.price-type {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); font-weight: 600; margin-bottom: 6px;
}
.price-bhk {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 18px;
}
.price-sqft { font-size: 1.4rem; font-weight: 600; color: var(--accent); margin-bottom: 4px; }
.price-label { font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }
.price-card hr { border: none; border-top: 1px solid var(--light-gray); margin: 16px 0; }
.price-card .btn-primary { width: 100%; text-align: center; padding: 12px; font-size: 0.85rem; }

/* â”€â”€ GALLERY GRID â”€â”€ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px; gap: 16px;
}
.gallery-grid.two-col { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
.gallery-grid.three-col { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; }
.gallery-grid .span-2 { grid-column: span 2; }
.gallery-grid .span-row-2 { grid-row: span 2; }
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.9rem; font-weight: 500; }

/* â”€â”€ AMENITY CARDS â”€â”€ */
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.amenity-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--white); transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.amenity-card img { width: 100%; height: 220px; object-fit: cover; }
.amenity-card-body { padding: 24px; }
.amenity-card h4 {
  font-family: 'Inter', sans-serif; font-weight: 600;
  color: var(--dark); margin-bottom: 8px; font-size: 1.05rem;
}
.amenity-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

/* â”€â”€ AMENITY DETAIL (full page) â”€â”€ */
.amenity-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; margin-bottom: 60px;
  padding: 40px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.amenity-detail:nth-child(even) { direction: rtl; }
.amenity-detail:nth-child(even) > * { direction: ltr; }
.amenity-detail img {
  width: 100%; height: 300px; object-fit: cover; border-radius: 8px;
}
.amenity-detail-content h3 {
  font-size: 1.6rem; color: var(--dark); margin-bottom: 12px;
}
.amenity-detail-content p {
  color: var(--gray); line-height: 1.7; margin-bottom: 16px;
}
.amenity-features { display: flex; flex-wrap: wrap; gap: 10px; }
.amenity-feature {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-bg); color: var(--gold);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 500;
}

/* â”€â”€ OVERVIEW STATS â”€â”€ */
.overview-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 60px;
}
.overview-stat {
  text-align: center; padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); transition: var(--transition);
}
.overview-stat:hover { border-color: rgba(193,127,89,0.3); }
.overview-stat .stat-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.overview-stat .stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--gold);
  display: block; margin-bottom: 4px;
}
.overview-stat .stat-label {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 1px;
}

/* â”€â”€ CONTACT â”€â”€ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.contact-info h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 30px; }
.contact-detail { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.contact-detail .icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(193,127,89,0.1); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.15rem; flex-shrink: 0;
}
.contact-detail span { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 40px;
}
.contact-form h3 { color: var(--white); margin-bottom: 24px; font-size: 1.4rem; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; color: rgba(255,255,255,0.6); font-size: 0.82rem;
  margin-bottom: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group select option { background: var(--dark); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--gold);
  color: var(--white); border: none; border-radius: 30px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}
.form-submit:hover { background: var(--gold-light); }

/* â”€â”€ CTA SECTION â”€â”€ */
.cta-section {
  background: linear-gradient(160deg, var(--dark) 0%, var(--accent) 50%, var(--dark) 100%);
  padding: 80px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(193,127,89,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 14px; position: relative; }
.cta-section p {
  color: rgba(255,255,255,0.6); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto 32px; font-weight: 300;
  position: relative;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* â”€â”€ RERA BANNER â”€â”€ */
.rera-banner {
  background: var(--off-white); padding: 20px 5%;
  text-align: center; border-top: 1px solid var(--light-gray);
}
.rera-banner p { color: var(--gray); font-size: 0.82rem; }
.rera-banner strong { color: var(--dark); }

/* â”€â”€ FOOTER â”€â”€ */
.footer {
  background: var(--dark); padding: 30px 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; max-width: 1200px; margin: 0 auto 40px;
}
.footer-brand .footer-logo {
  display: block; margin-bottom: 14px;
}
.footer-brand .footer-logo img {
  height: 24px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.85;
}
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.6; }
.footer h4 {
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; font-weight: 600; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.45); font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  color: rgba(255,255,255,0.45); font-size: 0.88rem;
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.footer-bottom {
  text-align: center; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

/* â”€â”€ LIGHTBOX â”€â”€ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%; max-height: 85vh; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 24px; right: 36px;
  color: var(--white); font-size: 2.2rem; cursor: pointer;
  background: none; border: none; opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }

/* â”€â”€ ENQUIRY MODAL â”€â”€ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--dark); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 40px; max-width: 480px; width: 90%;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  color: rgba(255,255,255,0.5); font-size: 1.5rem;
  cursor: pointer; background: none; border: none;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--white); }

/* â”€â”€ OVERVIEW TAG â”€â”€ */
.overview-tag {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.about-location {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 20px;
}

/* â”€â”€ SIDEBAR ENQUIRY FORM â”€â”€ */
.sidebar-form {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  width: 260px;
}
.sidebar-form-inner {
  background: var(--dark);
  border-radius: 12px 0 0 12px;
  padding: 28px 22px;
  box-shadow: -4px 0 30px rgba(0,0,0,0.25);
}
.sidebar-form h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 18px;
  text-align: center;
}
.sidebar-form .form-group { margin-bottom: 12px; }
.sidebar-form .form-group input {
  padding: 10px 12px;
  font-size: 0.82rem;
}
.sidebar-form .form-submit {
  font-size: 0.85rem;
  padding: 10px;
  margin-bottom: 14px;
}
.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-actions button {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.sidebar-actions button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* â”€â”€ FLOATING MOBILE BUTTONS â”€â”€ */
.floating-btns {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 800;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  text-decoration: none;
}
.float-call { background: var(--gold); color: var(--white); }
.float-whatsapp { background: #25d366; color: var(--white); }
.float-btn:hover { transform: scale(1.1); }

/* â”€â”€ MODAL EXTRAS â”€â”€ */
.modal h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.modal-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 24px;
}
.form-secure {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  margin-top: 12px;
}
.thank-you-modal {
  text-align: center;
}
.thank-you-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.thank-you-modal h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.thank-you-modal p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

/* â”€â”€ FLOOR PLAN CARDS â”€â”€ */
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.floorplan-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.floorplan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.floorplan-card-header h4 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.floorplan-card-header p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.floorplan-card .btn-primary {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 0.82rem;
}

/* â”€â”€ GALLERY FILTER â”€â”€ */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid var(--light-gray);
  border-radius: 30px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.gallery-grid.four-col { grid-template-columns: repeat(4, 1fr); }

/* â”€â”€ AMENITY LIST GRID â”€â”€ */
.amenity-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.amenity-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}
.amenity-list-item span { font-size: 1.3rem; }
.amenity-list-item:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
}

/* â”€â”€ CONTACT PAGE â”€â”€ */
.contact-form-wrap h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-form-wrap .contact-form {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 36px;
}
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group select,
.contact-form-wrap .form-group textarea {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  color: var(--dark);
}
.contact-form-wrap .form-group input::placeholder,
.contact-form-wrap .form-group textarea::placeholder {
  color: var(--gray);
}
.contact-form-wrap .form-group select {
  color: var(--gray);
}
.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group select:focus,
.contact-form-wrap .form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  color: var(--dark);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.contact-info-item p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.5;
}
.contact-info-wrap .btn-primary,
.contact-info-wrap .btn-outline-dark {
  text-align: center;
}

/* â”€â”€ MAP â”€â”€ */
.map-container {
  width: 100%;
  height: 450px;
  background: var(--light-gray);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-grid.four-col { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .span-2 { grid-column: span 1; }
  .overview-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .floorplan-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-list-grid { grid-template-columns: repeat(3, 1fr); }
  .sidebar-form { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--dark); flex-direction: column;
    padding: 20px 5%; gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-links.active { display: flex; }
  .nav-links a::after { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 20px; }
  .page-header h1 { font-size: 2.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image-accent { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-grid.four-col { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-detail { grid-template-columns: 1fr; }
  .amenity-detail:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 70px 5%; }
  .sidebar-form { display: none; }
  .floating-btns { display: flex; }
  .floorplan-grid { grid-template-columns: 1fr 1fr; }
  .amenity-list-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .span-row-2 { grid-row: span 1; }
  .essence-carousel { height: 320px; }
  .essence-slide { width: 75%; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .carousel-nav { width: 38px; height: 38px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-subtitle { font-size: 1rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .about-details { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-grid.four-col { grid-template-columns: 1fr; }
  .overview-stats { grid-template-columns: 1fr; }
  .page-header { padding: 130px 5% 60px; }
  .page-header h1 { font-size: 1.8rem; }
  .floorplan-grid { grid-template-columns: 1fr; }
  .amenity-list-grid { grid-template-columns: 1fr; }
  .hero-stat .number { font-size: 1.6rem; }
  .essence-carousel { height: 240px; }
  .essence-slide { width: 82%; }
}

/* ================================================
   ANIMATIONS
   ================================================ */

/* â”€â”€ REVEAL ON SCROLL â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.reveal-left {
  transform: translateX(-60px);
}
.reveal.reveal-right {
  transform: translateX(60px);
}
.reveal.reveal-scale {
  transform: scale(0.9);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* â”€â”€ STACKED FOCUS EFFECT â”€â”€ */
.stacked-focus {
  opacity: 0;
  transform: translateY(40px) rotateX(8deg);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.stacked-focus.active {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

/* Stagger delays for child cards */
.stacked-parent {
  perspective: 1200px;
}
.stacked-parent > *:nth-child(1) { transition-delay: 0s; }
.stacked-parent > *:nth-child(2) { transition-delay: 0.1s; }
.stacked-parent > *:nth-child(3) { transition-delay: 0.2s; }
.stacked-parent > *:nth-child(4) { transition-delay: 0.3s; }
.stacked-parent > *:nth-child(5) { transition-delay: 0.4s; }
.stacked-parent > *:nth-child(6) { transition-delay: 0.5s; }
.stacked-parent > *:nth-child(7) { transition-delay: 0.6s; }
.stacked-parent > *:nth-child(8) { transition-delay: 0.7s; }

/* â”€â”€ PARALLAX IMAGE EFFECT â”€â”€ */
.parallax-wrap {
  overflow: hidden;
  position: relative;
}
.parallax-img {
  will-change: transform;
  transition: transform 0.1s linear;
}
.hero-bg.parallax-img {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
}

/* â”€â”€ HERO CONTENT ENTRANCE â”€â”€ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .hero-badge   { animation: heroFadeUp 0.8s 0.2s both cubic-bezier(0.22,1,0.36,1); }
.hero-content h1            { animation: heroFadeUp 0.8s 0.4s both cubic-bezier(0.22,1,0.36,1); }
.hero-content .hero-subtitle{ animation: heroFadeUp 0.8s 0.6s both cubic-bezier(0.22,1,0.36,1); }
.hero-content .hero-stats   { animation: heroFadeUp 0.8s 0.8s both cubic-bezier(0.22,1,0.36,1); }
.hero-content .hero-actions { animation: heroFadeUp 0.8s 1.0s both cubic-bezier(0.22,1,0.36,1); }

/* â”€â”€ SECTION HEADER ENTRANCE â”€â”€ */
.section-header.reveal .overview-tag { transition-delay: 0s; }
.section-header.reveal h2           { transition-delay: 0.1s; }
.section-header.reveal p            { transition-delay: 0.2s; }
.section-header.reveal .section-divider { transition-delay: 0.3s; }

/* ââ STACKED CAROUSEL ââ */
.essence-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
  perspective: 1200px;
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.essence-slide {
  position: absolute;
  width: 65%;
  height: 100%;
  left: 50%;
  top: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transition: all 0.6s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
  opacity: 0;
  transform: translateX(-50%) scale(0.6);
  z-index: 1;
  pointer-events: none;
}
.essence-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}
.essence-slide.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  z-index: 5;
  pointer-events: auto;
}
.essence-slide.active .slide-label { opacity: 1; }
.essence-slide.prev {
  opacity: 0.7;
  transform: translateX(-90%) scale(0.85) rotateY(5deg);
  z-index: 4;
}
.essence-slide.next {
  opacity: 0.7;
  transform: translateX(-10%) scale(0.85) rotateY(-5deg);
  z-index: 4;
}
.essence-slide.far-prev {
  opacity: 0.25;
  transform: translateX(-115%) scale(0.7) rotateY(10deg);
  z-index: 3;
}
.essence-slide.far-next {
  opacity: 0.25;
  transform: translateX(15%) scale(0.7) rotateY(-10deg);
  z-index: 3;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.carousel-prev { left: -24px; }
.carousel-next { right: -24px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ââ SIDEBAR CLOSE ââ */
.sidebar-form-inner { position: relative; }
.sidebar-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
  padding: 0;
}
.sidebar-close:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.sidebar-form { transition: transform 0.4s ease, opacity 0.4s ease; }
.sidebar-form.hidden {
  transform: translateY(-50%) translateX(100%);
  opacity: 0;
  pointer-events: none;
}

/* ââ Reduce motion for accessibility ââ */
/* ── Utility classes (moved from inline styles) ── */
.nav-actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.nav-home { color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; }
.nav-home:hover { color: #fff; }
.nav-cta-right { margin-left: auto; }
.text-center-mt36 { text-align: center; margin-top: 36px; }
.text-center-mt40 { text-align: center; margin-top: 40px; }
.mt-24 { margin-top: 24px; }
.section-no-pb { padding-bottom: 0; }
.footer-bottom-clean { border-top: none; padding-top: 0; }
.footer-legal { margin-top: 6px; }
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.footer-credit { margin-top: 8px; font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-credit a { color: rgba(255,255,255,0.35); }
.footer-credit a:hover { color: rgba(255,255,255,0.55); }
.contact-subtitle { color: #888; margin-bottom: 28px; }
.contact-actions-card { margin-top: 24px; }
.contact-action-btn { display: block; margin-bottom: 12px; }
.contact-action-btn:last-child { margin-bottom: 0; }
.download-links { display: none; margin-top: 20px; }
.download-links p { color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.download-links .btn-primary, .download-links .btn-outline { display: block; }
.download-links .btn-primary { margin-bottom: 10px; }
.hero-bg-lakeview { background-image: url('images/building-lakeview.jpg'); }
.page-header-contact { background-image: url('images/building-exterior-1.jpg'); }
.page-header-amenities { background-image: url('images/swimming-pool.jpg'); }
.page-header-gallery { background-image: url('images/aerial-view.jpg'); }
.map-iframe { border: 0; }
.legal-content { max-width: 900px; }
.legal-content .legal-date { color: #888; margin-bottom: 32px; }
.legal-content h3 { color: var(--gold); margin-bottom: 12px; }
.legal-content p { margin-bottom: 24px; }
.legal-content p.legal-intro { margin-bottom: 8px; }
.legal-content ul { margin-bottom: 24px; padding-left: 24px; color: #ccc; }
.legal-content a { color: var(--gold); }
.page-header-legal { background: var(--dark); min-height: 200px; }
.admin-form-group { margin-bottom: 14px; }
.admin-dashboard-hidden { display: none; }
.admin-header-actions { display: flex; gap: 10px; align-items: center; }
.admin-email-label { color: var(--gray); font-size: 0.85rem; }
.admin-refresh-btn { padding: 10px 20px; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stacked-focus { transition: none; opacity: 1; transform: none; }
  .hero-content * { animation: none !important; opacity: 1; }
  .parallax-img { transform: none !important; }
  .essence-slide { transition: none; }
}
