/* ============================================================
   THE CURVE — ZORGE 9 STYLE REWRITE
   Phase 1: Foundation & Hero
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

:root {
    --gold: #B8963E;               /* True Champagne Gold */
    --gold-light: #D4B469;         /* Light gold for hover states */
    --gold-muted: rgba(184,150,62,0.12); /* Subtle gold tint */
    --bg-dark: #FAF7F2;            /* Warm Ivory main bg */
    --bg-light: #F0EBE1;           /* Slightly deeper ivory */
    --bg-card: #FEFCF9;            /* Near white card bg */
    --bg-dark-section: #1A1714;    /* Deep warm black for contrast sections */
    --text-main: #1C1A16;          /* Deep warm black */
    --text-muted: #7A7369;         /* Warm grey */
    --text-gold: #B8963E;          /* Gold text */
    --abhinav-blue: #0082C8;
    --accent-blue: rgba(0, 130, 200, 0.08);
    --font-display: 'Cinzel Decorative', serif;  /* Ultra luxury display font */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-medium: 0 12px 48px rgba(0,0,0,0.10);
    --shadow-strong: 0 24px 80px rgba(0,0,0,0.18);
    --border-gold: 1px solid rgba(184,150,62,0.3);
    --border-subtle: 1px solid rgba(28,26,22,0.08);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden !important;
    overflow-y: auto !important; /* Force vertical scrolling */
}
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* Visually hidden — accessible to screen readers and search engines, invisible on screen */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── UTILITIES ── */
.is-hidden-mobile { display: none; }
@media (min-width: 768px) { .is-hidden-mobile { display: block; } }

.text-center { text-align: center; }

.btn--text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 4px;
}
.btn--text::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-expo);
}
.btn--text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ── PRELOADER ── */
.preloader {
    position: fixed; inset: 0;
    z-index: 9999;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
}
.preloader__card {
    position: relative;
    width: 240px; height: 360px;
    display: flex; align-items: center; justify-content: center;
}
.preloader__card-border {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}
.preloader__card-progress {
    /* Total path length of a 238x358 rectangle is 2*(238+358) = 1192 */
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
}
.preloader__card-content {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.5rem;
    z-index: 1;
}
.preloader__logo-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--text-main);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    opacity: 0; /* Animated by JS */
}
.preloader__brand-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    opacity: 0; /* Animated by JS */
}
.preloader__developer-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    opacity: 0; /* Animated by JS */
}

/* ── HEADER ── */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 0;
    color: var(--text-main); 
    background: rgba(250, 247, 242, 0.96);
    border-bottom: 1px solid rgba(184,150,62,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.header__inner {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.6rem 4vw;
}

.header__logo {
    height: 38px;
    display: block;
    transition: opacity 0.4s ease;
}
@media (min-width: 768px) { .header__logo { height: 46px; } }

.header__nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 400;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-expo);
}

.nav-link:hover {
    object-fit: contain;
}
.nav-link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex; gap: 2rem; align-items: center;
}

.header__menu-btn {
    background: none; border: none; cursor: pointer;
    display: none; /* Hidden on desktop since we have nav */
    flex-direction: column; gap: 6px;
    padding: 0.5rem;
}
@media (max-width: 991px) {
    .header__menu-btn {
        display: flex;
        z-index: 1001;
    }
    .is-hidden-mobile {
        display: none !important;
    }
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(250, 248, 245, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    .header__nav.is-open {
        opacity: 1;
        visibility: visible;
    }
    .header__nav .nav-link {
        font-size: 1.5rem;
    }
    /* Hamburger animation when open */
    .header__menu-btn.is-open .menu-btn__line:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
        transition: all 0.3s ease;
    }
    .header__menu-btn.is-open .menu-btn__line:nth-child(2) {
        opacity: 0;
    }
    .header__menu-btn.is-open .menu-btn__line:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
        transition: all 0.3s ease;
    }
    .menu-btn__line {
        transition: all 0.3s ease;
    }
}

.menu-btn__line {
    display: block; width: 30px; height: 1.5px; background: var(--text-main);
}

/* ── STICKY ELEMENTS ── */
.sticky-enquire {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    background: var(--gold);
    color: #fff;
    padding: 20px 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 9999;
    border-radius: 0 0 4px 4px;
    box-shadow: -4px 0 10px rgba(0,0,0,0.2);
}

.sticky-whatsapp, .sticky-call {
    position: fixed;
    bottom: 20px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.sticky-whatsapp {
    right: 20px;
    background: #25D366;
}
.sticky-whatsapp:hover {
    transform: translateY(-5px);
    background: #128C7E;
    color: #fff;
}

.sticky-call {
    left: 20px;
    background: var(--gold);
}
.sticky-call:hover {
    transform: translateY(-5px);
    background: #b59567; /* darker gold */
    color: #fff;
}

.sticky-whatsapp__icon, .sticky-call__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sticky-whatsapp__text, .sticky-call__text {
    font-size: 1rem;
    font-weight: 500;
}

/* Mobile Floating Buttons (Separated) */
@media (max-width: 767px) {
    .sticky-bottom-bar {
        position: static;
        display: block;
        box-shadow: none;
        background: transparent;
        border: none;
        width: 100%;
        border-radius: 0;
    }
    
    .sticky-whatsapp, .sticky-call {
        position: fixed;
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: transform 0.3s ease;
    }
    
    .sticky-call {
        left: 20px;
        right: auto;
        background: linear-gradient(135deg, var(--gold) 0%, #9e7f2f 100%);
        border: none;
    }
    
    .sticky-whatsapp {
        right: 20px;
        left: auto;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        border: none;
    }

    .sticky-whatsapp__text, .sticky-call__text {
        display: none; /* Hide text on mobile for clean circular buttons */
    }

    .sticky-whatsapp__icon svg, .sticky-call__icon svg {
        width: 28px;
        height: 28px;
    }
    
    .sticky-whatsapp:active, .sticky-call:active {
        transform: scale(0.95);
    }
}

/* ── HERO (SECTION 1) ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
}
.hero__bg {
    position: absolute; 
    inset: 0;
    z-index: 0;
}
.hero__picture {
    display: block;
    width: 100%;
    height: 100%;
}
.hero__img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
}
@media (max-width: 767px) {
    .hero {
        height: auto;
        padding-top: 85px; /* Prevent header from hiding top of image */
    }
    .hero__bg {
        position: relative;
    }
    .hero__picture, .hero__img {
        height: auto;
        object-fit: contain;
        display: block;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s var(--ease-expo);
    cursor: pointer;
}
.btn--primary {
    background-color: var(--gold);
    color: #ffffff;
    border: none;
}
.btn--primary:hover {
    background-color: #a88d66;
    transform: translateY(-2px);
}
.w-full {
    width: 100%;
}

/* ── GLOBAL SECTION STYLES ── */
.section-padding {
    padding: 4rem 0;
}
@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 0;
    }
}
@media (min-width: 992px) {
    .section-padding {
        padding: 8rem 0;
    }
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    object-fit: contain;
    margin-bottom: 1.2rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 700;
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
}
.btn--outline:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

/* ── ABOUT THE CURVE (SECTION 2) ── */
.about-new {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.about-new__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-new__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-new__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.about-new__container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-new__card {
    background: rgba(254, 252, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 4rem;
    border-radius: 0;
    text-align: center;
    max-width: 860px;
    width: 90%;
    box-shadow: 0 40px 100px rgba(0,0,0,0.25);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    border-left: 1px solid rgba(184,150,62,0.2);
    border-right: 1px solid rgba(184,150,62,0.2);
    position: relative;
}
.about-new__card::before {
    content: '';
    position: absolute;
    top: 12px; left: 12px; right: 12px; bottom: 12px;
    border: 1px solid rgba(184,150,62,0.15);
    pointer-events: none;
}

.about-new__title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    font-style: italic;
    color: var(--text-gold);
    letter-spacing: 2px;
    text-transform: none;
    margin-bottom: 0;
}

.about-new__divider {
    margin: 1.8rem 0;
    display: flex;
    justify-content: center;
    opacity: 0.6;
}

.about-new__text {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 700;
    max-width: 680px;
    margin: 0 auto;
}

/* ── LOCATION (SECTION 6) ── */
.location {
    background: var(--bg-dark); /* Warm Ivory */
    color: var(--text-main);
}

.location-split {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}
@media (min-width: 992px) {
    .location-split {
        flex-direction: row;
        align-items: center;
    }
}

.location-split__info {
    flex: 1;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-group__title {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.location-list {
    list-style: none;
}
.location-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 0.85rem;
    color: var(--text-main);
}
.location-list li span:last-child {
    font-weight: 600;
    color: var(--text-muted);
}

.location-split__map {
    flex: 1;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
@media (min-width: 992px) {
    .location-split__map {
        min-height: 500px;
    }
}
.location-split__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Clean, light map filter for warm ivory theme */
    filter: grayscale(80%) sepia(20%) contrast(1.1) brightness(1.05);
}

/* ── CONFIGURATIONS (SECTION 4) ── */
.configuration-new {
    background: var(--bg-dark); /* Warm Ivory */
    padding: 6rem 0;
}

.configuration-new__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .configuration-new__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.config-vcard {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-top: 2px solid var(--gold);
    border-radius: 0;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.config-vcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184,150,62,0) 0%, rgba(184,150,62,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.config-vcard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-top-color: var(--gold-light);
}
.config-vcard:hover::after {
    opacity: 1;
}

.config-vcard__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.config-vcard__desc {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.config-vcard__line {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

/* ── LEAD MODAL ── */
.inquiry-dialog {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.inquiry-dialog.is-active {
    opacity: 1;
    pointer-events: auto;
}

.inquiry-dialog__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 245, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.inquiry-dialog__content {
    position: relative;
    background: var(--bg-dark);
    background: var(--bg-primary); /* warm ivory */
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    width: 95%;
    max-width: 450px;
    z-index: 10;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
    .inquiry-dialog__content {
        padding: 3rem 2.5rem;
    }
}

.inquiry-dialog.is-active .inquiry-dialog__content {
    transform: translateY(0);
}

.inquiry-dialog__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.inquiry-dialog__close:hover {
    background: var(--gold-light);
}
.inquiry-dialog__close svg {
    width: 20px;
    height: 20px;
}

.inquiry-dialog__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.inquiry-dialog__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiry-dialog__input-group {
    width: 100%;
}

.inquiry-dialog__input,
.inquiry-dialog__select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #c9c3ba;
    background: transparent;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}
.inquiry-dialog__input::placeholder {
    color: #888;
}
.inquiry-dialog__input:focus,
.inquiry-dialog__select:focus {
    outline: none;
    border-color: var(--gold);
}

.inquiry-dialog__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 0.2rem;
}
.inquiry-dialog__consent input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--gold);
}
.inquiry-dialog__consent a {
    color: var(--text-dark);
    text-decoration: underline;
}

.inquiry-dialog__submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}
.inquiry-dialog__submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Fix for intl-tel-input width */
.iti { width: 100%; }
.iti__flag { background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png"); }
@media (min-resolution: 2x) {
  .iti__flag { background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png"); }
}

.layouts__item {
    display: none;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
    opacity: 0;
}

.layouts__item.is-active {
    display: grid;
    opacity: 1;
    animation: layoutFadeIn 0.8s ease forwards;
}

@keyframes layoutFadeIn {
    from { opacity: 0; transform: translateY(20px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.layouts__image-wrapper {
    width: 100%;
    height: 60vh;
    background: var(--bg-dark);
    display: flex; justify-content: center; align-items: center;
    border: 1px solid rgba(42, 42, 42, 0.05);
    overflow: hidden;
}

.layouts__image {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 10s ease;
}
.layouts__item:hover .layouts__image {
    transform: scale(1.05);
}

.layouts__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.layouts__details-title {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 500;
    object-fit: contain;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.layouts__features {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.layouts__features li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(42, 42, 42, 0.1);
    padding-bottom: 0.8rem;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.layouts__features li span:first-child {
    color: var(--text-muted);
    text-transform: uppercase;
}

.layouts__features li span:last-child {
    font-weight: 600;
}

@media (max-width: 900px) {
    .layouts__header { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .layouts__tabs { width: 100%; justify-content: space-between; overflow-x: auto; gap: 1rem; }
    .layouts__item { grid-template-columns: 1fr; gap: 3rem; }
    .layouts__image-wrapper { height: 40vh; }
}

/* ── AMENITIES (SECTION 3) ── */
.amenities-new {
    background-color: var(--bg-dark); /* Light Ivory */
    padding: 6rem 0;
}

.amenities-new__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 1px;
}

.amenities-new__divider {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.amenities-new__desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.amenities-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 992px) {
    .amenities-showcase {
        flex-direction: row;
        gap: 4rem;
        height: 600px;
    }
}

/* Left: Sticky Image Display */
.amenities-showcase__display {
    position: sticky;
    top: 70px; /* Stick below mobile header */
    z-index: 10;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-gold);
    flex: 1;
    height: 280px; /* Reduced height on mobile to leave room for list */
}

@media (min-width: 992px) {
    .amenities-showcase__display {
        top: 100px;
        height: 100%;
        flex: 1.2;
    }
}

.amenities-showcase__display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.amenities-showcase__display img.fade-out {
    opacity: 0;
}

.amenities-showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
    pointer-events: none;
}

/* Right: Interactive List */
.amenities-showcase__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    padding-right: 1rem;
    /* Custom scrollbar for webkit */
}

.amenities-showcase__list::-webkit-scrollbar {
    width: 6px;
}

.amenities-showcase__list::-webkit-scrollbar-track {
    background: transparent;
}

.amenities-showcase__list::-webkit-scrollbar-thumb {
    background: var(--border-gold);
    border-radius: 4px;
}

/* List Item */
.amenity-list-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.amenity-list-item:hover, .amenity-list-item.active {
    background: #fff;
    border-color: var(--border-gold);
    box-shadow: 0 10px 30px rgba(184, 150, 62, 0.08);
    transform: translateX(10px);
}

.amenity-list-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(184, 150, 62, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    object-fit: contain;
    transition: all 0.3s ease;
}

.amenity-list-item:hover .amenity-list-item__icon, .amenity-list-item.active .amenity-list-item__icon {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
}

.amenity-list-item__icon svg {
    width: auto; max-width: 120px;
    height: 35px;
}

.amenity-list-item__name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex: 1;
    transition: color 0.3s ease;
}

.amenity-list-item:hover .amenity-list-item__name, .amenity-list-item.active .amenity-list-item__name {
    object-fit: contain;
}

.amenity-list-item__arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.amenity-list-item:hover .amenity-list-item__arrow, .amenity-list-item.active .amenity-list-item__arrow {
    transform: translateX(5px);
}

.amenity-list-item {
    flex-wrap: wrap;
}

.amenity-list-item__mobile-img {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s var(--ease-expo);
    border-radius: 12px;
    margin-top: 0;
}

@media (max-width: 991px) {
    .amenities-showcase__display {
        display: none !important;
    }
    
    .amenity-list-item.active .amenity-list-item__mobile-img {
        max-height: 300px;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .amenity-list-item__mobile-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
}

/* ── BLOGS (SECTION 9) ── */
.blogs {
    background: var(--bg-light);
    color: var(--text-main);
}

.blogs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .blogs__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-normal), box-shadow 0.4s var(--ease-normal);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.blog-card__img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-expo);
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__date {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.blog-card__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.blog-card:hover .blog-card__link {
    color: var(--gold);
}

/* ── FAQ (SECTION 10) ── */
.faq {
    background: var(--bg-dark);
    color: var(--text-main);
}

.faq__container {
    max-width: 800px; /* Keep it centered and readable */
}

.faq__list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-item__btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--color-primary);
}

.faq-item__question {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
}

.faq-item__icon {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s var(--ease-normal);
    color: var(--gold);
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-normal);
}

.faq-item__content p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* ── FOOTER (SECTION 7) ── */
.footer {
    background: var(--bg-dark); /* Warm Ivory */
    padding: 8rem 0 0;
    color: var(--text-main);
    position: relative;
    z-index: 10;
}

.footer__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4vw;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    margin-bottom: 10vh;
}

.footer__info {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 4rem);
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 80%;
}

.footer__contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__link, .footer__address {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.05em;
    position: relative;
    width: fit-content;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0%; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.footer__link:hover::after {
    width: 100%;
}

.footer__form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.footer__input-group {
    width: 100%;
}

.footer__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted);
    padding: 1rem 0;
    color: inherit;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.1em;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer__input:focus {
    border-bottom-color: var(--gold);
}

.footer__input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.footer__btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.5rem;
}

.footer__bottom {
    position: relative;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.footer__huge-logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 15vw, 18rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 0.8;
    text-transform: uppercase;
    pointer-events: none;
    margin-bottom: 2rem;
    opacity: 0.2;
}

.footer__legal {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__socials {
    display: flex;
    gap: 2rem;
}

.footer__socials a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__socials a:hover {
    color: var(--gold);
}

@media (max-width: 900px) {
    .footer__content { grid-template-columns: 1fr; gap: 4rem; }
    .footer__legal { flex-direction: column; gap: 1rem; text-align: center; }
}

.story__footer {
    display: flex; flex-direction: column; gap: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}
@media (min-width: 768px) {
    .story__footer {
        flex-direction: row; justify-content: space-between; align-items: center;
    }
}

/* ── WHY INVEST (SECTION 7) ── */
.why-invest {
    background: var(--bg-light);
    color: var(--text-main);
}

.invest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .invest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.invest-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: transform 0.4s var(--ease-normal), box-shadow 0.4s var(--ease-normal);
}

.invest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.invest-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.invest-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.invest-card__desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* ============================================================
   SECTION 5: GALLERY
   ============================================================ */
.gallery-new {
    background: var(--bg-dark);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.gallery-new__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 25vw;
    font-weight: 700;
    color: var(--text-main);
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: 1vw;
}

.gallery-new__header {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.gallery-new__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.gallery-new__divider {
    margin: 1.5rem 0 0;
    display: flex;
    justify-content: center;
}

.gallery-new__track-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gallery-new__track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: galleryScroll 40s linear infinite;
}

.gallery-new__track--reverse {
    animation: galleryScrollReverse 40s linear infinite;
}

.gallery-new__track:hover {
    animation-play-state: paused;
}

/* Spotlight hover effect update */
.gallery-new__item {
    position: relative;
    height: 400px;
    width: 600px;
    overflow: hidden;
    cursor: crosshair;
}

.gallery-new__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-expo), filter 0.6s var(--ease-expo);
    filter: brightness(0.95);
}

.gallery-new__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-expo);
    pointer-events: none;
}
@media (max-width: 991px) {
    .gallery-new__content {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 100%);
        padding: 1.5rem 1rem 1rem;
    }
    .gallery-new__item-title {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
    .gallery-new__item-desc {
        font-size: 0.9rem;
    }
}

.gallery-new__item-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #fff;
}

.gallery-new__item-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0;
}

.gallery-new__track:hover .gallery-new__item:not(:hover) .gallery-new__img {
    filter: brightness(0.6) grayscale(100%);
    transform: scale(0.98);
}

.gallery-new__item:hover .gallery-new__img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-new__item:hover .gallery-new__content {
    transform: translateY(0);
    opacity: 1;
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); } /* Shift by half of track */
}

@keyframes galleryScrollReverse {
    0% { transform: translateX(calc(-50% - 1rem)); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .gallery-new__item {
        height: 320px;
        width: 85vw;
    }
}

/* ============================================================
   MODALS: GALLERY LIST
   ============================================================ */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.gallery-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-modal__sidebar {
    width: 300px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.gallery-modal__close {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-modal__close:hover {
    border-color: #fff;
    transform: scale(1.1);
}

.gallery-modal__title {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 2rem;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.gallery-modal__scroll-area {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Custom scrollbar for modal */
.gallery-modal__scroll-area::-webkit-scrollbar { width: 8px; }
.gallery-modal__scroll-area::-webkit-scrollbar-track { background: #0A0A0A; }
.gallery-modal__scroll-area::-webkit-scrollbar-thumb { background: #333; }

.gallery-modal__list {
    display: flex;
    flex-direction: column;
}

.gallery-modal__item {
    position: relative;
    width: 100%;
    height: 80vh;
    cursor: pointer;
    overflow: hidden;
}

.gallery-modal__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-modal__item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.4s ease;
}

.gallery-modal__plus {
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.gallery-modal__item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.gallery-modal__item:hover .gallery-modal__item-overlay {
    background: rgba(0,0,0,0.2);
}

.gallery-modal__item:hover .gallery-modal__plus {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .gallery-modal { flex-direction: column; }
    .gallery-modal__sidebar { width: 100%; height: 80px; flex-direction: row; justify-content: space-between; padding: 0 2rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .gallery-modal__title { margin: 0; font-size: 1.2rem; }
    .gallery-modal__item { height: 50vh; }
}

/* ============================================================
   MODALS: PHOTO ZOOM LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.is-active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox__close:hover {
    border-color: #fff;
    transform: scale(1.1);
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox.is-active .lightbox__img {
    transform: scale(1);
}
.story__quote {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    font-family: var(--font-heading);
}

.btn--outline {
    display: inline-flex; align-items: center; gap: 1rem;
    padding: 0.65rem 1.8rem;
    border: 1px solid var(--gold);
    border-radius: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-main);
    transition: all 0.4s var(--ease-expo);
    cursor: pointer;
}
.btn--outline:hover {
    background: var(--gold);
    color: #ffffff;
    border-object-fit: contain;
    box-shadow: 0 8px 24px rgba(184,150,62,0.25);
}

.btn--solid {
    display: inline-flex; align-items: center; gap: 1rem;
    padding: 0.65rem 1.8rem;
    background: var(--gold);
    color: #ffffff;
    border: 1px solid var(--gold);
    border-radius: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    transition: all 0.4s var(--ease-expo);
    cursor: pointer;
}
.btn--solid:hover {
    background: var(--gold-light);
    color: #fff;
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(184,150,62,0.35);
}

/* ============================================================
   EXPLORE PROJECT (VIDEO)
   ============================================================ */
.explore-new {
    background: var(--bg-dark);
    padding: 6rem 0;
}
.explore-new__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 1px;
}
.explore-new__divider {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}
.explore-new__video {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.explore-new__video video {
    width: 100%;
    display: block;
    outline: none;
    border-radius: 12px;
}

/* ============================================================
   PROXIMITY
   ============================================================ */
.proximity-new {
    background: var(--bg-light); /* Warm ivory variation */
    padding: 6rem 0;
}
.proximity-new__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 1px;
}
.proximity-new__divider {
    margin: 1.5rem 0 4rem;
    display: flex;
    justify-content: center;
}
.proximity-new__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .proximity-new__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.proximity-card {
    background: var(--bg-card);
    padding: 2.5rem 1.5rem;
    border-radius: 0;
    border: var(--border-subtle);
    border-top: 2px solid var(--gold);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s var(--ease-expo);
}
.proximity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-top-color: var(--gold-light);
}
.proximity-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.proximity-card__icon svg {
    width: 24px;
    height: 24px;
}
.proximity-card h3 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.2rem;
}
.proximity-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.proximity-card li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* ============================================================
   CONNECTIVITY
   ============================================================ */
.connectivity-new {
    background: var(--bg-dark);
}
.connectivity-split {
    display: flex;
    flex-direction: column-reverse;
}
@media (min-width: 992px) {
    .connectivity-split {
        flex-direction: row;
    }
}
.connectivity-split__map {
    flex: 1;
    min-height: 350px;
    position: relative;
}
.connectivity-split__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.connectivity-split__content {
    flex: 1;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-card);
}
@media (min-width: 992px) {
    .connectivity-split__content {
        padding: 6rem;
    }
}
.connectivity-new__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--text-main);
}
.connectivity-new__desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ============================================================
   FLOOR PLANS (BLURRED)
   ============================================================ */
.floorplans-new {
    background: var(--bg-light);
    padding: 6rem 0;
}
.floorplans-new__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.floorplans-new__preview {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.floorplans-new__blur-img {
    width: 100%;
    display: block;
    filter: blur(8px) grayscale(50%);
    transition: filter 0.3s ease;
}
.floorplans-new__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-new {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.contact-new__map {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.contact-new__container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.contact-new__card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.contact-new__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.contact-new__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}
.contact-new__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-new__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted);
    padding: 0.75rem 0;
    color: var(--text-main);
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}
.contact-new__input:focus {
    outline: none;
    border-bottom-color: var(--gold);
}
.contact-new__input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-new {
    background-color: var(--bg-dark);
    background-image: linear-gradient(135deg, rgba(184, 150, 62, 0.05) 0%, rgba(184, 150, 62, 0) 100%);
    padding: 6rem 0 2rem;
    color: var(--text-main);
    border-top: 1px solid rgba(184, 150, 62, 0.2);
}

.footer-new .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* 1. Logos */
.footer-new__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-new__logos img {
    max-height: 80px;
    object-fit: contain;
}

.footer-new__logo-divider {
    width: 2px;
    height: 60px;
    background-color: var(--border-gold);
}

/* 2. About */
.footer-new__about {
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    opacity: 0.9;
}

/* 3. Social */
.footer-new__social {
    margin-bottom: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #d13030;
    color: #fff;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* 4. Contact */
.footer-new__contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .footer-new__contact {
        flex-direction: row;
        gap: 3rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* 5. Address */
.footer-new__address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-size: 1rem;
    color: var(--text-main);
}

/* 6. QR & RERA */
.footer-new__rera-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 150, 62, 0.2);
}

@media (min-width: 768px) {
    .footer-new__rera-block {
        flex-direction: row;
        gap: 6rem;
    }
}

.qr-code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.qr-placeholder {
    width: 100px; 
    height: 100px; 
    border: 2px solid var(--text-main); 
    padding: 5px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder svg {
    width: 100%;
    height: 100%;
}

.qr-text {
    font-size: 0.85rem;
    font-weight: 500;
    object-fit: contain;
}

.rera-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rera-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rera-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rera-text strong {
    font-size: 1rem;
    color: #d13030;
    letter-spacing: 0.5px;
}

.rera-text span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* 7. Disclaimer */
.footer-new__disclaimer {
    border-top: 1px solid rgba(184, 150, 62, 0.2);
    padding-top: 2rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: justify;
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 1.5rem auto 4rem;
    width: 100%;
    max-width: 350px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--gold);
}

.section-divider img {
    width: auto; max-width: 120px;
    height: 45px;
    object-fit: contain;
}

/* --- MOBILE PERFORMANCE OPTIMIZATIONS --- */
@media (max-width: 767px) {
    /* Backdrop filters and large box-shadows cause severe scroll lag on mobile */
    .header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(250, 247, 242, 0.98) !important;
    }
    .about-new__card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(254, 252, 249, 1) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important; 
    }
    .amenities-showcase__overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(14, 18, 16, 0.85) !important; 
    }
}

/* --- ARTICLE MODAL --- */
.article-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 9999; display: flex; align-items: center; justify-content: center; pointer-events: none; visibility: hidden; }
.article-modal.is-active { pointer-events: auto; visibility: visible; }
.article-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.4s ease; }
.article-modal.is-active .article-modal__backdrop { opacity: 1; }
.article-modal__content { position: relative; width: 90%; max-width: 800px; height: 90vh; background: var(--bg-card); z-index: 1; opacity: 0; transform: translateY(30px) scale(0.98); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.article-modal.is-active .article-modal__content { opacity: 1; transform: translateY(0) scale(1); }
.article-modal__close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(0,0,0,0.5); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all 0.3s ease; }
.article-modal__close:hover { background: var(--gold); color: #000; transform: rotate(90deg); }
.article-modal__scroll { overflow-y: auto; height: 100%; width: 100%; }
.article-modal__scroll::-webkit-scrollbar { width: 8px; }
.article-modal__scroll::-webkit-scrollbar-track { background: var(--bg-dark); }
.article-modal__scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.article-modal__hero { width: 100%; height: 350px; object-fit: cover; }
.article-modal__body { padding: 3rem; color: var(--text-main); background: var(--bg-card); }
.article-modal__date { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-weight: 600; display: block; margin-bottom: 1rem; }
.article-modal__title { font-size: 2.5rem; font-family: var(--font-heading); line-height: 1.1; margin-bottom: 2rem; color: var(--text-main); }
.article-modal__text p { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.5rem; }
.article-modal__text h3 { font-size: 1.5rem; font-family: var(--font-heading); margin: 2rem 0 1rem; color: var(--text-main); }
.article-modal__text ul { margin-bottom: 1.5rem; padding-left: 1.5rem; color: var(--text-muted); }
.article-modal__text li { margin-bottom: 0.5rem; line-height: 1.6; }
@media (max-width: 768px) {
    .article-modal__content { width: 100%; height: 100vh; border-radius: 0; }
    .article-modal__hero { height: 250px; }
    .article-modal__body { padding: 1.5rem; }
    .article-modal__title { font-size: 1.8rem; }
}


