/* ─── CSS Variables ─────────────────────────────── */
:root {
  --green: #1A3C34;
  --green-light: #2D5A4E;
  --gold: #C5A059;
  --gold-light: #D4B576;
  --cream: #F9F4EE;
  --cream-dark: #EDE5D8;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; height: auto; 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; padding: 12px 0; transition: var(--transition); background: transparent; }
.navbar.scrolled { background: rgba(26,60,52,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.15); padding: 8px 0; }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 44px; filter: brightness(0) invert(1); }
.navbar.scrolled .nav-logo img { height: 38px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: #fff; font-size: 13px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gold); color: var(--green); border: none; padding: 10px 24px; border-radius: 6px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: var(--transition); }

/* ─── Hero ──────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: url('/images/hero-bg.png') center/cover no-repeat; text-align: center; color: #fff; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 24px; }
.hero-rera { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; margin-bottom: 16px; }
.hero-title { font-size: clamp(36px, 6vw, 72px); font-weight: 700; line-height: 1.1; margin-bottom: 12px; }
.hero-accent { color: var(--gold); font-style: italic; }
.hero-sub { font-size: clamp(14px, 2vw, 20px); font-weight: 300; margin-bottom: 32px; opacity: 0.9; }
.hero-stats { display: flex; justify-content: center; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.stat { text-align: center; padding: 16px 20px; background: rgba(255,255,255,0.08); border-radius: var(--radius); border: 1px solid rgba(197,160,89,0.3); backdrop-filter: blur(8px); }
.stat i { color: var(--gold); font-size: 20px; margin-bottom: 6px; }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 18px; }
.stat span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero-price { font-size: 22px; font-family: 'Playfair Display', serif; color: var(--gold); font-weight: 600; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; }
.hero-scroll i { font-size: 24px; color: var(--gold); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ─── Buttons ──────────────────────────────────── */
.btn-primary { background: var(--gold); color: var(--green); border: 2px solid var(--gold); padding: 14px 32px; border-radius: 6px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; cursor: pointer; text-transform: uppercase; letter-spacing: 1.5px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(197,160,89,0.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; padding: 14px 32px; border-radius: 6px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; cursor: pointer; text-transform: uppercase; letter-spacing: 1.5px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: #fff; color: var(--green); }
.btn-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); padding: 12px 24px; border-radius: 4px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 12px; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; transition: var(--transition); width: 100%; }
.btn-gold:hover { background: var(--gold); color: var(--green); }
.full-width { width: 100%; justify-content: center; }
.center-btn { text-align: center; margin-top: 32px; }

/* ─── Sections ─────────────────────────────────── */
.section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: clamp(28px, 4vw, 42px); color: var(--green); margin-bottom: 16px; line-height: 1.2; }
.section-title.center { text-align: center; }
.section-title.light { color: var(--cream); }
.section-desc { font-size: 16px; color: var(--text-light); max-width: 680px; line-height: 1.7; }
.section-desc.center { text-align: center; margin: 0 auto 40px; }
.section-desc.light { color: rgba(255,255,255,0.8); }
.section-subtitle { font-size: 20px; margin-bottom: 8px; }
.section-subtitle.gold { color: var(--gold); }

/* ─── About ────────────────────────────────────── */
.about { background: var(--green); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about .section-title { color: var(--cream); }
.about-text p { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.about-text .btn-primary { margin-top: 12px; }
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-project-img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

/* ─── Highlights ───────────────────────────────── */
.highlights-section { background: var(--green); padding: 80px 0; }
.highlights-carousel { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; }
.highlight-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(197,160,89,0.2); border-radius: var(--radius); padding: 32px 20px; text-align: center; color: #fff; transition: var(--transition); cursor: pointer; }
.highlight-card:hover, .highlight-card.active { background: rgba(197,160,89,0.15); border-color: var(--gold); transform: translateY(-4px); }
.highlight-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(197,160,89,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.highlight-icon i { color: var(--gold); font-size: 22px; }
.highlight-card h3 { font-size: 16px; color: var(--gold); margin-bottom: 8px; letter-spacing: 1px; }
.highlight-card p { font-size: 13px; opacity: 0.8; line-height: 1.5; }

/* ─── Experience ───────────────────────────────── */
.experience { background: var(--cream); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.exp-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.exp-desc { color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.exp-list { list-style: none; margin-bottom: 24px; }
.exp-list li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; gap: 12px; font-size: 15px; }
.exp-list li i { color: var(--gold); font-size: 16px; }

/* ─── Amenities ────────────────────────────────── */
.amenities { background: var(--white); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.amenity { background: var(--cream); border-radius: var(--radius); padding: 28px 16px; text-align: center; transition: var(--transition); border: 1px solid transparent; }
.amenity:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.amenity i { font-size: 28px; color: var(--gold); margin-bottom: 12px; }
.amenity span { display: block; font-size: 13px; font-weight: 500; }

/* ─── Pricing ──────────────────────────────────── */
.pricing { background: var(--green); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.price-card { background: var(--green-light); border: 1px solid rgba(197,160,89,0.2); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.price-card:hover, .price-card.featured { border-color: var(--gold); transform: translateY(-6px); }
.price-card-header { background: #fff; padding: 16px; }
.price-card-header img { width: 100%; border-radius: 8px; }
.price-card-body { padding: 24px; }
.price-specs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.spec { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.spec i { color: var(--gold); font-size: 18px; width: 20px; text-align: center; }
.spec strong { flex: 1; font-weight: 600; color: #fff; }
.spec span { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.price-tag { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.price-tag span { display: block; font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 4px; }
.price-tag strong { display: block; font-size: 24px; font-weight: 700; color: var(--gold); }

/* ─── Master Plan ───────────────────────────────── */
.masterplan-wrapper { max-width: 900px; margin: 0 auto; text-align: center; }
.blur-container { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(197,160,89,0.3); background: #000; box-shadow: var(--shadow); cursor: pointer; }
.blurred-img { width: 100%; height: 400px; object-fit: cover; filter: blur(12px) brightness(0.6); transition: var(--transition); transform: scale(1.05); }
.blur-container:hover .blurred-img { transform: scale(1.1); filter: blur(8px) brightness(0.7); }
.blur-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; pointer-events: none; }
.blur-overlay i { font-size: 48px; color: var(--gold); margin-bottom: 16px; text-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.blur-overlay h3 { font-size: 28px; color: #fff; margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.blur-overlay p { color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 500; text-shadow: 0 2px 4px rgba(0,0,0,0.6); }

/* ─── FAQ ───────────────────────────────────────── */
.faq { background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 8px; border-radius: 10px; overflow: hidden; background: var(--white); border: 1px solid rgba(0,0,0,0.06); transition: var(--transition); }
.faq-item:hover { border-color: var(--gold); }
.faq-question { width: 100%; padding: 20px 24px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 500; color: var(--green); text-align: left; transition: var(--transition); }
.faq-question i { color: var(--gold); transition: transform 0.3s ease; font-size: 14px; min-width: 14px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-light); line-height: 1.8; }

/* ─── Articles ─────────────────────────────────── */
.articles { background: var(--white); }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 40px; }
.article-card { background: var(--cream); border-radius: var(--radius); overflow: hidden; transition: var(--transition); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.article-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.article-img { width: 100%; height: 200px; object-fit: cover; }
.article-content { padding: 24px; }
.article-date { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; display: block; }
.article-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--green); margin-bottom: 12px; line-height: 1.4; }
.article-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.article-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 13px; font-weight: 600; text-transform: uppercase; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; background: transparent; }
.article-link:hover { color: var(--green); gap: 10px; }

/* ─── Gallery ──────────────────────────────────── */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,60,52,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-overlay i { color: #fff; font-size: 28px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── Walkthrough ──────────────────────────────── */
.walkthrough { background: var(--green); }
.video-wrapper { max-width: 900px; margin: 0 auto; }
.video-container { position: relative; padding-bottom: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.3); }
.video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ─── Location ─────────────────────────────────── */
.location { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; margin-top: 40px; }
.nearby-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 20px 0; }
.nearby-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--cream); border-radius: 8px; font-size: 13px; transition: var(--transition); }
.nearby-item:hover { background: var(--cream-dark); }
.nearby-item i { color: var(--gold); font-size: 14px; min-width: 18px; }
.nearby-item span { flex: 1; }
.nearby-item strong { color: var(--green); font-size: 12px; }
.location-nearby h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green); }

/* ─── Standards ─────────────────────────────────── */
.standards { background: var(--cream); }
.standards-stats { display: flex; justify-content: center; gap: 48px; margin-top: 40px; flex-wrap: wrap; }
.std-stat { text-align: center; padding: 32px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 200px; }
.std-stat i { color: var(--gold); font-size: 32px; margin-bottom: 12px; }
.std-stat strong { display: block; font-size: 32px; font-family: 'Playfair Display', serif; color: var(--green); }
.std-stat span { font-size: 14px; color: var(--text-light); }

/* ─── Contact ──────────────────────────────────── */
.contact { background: var(--green); }
.contact-form-wrapper { max-width: 500px; margin: 0 auto; }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form input { padding: 16px 20px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 15px; color: #fff; transition: var(--transition); }
.lead-form input::placeholder { color: rgba(255,255,255,0.5); }
.lead-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); }

/* Fix for forms on light backgrounds (articles) */
.article-form-wrapper .lead-form input { background: #fff; border: 1px solid rgba(0,0,0,0.1); color: var(--text); }
.article-form-wrapper .lead-form input::placeholder { color: rgba(0,0,0,0.4); }
.article-form-wrapper .lead-form input:focus { border-color: var(--green); background: #fff; }

/* ─── Footer ───────────────────────────────────── */
.footer { background: #111; color: rgba(255,255,255,0.7); padding: 48px 0 24px; }
.footer-top { text-align: center; margin-bottom: 32px; }
.footer-logo { height: 40px; margin: 0 auto 16px; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-top p { font-size: 13px; }
.footer-disclaimer { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 20px; margin-bottom: 24px; }
.footer-disclaimer h4 { color: var(--gold); font-size: 14px; margin-bottom: 8px; }
.footer-disclaimer p { font-size: 12px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--gold); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }

/* ─── Floating Buttons ─────────────────────────── */
.floating-btns { position: fixed; bottom: 90px; left: 20px; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: var(--transition); }
.float-btn:hover { transform: scale(1.1); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--gold); }

/* ─── Sticky Bottom ────────────────────────────── */
.sticky-bottom { position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; display: none; background: var(--green); padding: 10px 16px; gap: 10px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.sticky-btn { flex: 1; padding: 12px; border: none; border-radius: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.sticky-btn.enquire-btn { background: var(--gold); color: var(--green); }
.sticky-btn.call { background: #25D366; color: #fff; text-decoration: none; }

/* ─── Modal ────────────────────────────────────── */
.modal-overlay, .article-modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px; overflow-y: auto; }
.modal-overlay.active, .article-modal-overlay.active { display: flex; }
.modal, .article-modal { background: var(--green); border-radius: 16px; padding: 40px 32px; max-width: 440px; width: 100%; position: relative; border: 1px solid rgba(197,160,89,0.3); box-shadow: 0 24px 64px rgba(0,0,0,0.4); animation: modalIn 0.3s ease; margin: auto; }
.article-modal { max-width: 700px; padding: 0; overflow: hidden; background: var(--white); }
.article-modal-img { width: 100%; height: 250px; object-fit: cover; }
.article-modal-body { padding: 32px; color: var(--text); }
.article-modal-body h2 { color: var(--green); margin-bottom: 16px; font-size: 24px; }
.article-modal-text { color: var(--text-light); line-height: 1.8; font-size: 15px; margin-bottom: 24px; }
.article-modal-body hr { border: none; border-top: 1px solid rgba(0,0,0,0.1); margin-bottom: 24px; }
.article-modal-body h4 { color: var(--green); margin-bottom: 16px; }
.article-modal .modal-close { background: rgba(0,0,0,0.5); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.article-modal .lead-form input { background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.1); color: var(--text); }
.article-modal .lead-form input:focus { border-color: var(--green); background: #fff; }
.article-modal .lead-form input::placeholder { color: rgba(0,0,0,0.4); }

@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 20px; cursor: pointer; transition: var(--transition); z-index: 10; }
.modal-close:hover { color: #fff; }
.modal-header { text-align: center; margin-bottom: 24px; }
.modal-logo { height: 36px; margin: 0 auto 12px; filter: brightness(0) invert(1); }
.modal-header h3 { color: var(--gold); font-size: 24px; }
.modal-header p { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 4px; }
.modal-form input { width: 100%; }
.modal-privacy { text-align: center; font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* ─── Toast ────────────────────────────────────── */
.toast { position: fixed; top: -150px; left: 50%; transform: translateX(-50%); z-index: 3000; background: var(--green); color: #fff; padding: 16px 32px; border-radius: 12px; font-size: 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); border: 1px solid var(--gold); transition: top 0.4s ease; }
.toast.show { top: 24px; }
.toast i { color: var(--gold); font-size: 20px; }

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .highlights-carousel { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero { align-items: flex-start; padding: 120px 0 80px; height: auto; min-height: 100vh; }
  .nav-links { display: none; position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--green); flex-direction: column; padding: 80px 32px 32px; gap: 0; transition: right 0.3s ease; box-shadow: -4px 0 24px rgba(0,0,0,0.3); }
  .nav-links.active { display: flex; right: 0; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 15px; }
  .nav-cta { display: none; }
  .hamburger { 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); }
  .about-grid, .exp-grid, .location-grid { grid-template-columns: 1fr; }
  .about-image { padding: 40px; }
  .highlights-carousel { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.large { grid-column: span 2; }
  .standards-stats { gap: 16px; }
  .std-stat { min-width: 140px; padding: 20px; }
  .nearby-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sticky-bottom { display: flex; }
  .floating-btns { bottom: 80px; }
  .section { padding: 60px 0; }
  .hero-stats { gap: 12px; }
  .stat { padding: 12px 14px; }
}
@media (max-width: 480px) {
  .highlights-carousel { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; align-items: center; }
  .stat { width: 100%; max-width: 280px; }
}
