/* ===========================
   NOIDALUXURY — NOVA 2 BHK SALE LISTING DESIGN SYSTEM
   File: public/css/nova-2bhk-sale.css
   =========================== */
:root {
    --dark: #0b1e14;
    --dark-mid: #112a1c;
    --accent: #1b6b5a;
    --gold: #c9a84c;
    --gold-light: #e8cc7e;
    --cream: #faf6ed;
    --light-green: #f0f7f3;
    --text-dark: #1a2622;
    --text-muted: #5a6b65;
    --border: #e0ede9;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    color: var(--text-dark);
    margin: 0;
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
}

/* ============================================
   HERO — CINEMATIC, IMAGE-BACKED
   ============================================ */
.hero-section {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            105deg,
            rgba(8, 22, 15, 0.96) 0%,
            rgba(11, 30, 20, 0.9) 38%,
            rgba(11, 30, 20, 0.55) 70%,
            rgba(11, 30, 20, 0.3) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 22, 15, 0.2) 0%,
            transparent 30%,
            rgba(8, 22, 15, 0.45) 100%
        );
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 56px 0 64px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}
@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 48px;
        align-items: start;
    }
    .hero-inner {
        padding: 64px 0 56px;
    }
    .hero-grid > div {
        display: flex;
        flex-direction: column;
    }
    .hero-features {
        margin-top: auto;
    }
    .listing-price-card {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .listing-price-card .agent-card {
        margin-top: 50px;
    }
}

.hero-breadcrumb {
    font-size: 11.5px;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.hero-breadcrumb a {
    color: var(--gold);
}
.hero-breadcrumb a:hover {
    color: var(--gold-light);
}
.hero-breadcrumb .sep {
    color: #6f827a;
    margin: 0 6px;
}
.hero-breadcrumb .current {
    color: #a9b8b1;
}

.listing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
}
.listing-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 30px;
}
.listing-tag.lease {
    background: var(--gold);
    color: #0b1e14;
}
.listing-tag.type {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.45);
    color: var(--gold);
}
.listing-tag.status {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #d5ddd7;
}
.listing-tag.sale {
    background: rgba(201, 168, 76, 0.16);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.hero-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 12px;
    color: #fff;
    letter-spacing: -0.5px;
}
.hero-h1 .accent {
    display: block;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-loc {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cdd9d1;
    font-size: 15px;
    margin-bottom: 26px;
}
.hero-loc i {
    color: var(--gold);
}

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 14px;
    overflow: hidden;
    max-width: 560px;
    margin-bottom: 26px;
}
.hero-kpi {
    background: rgba(11, 30, 20, 0.55);
    backdrop-filter: blur(6px);
    padding: 14px 12px;
    text-align: center;
}
.hero-kpi .kl {
    display: block;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 5px;
}
.hero-kpi .kv {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    max-width: 580px;
}
.hero-feat {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: #dde6e0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 30px;
}

.hero-feat i {
    color: var(--gold);
    font-size: 11px;
}

.listing-price-card {
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.03)
    );
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 18px;
    padding: 22px 24px;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.lpc-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #cdd9d1;
    margin-bottom: 4px;
}
.lpc-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.lpc-price small {
    font-size: 0.9rem;
    color: #cdd9d1;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}
.lpc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 13px 0;
}
.lpc-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: #dde6e0;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.lpc-row:last-of-type {
    border-bottom: none;
}
.lpc-row strong {
    color: #fff;
    font-weight: 600;
}
.agent-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.agent-card img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.agent-card .av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}
.hero-cta-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.hero-cta-bar .cta-btn,
.hero-cta-bar .call-btn {
    padding: 14px 18px;
}
@media (max-width: 768px) {
    .hero-cta-bar {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }
}
.agent-card .an {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.agent-card .ar {
    color: #9aada8;
    font-size: 11px;
}

/* BUTTONS */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 10px;
    background: var(--gold);
    color: #0b1e14;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    width: 100%;
}
.cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
    color: #0b1e14;
}
.cta-btn.wa {
    background: #25d366;
    color: #fff;
}
.cta-btn.wa:hover {
    background: #1eb858;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    width: 100%;
}
.call-btn:hover {
    background: #145549;
    color: #fff;
    transform: translateY(-2px);
}
.btn-icon,
.icon-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   SECTIONS
   ============================================ */
.page-section {
    padding: 72px 0;
    background: #fff;
}
.page-section.bg-cream {
    background: var(--cream);
}
.page-section.bg-light-green {
    background: var(--light-green);
}

.section-label {
    display: inline-block;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}
.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.22;
}
.section-title span {
    color: var(--gold);
}
.divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 26px;
}
.section-intro {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 760px;
}

/* SPEC CARDS (highlights) */
.spec-card {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px 16px;
    height: 100%;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
}
.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(11, 30, 20, 0.07);
    border-color: var(--gold);
}
.spec-card .si {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(27, 107, 90, 0.09);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.spec-card .sl {
    font-size: 11px;
    color: #7a8a82;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}
.spec-card .sv {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

/* PRICE / SPEC TABLES */
.price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 6px 20px 14px;
    border-top: 3px solid var(--gold);
}
.price-row {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid #eef3f0;
    font-size: 14px;
}
.price-row:last-child {
    border-bottom: none;
}
.price-row .pl {
    color: #5a6b63;
}
.price-row .pv {
    font-weight: 600;
    color: var(--dark);
}
.price-row.total {
    background: rgba(201, 168, 76, 0.08);
    margin: 10px -20px 0;
    padding: 15px 20px;
    border: none;
    border-radius: 0 0 12px 12px;
}
.price-row.total .pl {
    font-weight: 700;
    color: var(--dark);
}
.price-row.total .pv {
    color: var(--accent);
    font-size: 16px;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid #eef3f0;
    font-size: 14px;
}
.spec-row:last-child {
    border-bottom: none;
}
.spec-row .k {
    color: #5a6b63;
}
.spec-row .v {
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}
.price-note {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

/* AMENITIES */
.amen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.amen-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 15px;
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 500;
    transition: all 0.2s;
}
.amen-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 30, 20, 0.06);
}
.amen-item i {
    color: var(--gold);
    font-size: 15px;
    width: 20px;
    text-align: center;
}
.bg-light-green .amen-item {
    background: #fff;
}

/* GALLERY */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 12px;
}
.gal-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gal-item:hover img {
    transform: scale(1.07);
}
.gal-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}
.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        transparent 52%
    );
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.25s;
}
.gal-item:hover .gal-overlay {
    opacity: 1;
}
.gal-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}
.gal-count-badge {
    position: absolute;
    top: 13px;
    right: 13px;
    background: var(--gold);
    color: #0b1e14;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

#lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
#lightbox-overlay.active {
    display: flex;
}
#lightbox-overlay img {
    max-width: 92%;
    max-height: 90%;
    border-radius: 8px;
}
#lightbox-close {
    position: absolute;
    top: 22px;
    right: 30px;
    color: #fff;
    font-size: 38px;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
}

/* ============================================
   ABOUT THIS PROPERTY — 2-COLUMN
   ============================================ */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
}
@media (min-width: 992px) {
    .about-wrap {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 56px;
    }
}
.about-copy p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 18px;
}
.about-copy p strong {
    color: var(--text-dark);
    font-weight: 600;
}
.about-copy .hl {
    color: var(--accent);
    font-weight: 600;
}
.about-keynote {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
    color: #fff;
    border-radius: 14px;
    padding: 22px 24px;
    margin-top: 26px;
    border-left: 4px solid var(--gold);
}
.about-keynote h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--gold);
    margin: 0 0 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-keynote p {
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
    color: #cdd9d1;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    height: 100%;
    align-content: space-between;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.12);
    transform: translateY(-4px);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card .fc-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--light-green), var(--cream));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s;
}
.feature-card:hover .fc-icon {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    transform: scale(1.06) rotate(4deg);
}
.feature-card .fc-icon i {
    font-size: 18px;
    color: var(--accent);
    transition: color 0.3s;
}
.feature-card:hover .fc-icon i {
    color: #fff;
}
.feature-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px;
}
.feature-card p {
    font-size: 12.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}
.about-stat {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 10px;
    text-align: center;
    transition: all 0.25s;
}
.about-stat:hover {
    border-color: var(--gold);
    background: #fff;
}
.about-stat .as-label {
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 5px;
}
.about-stat .as-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.about-stat .as-sub {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* NEARBY / LOCATION CARDS */
.nearby-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    height: 100%;
}
.nearby-card h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}
.nearby-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nearby-card ul li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 7px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 9px;
}
.nearby-card ul li:last-child {
    border-bottom: none;
}
.nearby-card ul li i {
    color: var(--gold);
    font-size: 12px;
    width: 16px;
}

/* PROJECT CARDS */
.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    height: 100%;
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}
.project-card-img {
    position: relative;
}
.project-card-img img {
    width: 100%;
    aspect-ratio: 380/210;
    object-fit: cover;
}
.project-status {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 9.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.project-status.upcoming {
    background: var(--gold);
    color: #0b1e14;
}
.project-card-body {
    padding: 15px;
}
.project-card-body h3 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-dark);
    font-weight: 600;
}
.project-card-body p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* INVENTORY CARDS (rent / sale) */
.inv-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.inv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}
.inv-card .inv-img {
    position: relative;
    overflow: hidden;
}
.inv-card .inv-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s;
}
.inv-card:hover .inv-img img {
    transform: scale(1.06);
}
.inv-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.inv-tag.rent {
    background: var(--gold);
    color: #0b1e14;
}
.inv-tag.sale {
    background: var(--accent);
    color: #fff;
}
.inv-tag.ext {
    background: #fff;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.inv-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.inv-body h3 {
    font-size: 14.5px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0 0 9px;
}
.inv-specs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 11px;
}
.inv-spec {
    background: var(--light-green);
    color: var(--text-dark);
    font-size: 10.5px;
    padding: 4px 9px;
    border-radius: 5px;
    font-weight: 500;
}
.inv-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}
.inv-cta {
    margin-top: auto;
    padding: 10px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    text-align: center;
    display: block;
}
.inv-cta:hover {
    background: #145549;
    color: #fff;
}

/* ENQUIRY FORM */
.lead-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    height: 100%;
}
.lead-form-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}
.lead-form-card form input,
.lead-form-card form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13.5px;
    font-family: "DM Sans", sans-serif;
}
.lead-form-card form input:focus,
.lead-form-card form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
.lead-form-card form button {
    width: 100%;
    padding: 13px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.lead-form-card form button:hover {
    background: #145549;
}
.consent-text {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* TESTIMONIALS */
.testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--gold);
    height: 100%;
}
.testimonial-card p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-author {
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text-dark);
}
.testimonial-sub {
    font-size: 11.5px;
    color: var(--text-muted);
}
.testimonial-card .stars {
    color: var(--gold);
    font-size: 13px;
    margin-top: 6px;
}

/* FAQ */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}
.faq-accordion .accordion-button {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 15px 18px;
    background: #fff;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--accent);
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--gold);
}
.faq-accordion .accordion-body {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 8px 18px 16px;
}

/* ENQUIRY BALANCE */
.enq-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.enq-card {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.enq-card ul {
    margin-bottom: 18px;
}
.enq-trust {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.enq-trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}
.enq-trust-item i {
    color: var(--accent);
    width: 18px;
    text-align: center;
    font-size: 14px;
}

/* STICKY MOBILE CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 9px 12px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    z-index: 998;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}
.sticky-cta .sc-price {
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
}
.sticky-cta .sc-actions {
    display: flex;
    gap: 7px;
}
.sticky-cta a {
    color: #fff;
    background: var(--accent);
    padding: 9px 13px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sticky-cta a.wa-sticky {
    background: #25d366;
}

/* MODALS */
.enquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.enquiry-modal.active {
    display: flex;
}
.enquiry-modal-inner {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.enquiry-modal-inner h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-right: 30px;
}
.enquiry-modal-inner .modal-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-right: 30px;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    z-index: 2;
}
.enquiry-modal-inner form input,
.enquiry-modal-inner form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13.5px;
    font-family: "DM Sans", sans-serif;
}
.enquiry-modal-inner form input:focus,
.enquiry-modal-inner form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
.enquiry-modal-inner form button {
    width: 100%;
    padding: 13px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.enquiry-modal-inner form button:hover {
    background: #145549;
}

/* PROGRESS BAR */
#nlPageProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    z-index: 10001;
    pointer-events: none;
}

/* SALE PRICE TIERS */
.ptier {
    padding: 16px 0;
    border-bottom: 1px dashed var(--border);
}
.ptier:first-child {
    padding-top: 0;
}
.ptier:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ptier-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    gap: 12px;
}
.ptier-head .pt-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--text-dark);
}
.ptier-head .pt-base {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.08rem;
    white-space: nowrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-kpis {
        max-width: 100%;
    }
    .listing-price-card {
        margin-top: 4px;
    }
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    .amen-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .page-section {
        padding: 48px 0;
    }
    .hero-kpis {
        grid-template-columns: repeat(2, 1fr);
    }
    .amen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
    .sticky-cta {
        display: flex;
    }
    body {
        padding-bottom: 56px;
    }
}
@media (max-width: 576px) {
    .hero-inner {
        padding: 44px 0 50px;
    }
    .listing-price-card {
        padding: 22px;
    }
    .lpc-price {
        font-size: 2.1rem;
    }
    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 120px;
    }
    .gal-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .amen-grid {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    .sticky-cta .sc-actions a span {
        display: none;
    }
}

/* ============================================
   SCROLL REVEAL + MOTION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 991px) {
    .reveal-left,
    .reveal-right {
        transform: translateY(28px);
    }
    .reveal-left.visible,
    .reveal-right.visible {
        transform: translateY(0);
    }
}

.stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.visible > * {
    opacity: 1;
    transform: none;
}
.stagger.visible > *:nth-child(1) {
    transition-delay: 0ms;
}
.stagger.visible > *:nth-child(2) {
    transition-delay: 60ms;
}
.stagger.visible > *:nth-child(3) {
    transition-delay: 120ms;
}
.stagger.visible > *:nth-child(4) {
    transition-delay: 180ms;
}
.stagger.visible > *:nth-child(5) {
    transition-delay: 240ms;
}
.stagger.visible > *:nth-child(6) {
    transition-delay: 300ms;
}
.stagger.visible > *:nth-child(7) {
    transition-delay: 360ms;
}
.stagger.visible > *:nth-child(8) {
    transition-delay: 420ms;
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    html {
        scroll-behavior: auto;
    }
}
