:root {
    --bg-primary: #faf7f1;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f2ede2;
    --bg-panel: #ffffff;
    --bg-glass: rgba(250, 247, 241, 0.88);

    --accent-sage: #5f7a5f;
    --accent-sage-dark: #46614a;
    --accent-sage-soft: rgba(95, 122, 95, 0.12);
    --accent-sage-border: rgba(95, 122, 95, 0.24);
    --text-sage: #4c6b50;

    --accent-terracotta: #c17a56;
    --navy: #10202b;

    --text-dark: #2b332d;
    --text-light: #3f4a41;
    --text-muted: #6b7568;
    --text-subtle: #4d564f;

    --border-hairline: rgba(43, 51, 45, 0.10);
    --border-soft: rgba(43, 51, 45, 0.06);

    --font-heading: 'Lora', serif;
    --font-body: 'Nunito', sans-serif;

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;

    --transition-base: 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);

    --shadow-subtle: 0 20px 50px rgba(43, 51, 45, 0.10);
    --shadow-premium: 0 26px 70px rgba(43, 51, 45, 0.16);
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-sage-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-sage); }

/* Layout Shell */
.shell {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 110px 0;
    position: relative;
    border-bottom: 1px solid var(--border-hairline);
    background-color: #fff;
}

.section-alt { background-color: var(--bg-primary); }

.section-header { margin-bottom: 52px; position: relative; }
.section-header.text-center { text-align: center; }

.eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-sage);
    margin-bottom: 14px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-title span {
    font-style: italic;
    color: var(--accent-sage);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 0 auto;
}

.body-copy {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .section-title { font-size: 2.05rem; }
    section { padding: 64px 0; }
}

/* Grids */
.grid { display: grid; gap: 40px; }
.grid-2 { display: grid; gap: 40px; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-hero { grid-template-columns: 1fr; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition-base);
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-sage);
    color: #ffffff;
    border-color: var(--accent-sage);
}

.btn-primary:hover {
    background-color: var(--accent-sage-dark);
    border-color: var(--accent-sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-hairline);
}

.btn-secondary:hover {
    background-color: var(--bg-tertiary);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* Form Elements */
.field-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }

.field-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field {
    width: 100%;
    padding: 12px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-hairline);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-base);
    outline: none;
}

.field:focus { border-color: var(--accent-sage); }
.field::placeholder { color: #9aa39b; }

textarea.field { resize: vertical; }

/* Header Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(250, 247, 241, 0.9);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid var(--border-hairline);
    transition: var(--transition-base);
}

.header-scrolled {
    background: rgba(250, 247, 241, 0.98);
    box-shadow: 0 12px 32px rgba(43, 51, 45, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 20px;
    transition: var(--transition-base);
}

.header-scrolled .header-inner { padding: 12px 0; }

.brand-wrapper { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    transition: var(--transition-base);
}

.brand-title span {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-sage);
}

.header-scrolled .brand-title { font-size: 1.15rem; }

.brand-partner-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-terracotta);
    line-height: 1;
}

.nav-links { display: none; align-items: center; gap: 2px; }

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

.header-actions {
    display: none;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--border-hairline);
}

@media (min-width: 640px) { .header-actions { display: flex; } }

.header-cta {
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--accent-sage);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.header-cta:hover {
    background: var(--accent-sage-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px var(--accent-sage-soft);
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-subtle);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    transition: var(--transition-base);
}

.nav-item:hover { color: var(--text-dark); background: var(--bg-tertiary); }

.menu-trigger {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.menu-trigger:hover { background: var(--bg-tertiary); }

@media (min-width: 1024px) { .menu-trigger { display: none; } }

/* Sidebar Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 86vw);
    height: 100%;
    background-color: var(--bg-panel);
    z-index: 1010;
    padding: 24px 28px 20px;
    box-shadow: -10px 0 40px rgba(43, 51, 45, 0.12);
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    transition: right var(--transition-slow);
    border-left: 1px solid var(--border-hairline);
}

.mobile-nav.open { right: 0; }

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mobile-nav-eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-sage);
}

.mobile-nav-close {
    background: var(--bg-tertiary);
    border: none;
    color: var(--text-dark);
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.mobile-nav-close:hover { background: var(--accent-sage-soft); color: var(--accent-sage); }

.mobile-nav-links { display: flex; flex-direction: column; }

.mobile-nav-links .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    padding: 12px 2px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-hairline);
    color: var(--text-dark);
}

.mobile-nav-links .nav-item:hover { background: none; color: var(--accent-sage); padding-left: 8px; }

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-footer .btn { font-size: 13px; padding: 12px 20px; }

.mobile-nav-cta { background: var(--accent-sage); color: #ffffff; border: 1px solid var(--accent-sage); }
.mobile-nav-cta:hover { background: var(--accent-sage-dark); }

.menu-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(30, 35, 30, 0.18);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 90px;
    position: relative;
    background-image:
        linear-gradient(180deg, rgba(10, 18, 13, 0.8) 0%, rgba(10, 18, 13, 0.6) 40%, rgba(10, 18, 13, 0.88) 100%),
        linear-gradient(90deg, rgba(8, 14, 10, 0.55) 0%, rgba(8, 14, 10, 0.15) 55%, rgba(8, 14, 10, 0.35) 100%),
        url('images/gal-1781865122-6740.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.hero-copy { max-width: 620px; }

.hero-badge {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffffff;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-terracotta);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero-title span { font-style: italic; color: #cfe0c4; }

.hero-phase-tag {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 14px;
}

.hero-description {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: #cfe0c4;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 22px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-lede {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 34px;
}

.hero-cta-group { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }

.hero-cta {
    padding: 16px 34px;
    background-color: var(--accent-terracotta);
    color: #ffffff;
    border-color: var(--accent-terracotta);
}

.hero-cta:hover { background-color: #a8623f; border-color: #a8623f; }

.hero-cta-secondary {
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-cta-secondary:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.65); transform: translateY(-2px); }

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}

.hero-trust-item i { color: #cfe0c4; font-size: 15px; }

/* Hero visual card */
.hero-visual { display: flex; justify-content: center; }

.hero-visual-card {
    width: 100%;
    max-width: 400px;
    background: rgba(20, 32, 24, 0.42);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.22);
    position: relative;
    overflow: hidden;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(193, 122, 86, 0.22) 0%, transparent 55%);
    pointer-events: none;
}

.hero-visual-price {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-visual-price span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.hero-visual-price strong {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-visual-stats {
    position: relative;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-visual-stats li { display: flex; align-items: center; gap: 16px; }

.hero-visual-stats i {
    width: 42px; height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 15px;
}

.hero-visual-stats strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-visual-stats span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .hero { padding-top: 110px; }
    .hero-visual-card { max-width: 460px; }
}

@media (max-width: 768px) {
    .hero { padding-top: 96px; padding-bottom: 60px; }
    .hero-description { font-size: 1.2rem; }
    .hero-cta-group { flex-direction: column; width: 100%; gap: 12px; }
    .hero-cta, .hero-cta-secondary { width: 100%; }
    .hero-visual-card { padding: 32px 26px; }
    .hero-visual-price strong { font-size: 2.1rem; }
}

/* RERA Banner */
.rera-bar {
    background-color: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-hairline);
    padding: 15px 0;
    font-size: 12.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.rera-bar i { font-size: 15px; margin-right: 12px; }

/* Overview watermark block */
.overview-watermark-wrap { position: relative; overflow: hidden; }

.watermark-text {
    position: absolute;
    top: -30px;
    left: -20px;
    font-family: var(--font-heading);
    font-size: 9rem;
    font-weight: 700;
    font-style: italic;
    color: rgba(95, 122, 95, 0.06);
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

/* Section media images (overview / about) */
.overview-media,
.about-media {
    align-self: stretch;
    min-height: 320px;
}

.overview-media img,
.about-media img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    object-fit: cover;
}

/* Residence media keeps its natural landscape proportions instead of
   stretching to match the taller pricing card beside it */
.residence-media {
    align-self: center;
}

.residence-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    object-fit: cover;
}

/* Location map photo background */
.location-map-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.location-map-overlay {
    background: linear-gradient(180deg, rgba(16, 32, 27, 0.15) 0%, rgba(16, 32, 27, 0.55) 100%);
}

.map-locator-title, .map-locator-desc { color: #ffffff; }
.map-locator-ring { background-color: rgba(255, 255, 255, 0.92); }

/* Gallery showcase grid */
.gallery-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-showcase-item {
    position: relative;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: none;
    display: block;
}

.gallery-showcase-item.span-2 { grid-column: span 2; grid-row: span 2; }

.gallery-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-showcase-item:hover img { transform: scale(1.06); }

.gallery-showcase-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 16px 18px;
    background: linear-gradient(0deg, rgba(16, 32, 27, 0.78) 0%, transparent 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

@media (max-width: 768px) {
    .gallery-showcase-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .gallery-showcase-item.span-2 { grid-column: span 2; grid-row: span 1; }
}

/* Gallery Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16, 20, 16, 0.92);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.lightbox-overlay.active { display: flex; opacity: 1; }

.lightbox-content {
    max-width: min(90vw, 1000px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox-close:hover { background: var(--accent-sage); border-color: var(--accent-sage); }

/* Wellness Grid */
.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.wellness-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    padding: 34px 26px;
    text-align: center;
    transition: var(--transition-base);
}

.wellness-card:hover {
    border-color: var(--accent-sage-border);
    box-shadow: var(--shadow-subtle);
    transform: translateY(-4px);
}

.wellness-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-sage-soft);
    color: var(--accent-sage);
    font-size: 22px;
}

.wellness-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.wellness-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Highlights list */
.life-at-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
    margin-top: 40px;
}

.life-at-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    background-color: var(--bg-panel);
    transition: var(--transition-base);
}

.life-at-item:hover { transform: translateY(-2px); border-color: var(--accent-sage-border); }

.life-at-icon {
    width: 42px; height: 42px; min-width: 42px;
    display: grid; place-items: center;
    border-radius: 50%;
    background-color: var(--accent-sage-soft);
    color: var(--accent-sage);
    font-size: 0.9rem;
}

.life-at-copy { font-size: 0.95rem; color: var(--text-dark); line-height: 1.7; }

@media (max-width: 1024px) { .life-at-list { grid-template-columns: 1fr; } }

/* Project Stats Bar */
.project-stats-section {
    background: var(--accent-sage-soft);
    border-top: 1px solid var(--accent-sage-border);
    border-bottom: 1px solid var(--accent-sage-border);
    padding: 45px 0;
}

.stats-bar-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    text-align: center;
}

.stats-bar-label {
    font-size: 12px;
    font-family: var(--font-body);
    color: var(--text-sage);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    font-weight: 800;
}

.stats-bar-value {
    font-size: 14.5px;
    font-family: var(--font-body);
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
}

/* Typology Cards */
.typology-grid { display: grid; gap: 32px; }

@media (min-width: 768px) { .typology-grid { grid-template-columns: repeat(2, 1fr); } }

.typology-premium-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-sm);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-base);
}

.typology-premium-card:hover {
    border-color: var(--accent-sage-border);
    box-shadow: var(--shadow-premium);
    transform: translateY(-2px);
}

.typology-tag {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-sage);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.typology-card-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.typology-card-size { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

.typology-card-price {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--text-sage);
    margin-bottom: 28px;
    font-weight: 700;
}

.typology-card-price span { font-size: 14px; font-family: var(--font-body); color: var(--text-muted); font-weight: 500; }

.typology-details-list {
    list-style: none;
    border-top: 1px solid var(--border-hairline);
    padding-top: 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.typology-details-list li { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.typology-details-list li i { color: var(--accent-sage); font-size: 12px; }
.typology-premium-card .btn { margin-top: auto; }

/* Amenity Category Cards */
.amenity-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.amenity-category-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition-base);
}

.amenity-category-card:hover { border-color: var(--accent-sage-border); box-shadow: var(--shadow-subtle); }

.amenity-category-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.amenity-category-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--accent-sage-soft);
    color: var(--accent-sage);
    font-size: 18px;
    flex-shrink: 0;
}

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

.amenity-category-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.amenity-category-card li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.amenity-category-card li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-sage);
}

/* Location list & map */
.location-points-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.location-point { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-muted); }
.location-point i { color: var(--accent-sage); font-size: 14px; margin-top: 4px; }

.location-map-frame {
    height: 100%;
    min-height: 400px;
    background: linear-gradient(150deg, var(--accent-sage-soft) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.location-map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-locator-ring {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 1px solid var(--accent-sage-border);
    background-color: var(--bg-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--accent-sage);
    margin-bottom: 24px;
    box-shadow: var(--shadow-subtle);
}

.map-locator-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin-bottom: 6px; }
.map-locator-desc { font-size: 13.5px; color: var(--text-muted); max-width: 280px; margin-bottom: 24px; }

/* RERA registration box */
.rera-registration-list {
    margin-top: 8px;
    padding: 26px;
    background: var(--bg-panel);
    border: 1px solid var(--accent-sage-border);
    border-radius: var(--radius-md);
}

.rera-registration-list h4 {
    color: var(--text-sage);
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rera-registration-list ul {
    list-style: none;
    padding: 0; margin: 0;
    font-size: 13.5px;
    color: var(--text-muted);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.rera-verify-note { font-size: 11.5px; color: var(--text-muted); margin-top: 14px; font-style: italic; }
.rera-verify-note a { color: var(--text-sage); text-decoration: underline; }

/* FAQ */
.faq-list { display: grid; gap: 14px; margin-top: 32px; }

.faq-item {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover { border-color: var(--accent-sage-border); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    font-family: var(--font-body);
}

.faq-question:hover { color: var(--text-sage); }

.faq-toggle-icon { color: var(--text-muted); font-size: 1rem; transition: transform var(--transition-base); }
.faq-item.open .faq-toggle-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-muted);
    line-height: 1.8;
    transition: max-height 0.32s ease, padding 0.32s ease;
}

.faq-item.open .faq-answer { max-height: 260px; padding: 0 24px 24px; }

/* Contact section */
.contact-info-block { font-size: 15px; color: var(--text-muted); line-height: 1.9; }
.contact-info-block strong { color: var(--text-dark); }
.contact-info-block a { color: var(--text-sage); text-decoration: underline; }

.panel-card {
    background-color: var(--bg-panel);
    color: var(--text-dark);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-sm);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
}

.panel-card-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Modal Popup Window */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(30, 35, 30, 0.4);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.modal-overlay.active { display: flex; opacity: 1; }

.modal-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--accent-sage-border);
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 460px;
    max-height: calc(100vh - 48px);
    position: relative;
    transform: scale(0.95);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    display: flex;
}

.modal-overlay.active .modal-container { transform: scale(1); }

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-hairline);
    color: var(--text-dark);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-base);
    z-index: 10;
}

.modal-close:hover { background-color: var(--text-dark); color: var(--bg-secondary); border-color: var(--text-dark); }

.modal-body {
    padding: 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

@media (max-width: 480px) {
    .modal-overlay { padding: 16px; align-items: flex-end; }
    .modal-container { max-height: calc(100vh - 32px); }
    .modal-body { padding: 30px 24px 26px; }
}

.modal-title { font-family: var(--font-heading); font-size: 1.75rem; margin-bottom: 6px; font-weight: 600; }
.modal-subtitle { font-size: 13.5px; color: var(--text-muted); margin-bottom: 28px; }

/* Sticky Floating Action Buttons (Desktop) */
.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 767px) { .floating-actions { display: none; } }

.floating-action-btn {
    position: relative;
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-base);
}

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

.floating-action-btn.call { background: var(--accent-sage); border: 1px solid var(--accent-sage); }
.floating-action-btn.call i { color: #ffffff; }
.floating-action-btn.call:hover { background: var(--accent-sage-dark); border-color: var(--accent-sage-dark); }
.floating-action-btn.call:hover i { color: #ffffff; }

.floating-action-btn.whatsapp { background: #25d366; }

.floating-action-btn.whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: whatsapp-pulse 2.2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.9); opacity: 0; }
}

/* Mobile Sticky CTA Bar (Call Now / WhatsApp / Enquire) */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f6f4ee;
    border-top: 1px solid var(--border-hairline);
    display: flex;
    z-index: 999;
    box-shadow: 0 -8px 24px rgba(43, 51, 45, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (min-width: 768px) { .mobile-action-bar { display: none; } }

@media (max-width: 767px) {
    .footer { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}

.mobile-action-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px 9px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-right: 1px solid var(--border-hairline);
    transition: var(--transition-base);
}

.mobile-action-item:last-child { border-right: none; }

.mobile-action-badge {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-sage-soft);
    color: var(--accent-sage);
    font-size: 13px;
    transition: var(--transition-base);
}

.mobile-action-item:active .mobile-action-badge { transform: scale(0.94); }

.mobile-action-item.whatsapp-link { color: #1ba854; }
.mobile-action-item.whatsapp-link .mobile-action-badge {
    background: rgba(37, 211, 102, 0.14);
    color: #25d366;
}

.mobile-action-item.enquire-link { background-color: var(--accent-sage); color: #ffffff; }
.mobile-action-item.enquire-link .mobile-action-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.mobile-action-item.enquire-link:active { background-color: var(--accent-sage-dark); }

/* Footer */
.footer {
    background-color: var(--bg-tertiary);
    color: var(--text-muted);
    padding: 72px 0 36px 0;
    font-size: 13.5px;
    border-top: 1px solid var(--border-hairline);
}

.footer h4, .footer h5 { color: var(--text-dark); }

.footer-grid { display: grid; gap: 48px; margin-bottom: 56px; }

@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.25fr 1fr; } }

.footer-brand h4 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 16px; font-weight: 700; }
.footer-brand h4 span { font-style: italic; color: var(--accent-sage); font-family: var(--font-body); font-size: 0.55em; display: block; text-transform: uppercase; letter-spacing: 0.12em; font-style: normal; font-weight: 800; }
.footer-brand-desc { margin-bottom: 24px; line-height: 1.7; }

.footer-social-link { color: var(--text-sage); text-decoration: none; }
.footer-social-link:hover { color: var(--accent-sage-dark); }

.footer-links-title { font-weight: 800; text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; margin-bottom: 22px; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.footer-contact-list i { color: var(--text-sage); font-size: 14px; margin-top: 3px; }

.footer-disclaimer {
    border-top: 1px solid var(--border-hairline);
    padding-top: 30px;
    font-size: 11.5px;
    line-height: 1.75;
    text-align: justify;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    font-size: 11.5px;
    align-items: center;
}

@media (min-width: 640px) {
    .footer-copyright { flex-direction: row-reverse; justify-content: space-between; }
}

.footer-copyright-links { display: flex; gap: 24px; }
.footer-copyright-links a { color: var(--text-muted); text-decoration: none; }
.footer-copyright-links a:hover { color: var(--text-sage); }

/* Utilities */
.text-center { text-align: center; }
.align-center { align-items: center; }
.d-flex { display: flex; }
.gap-12 { gap: 12px; }
.m-t-16 { margin-top: 16px; }

a[href^="mailto:"] { cursor: pointer; color: var(--text-sage); text-decoration: underline; }
