:root {
    --dark: #061D17;
    /* Deep Obsidian Green */
    --primary: #0C3B2E;
    /* Royal Forest Green */
    --sage: #1D6F5A;
    /* Interactive CTA Emerald */
    --gold: #D4AF37;
    /* Luxury Accent Gold */
    --gold-light: #E8C85A;
    /* Light Gold Accent */
    --gold-dark: #B89324;
    /* Deep Gold Accent */
    --cream: #F9F9F6;
    /* Soft Light Canvas */
    --muted: #64748B;
    /* Subtitle Gray */
    --text-dark: #061D17;
    /* Dark Obsidian Text */
    --dark-2: #0C3B2E;
    /* Secondary Royal Forest Green */
    --gradient-gold: linear-gradient(-45deg, #061D17, #D4AF37, #0C3B2E, #1D6F5A);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 transparent;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1D6F5A;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F9F9F6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
}

/* ===== REDESIGNED NAVBAR ===== */
.header-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    padding: 16px 0;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-new .nav-logo img {
    width: 150px;
    filter: invert(1) brightness(19.5);
    transition: filter 0.35s ease;
}



.header-new .nav-links {
    display: flex;
    gap: 5px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-new .nav-links li a {
    color: var(--gold);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 500;
    transition: color 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.header-new .nav-links li a:hover {
    color: #ffffff;
    background: rgba(210, 180, 132, 0.15);
}

.header-new .nav-call-btn {
    background: linear-gradient(-45deg, #061D17, #D4AF37, #061D17, #D4AF37) !important;
    background-size: 400% 400% !important;
    animation: Gradient 3s ease infinite !important;
    color: #ffffff !important;
    padding: 9px 20px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}

.header-new .nav-hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.header-new .nav-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* On Scroll (> 50px): Background White, Text Black, Logo Normal */
.header-new.scrolled {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-new.scrolled .nav-logo img {
    filter: none;
}

.header-new.scrolled .nav-links li a {
    color: #061D17;
}

.header-new.scrolled .nav-links li a:hover {
    color: var(--gold-dark);
    background: rgba(0, 0, 0, 0.04);
}

.header-new.scrolled .nav-hamburger span {
    background: #061D17;
}

/* Mobile View Responsive Rules */
@media (max-width: 992px) {
    .header-new {
        background: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(10px);
        padding: 12px 0;
    }

    .header-new.scrolled {
        background: #ffffff;
    }

    .header-new .nav-hamburger {
        display: flex;
    }

    .header-new .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #061D17;
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .header-new.scrolled .nav-links {
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .header-new .nav-links.mobile-open {
        display: flex !important;
    }
}

/* ===== HERO SECTION REDESIGN ===== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-section img.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.80) 0%, rgba(17, 17, 17, 0.6) 50%, rgba(17, 17, 17, 0.5) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5% 0 6%;
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    background: rgba(210, 180, 132, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    width: fit-content;
}

.hero-title {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-title span {
    background: linear-gradient(-45deg, #D4AF37, #E8C85A, #1D6F5A, #D4AF37);
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin-bottom: 30px;
}

.hero-highlights .hl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.hero-highlights .hl-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-price-tag {
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(210, 180, 132, 0.4);
    backdrop-filter: blur(10px);
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-radius: 6px;
    margin-bottom: 35px;
    width: fit-content;
}

.hero-price-tag .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-price-tag .price {
    font-size: 26px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--gold);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-primary-gold {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: linear-gradient(-45deg, #061D17, #D4AF37, #061D17, #D4AF37);
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
    color: #fff;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    line-height: 1;
    margin: 0 !important;
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(210, 180, 132, 0.4);
}

.btn-outline-gold {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 13px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    margin: 0 !important;
}

.btn-primary-gold svg,
.btn-outline-gold svg,
.nav-call-btn svg,
.floor-card button svg,
.card-cta button svg {
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 !important;
}

.gallery-cta,
.amen-cta,
.highlights-cta,
.location-cta,
.dev-cta,
.hero-cta-row,
.overview-cta-row {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.gallery-cta,
.amen-cta,
.location-cta,
.dev-cta {
    justify-content: center !important;
}


.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.scroll-dot {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
    }
}

.hero-stat-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(210, 180, 132, 0.2);
    display: flex;
}

.hero-stat-bar .stat-item {
    flex: 1;
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid rgba(210, 180, 132, 0.15);
}

.hero-stat-bar .stat-item:last-child {
    border-right: none;
}

.hero-stat-bar .stat-number {
    font-size: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.hero-stat-bar .stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        max-width: 620px;
        padding-left: 4%;
        padding-right: 4%;
        justify-content: flex-end;
        padding-bottom: 28px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 560px;
        position: relative;
        background: #061D17;
    }

    .hero-section img.hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero-overlay {
        display: block;
        z-index: 1;
        background: linear-gradient(180deg, rgba(6, 29, 23, 0.15) 0%, rgba(6, 29, 23, 0.62) 58%, rgba(6, 29, 23, 0.78) 100%);
    }

    .hero-content {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 18px;
        top: auto;
        width: auto;
        max-width: 420px;
        padding: 0;
        justify-content: flex-end;
        z-index: 2;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(7, 31, 24, 0.82);
        border: 1px solid var(--gold);
        border-radius: 999px;
        color: #f5d77a;
        font-size: 8px;
        letter-spacing: 1.2px;
        padding: 9px 14px;
        margin-bottom: 12px;
        line-height: 1.3;
        text-transform: uppercase;
        width: auto;
        max-width: 100%;
    }

    .hero-badge svg {
        margin-right: 6px;
        flex-shrink: 0;
    }

    .hero-title {
        font-size: clamp(36px, 11vw, 58px);
        line-height: 0.95;
        margin-bottom: 12px;
        letter-spacing: -1px;
        font-weight: 700;
    }

    .hero-price-tag {
        padding: 8px 12px;
        margin-bottom: 16px;
        gap: 10px;
        display: inline-flex;
        align-items: center;
        background: rgba(7, 31, 24, 0.72);
        border: 1px solid rgba(212, 175, 55, 0.55);
        border-radius: 8px;
    }

    .hero-price-tag .label {
        font-size: 8px;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-price-tag .price {
        font-size: 20px;
        line-height: 1;
    }

    .hero-cta-row {
        margin-top: 0;
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .btn-primary-gold {
        width: 100%;
        max-width: 260px;
        padding: 14px 18px;
        font-size: 12px;
        justify-content: center;
        border-radius: 6px;
        background: linear-gradient(180deg, #0b3a31 0%, #0e2f2a 100%);
        border: 1px solid var(--gold);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-stat-bar {
        display: none;
    }
}

@media (max-width: 420px) {
    .hero-content {
        left: 14px;
        right: 14px;
        bottom: 16px;
    }

    .hero-badge {
        font-size: 7px;
        letter-spacing: 1px;
        padding: 8px 10px;
    }

    .hero-title {
        font-size: clamp(30px, 10vw, 42px);
        line-height: 0.95;
    }

    .hero-price-tag {
        padding: 8px 10px;
        gap: 8px;
    }

    .hero-price-tag .label {
        font-size: 7px;
    }

    .hero-price-tag .price {
        font-size: 18px;
    }

    .btn-primary-gold {
        max-width: 100%;
        font-size: 11px;
        padding: 12px 14px;
    }
}

@media (max-height: 750px) {
    .header-new {
        padding: 8px 0;
    }

    .header-new .nav-logo img {
        width: 125px;
    }

    .hero-section {
        height: 100vh !important;
        overflow: hidden !important;
        position: relative;
    }

    .hero-content {
        position: static;
        inset: 0;
        padding-top: 20px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 2;
    }

    .hero-scroll-indicator {
        display: none !important;
    }

    .hero-badge {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 3px 12px;
        margin-bottom: 6px;
    }



    .hero-title {
        font-size: clamp(24px, 4.5vh, 40px);
        line-height: 1.05;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .hero-tagline {
        font-size: 12px;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    .hero-highlights {
        gap: 4px 12px;
        margin-bottom: 10px;
    }

    .hero-highlights .hl-item {
        font-size: 11px;
    }

    .hero-price-tag {
        padding: 5px 12px;
        margin-bottom: 10px;
        gap: 8px;
    }

    .hero-price-tag .price {
        font-size: 18px;
    }

    .hero-price-tag .label {
        font-size: 9px;
    }

    .btn-primary-gold,
    .btn-outline-gold {
        padding: 8px 18px !important;
        font-size: 11px !important;
    }

    .hero-stat-bar .stat-item {
        padding: 8px 4px;
    }

    .hero-stat-bar .stat-number {
        font-size: 16px;
    }

    .hero-stat-bar .stat-label {
        font-size: 9px;
    }
}

@media (max-height: 560px) {
    .header-new {
        padding: 6px 0;
    }

    .header-new .nav-logo img {
        width: 110px;
    }

    .hero-content {
        padding-top: 50px;
        padding-bottom: 42px;
    }

    .hero-badge {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 2px 8px;
        margin-bottom: 4px;
    }

    .hero-title {
        font-size: clamp(20px, 4.2vh, 30px);
        line-height: 1.05;
        margin-bottom: 4px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    .hero-highlights {
        gap: 3px 10px;
        margin-bottom: 8px;
    }

    .hero-highlights .hl-item {
        font-size: 10px;
    }

    .hero-highlights .hl-item::before {
        width: 4px;
        height: 4px;
    }

    .hero-price-tag {
        padding: 4px 10px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .hero-price-tag .price {
        font-size: 15px;
    }

    .hero-price-tag .label {
        font-size: 8px;
    }

    .btn-primary-gold,
    .btn-outline-gold {
        padding: 6px 14px !important;
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
    }

    .hero-stat-bar .stat-item {
        padding: 5px 3px;
    }

    .hero-stat-bar .stat-number {
        font-size: 14px;
    }

    .hero-stat-bar .stat-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }
}

@media (max-height: 480px) {
    .hero-content {
        padding-top: 42px;
        padding-bottom: 36px;
    }

    .hero-badge {
        font-size: 8px;
        padding: 2px 6px;
        margin-bottom: 2px;
    }

    .hero-title {
        font-size: clamp(17px, 3.8vh, 24px);
        margin-bottom: 2px;
    }

    .hero-tagline {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .hero-highlights {
        gap: 2px 6px;
        margin-bottom: 5px;
    }

    .hero-highlights .hl-item {
        font-size: 9px;
    }

    .hero-price-tag {
        padding: 3px 6px;
        margin-bottom: 6px;
    }

    .hero-price-tag .price {
        font-size: 13px;
    }

    .btn-primary-gold,
    .btn-outline-gold {
        padding: 4px 10px !important;
        font-size: 9px !important;
    }

    .hero-stat-bar .stat-item {
        padding: 3px 2px;
    }

    .hero-stat-bar .stat-number {
        font-size: 12px;
    }

    .hero-stat-bar .stat-label {
        font-size: 7px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto !important;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: visible;
        background: #061D17;
    }

    .hero-section img.hero-bg {
        position: relative;
        inset: auto;
        display: block;
        width: 100%;
        height: clamp(300px, 58vh, 390px);
        object-fit: cover;
        object-position: center top;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
        padding: 20px 21px 34px;
        background: #061D17;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        z-index: 2;
    }

    .hero-badge {
        width: 100%;
        justify-content: flex-start;
        max-width: 320px;
        padding: 9px 14px;
        margin-bottom: 15px;
        background: rgba(20, 48, 36, 0.86);
        border: 1px solid var(--gold);
        border-radius: 999px;
        color: #e8c85a;
        font-size: 9px;
        line-height: 1.45;
        letter-spacing: 1.9px;
        text-align: left;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1;
        letter-spacing: 0;
        margin: 0 0 14px;
    }

    .hero-price-tag {
        padding: 8px 11px;
        margin-bottom: 18px;
        gap: 11px;
        background: rgba(17, 17, 17, 0.18);
        border: 1px solid rgba(212, 175, 55, 0.48);
        border-radius: 5px;
        backdrop-filter: none;
    }

    .hero-price-tag .label {
        font-size: 9px;
        line-height: 1;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.62);
    }

    .hero-price-tag .price {
        font-size: 20px;
        line-height: 1;
        color: #e8c85a;
    }

    .hero-cta-row {
        width: auto;
        justify-content: flex-start;
    }

    .hero-cta-row .btn-primary-gold {
        width: auto;
        min-width: 178px;
        max-width: none;
        padding: 10px 16px !important;
        border: 0;
        border-radius: 4px;
        background: linear-gradient(90deg, #d4af37 0%, #5d6424 100%);
        box-shadow: none;
        color: #ffffff;
        font-size: 11px !important;
        line-height: 1;
        letter-spacing: 1px !important;
    }
}

@media (max-width: 420px) {
    .hero-section img.hero-bg {
        height: clamp(285px, 58vh, 340px);
    }

    .hero-content {
        padding: 19px 21px 32px;
    }

    .hero-badge {
        max-width: 100%;
        font-size: 9px;
        padding: 9px 13px;
    }
}

/* ===== SECTION COMMON ===== */
.section-chip {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
}

.section-title-lg {
    font-size: clamp(32px, 4vw, 52px);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-title-lg.white {
    color: #fff;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 25px;
}

.section-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* ===== OVERVIEW SECTION REDESIGN ===== */
.overview-new {
    background: #F9F9F6;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.overview-new::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(210, 180, 132, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.overview-img-block {
    position: relative;
}

.overview-img-block img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.overview-img-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--dark);
    color: #fff;
    padding: 20px 25px;
    border-left: 4px solid var(--gold);
}

.overview-img-badge .badge-num {
    font-size: 34px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.overview-img-badge .badge-text {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
}

.overview-text h2 {
    font-size: clamp(30px, 3.5vw, 46px);
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.overview-text p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.overview-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.ov-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.ov-feature .icon {
    font-size: 20px;
    flex-shrink: 0;
}

.ov-feature .text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    font-weight: 500;
}

.overview-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

@media(max-width:900px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-img-badge {
        left: 10px;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-new {
    background: #0f0f0f;
    padding: 40px 0 70px;
}

.gallery-new .sec-head {
    text-align: center;
    margin-bottom: 45px;
}

.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.gal-card-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(210, 180, 132, 0.2);
    background: #061D17;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: block;
}

.gal-card-item:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(210, 180, 132, 0.15);
    transform: translateY(-5px);
}

.gal-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gal-card-item:hover img {
    transform: scale(1.08);
}

.gal-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.2) 50%, transparent 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.gal-card-item:hover .gal-card-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
}

.gal-zoom-btn {
    align-self: flex-end;
    width: 38px;
    height: 38px;
    background: rgba(210, 180, 132, 0.2);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.gal-card-item:hover .gal-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

.gal-card-info {
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.gal-card-item:hover .gal-card-info {
    transform: translateY(0);
}

.gal-card-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
    display: block;
}

.gal-card-title {
    font-size: 18px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin: 0;
}

.gallery-cta {
    text-align: center;
    margin-top: 45px;
}

@media (max-width: 991px) {
    .gallery-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-grid-new {
        gap: 10px;
    }

    .gal-card-item {
        aspect-ratio: 16 / 10;
    }

    .gal-zoom-btn {
        opacity: 1;
        transform: scale(1);
    }

    .gal-card-info {
        transform: translateY(0);
    }
}


.price-section-new {
    background: var(--cream);
    padding: 40px 0;
}

.price-section-new .sec-head {
    text-align: center;
    margin-bottom: 50px;
}

.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

#form-section {
    margin-top: 40px;
}

@media (max-width: 768px) {
    #form-section {
        margin-top: 10px;
    }
}

.price-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(210, 180, 132, 0.2);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.price-card .card-head {
    background: linear-gradient(-45deg, #061D17, #D4AF37, #061D17, #D4AF37);
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
    padding: 15px 20px;
    text-align: center;
}

.price-card .card-type {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
}

.price-card .card-size {
    font-size: 34px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #fff;
}

.price-card .card-size-unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
}

.price-card .card-body {
    padding: 25px 20px;
}

.price-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-family: 'Inter', sans-serif;
}

.price-card .price-row:last-of-type {
    border: none;
}

.price-card .price-row .key {
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-card .price-row .val {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.price-card .price-row .val.gold {
    color: var(--gold-dark);
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.price-card .card-cta {
    padding: 0 20px 25px;
}

.price-card .card-cta button {
    width: 100%;
    padding: 12px;
    background: var(--dark);
    color: var(--gold);
    border: 1px solid rgba(210, 180, 132, 0.3);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.price-card .card-cta button:hover {
    background: var(--gold-dark);
    color: #fff;
}

/* ===== FLOOR PLAN SECTION ===== */
.floor-plan-new {
    background: var(--dark);
    padding: 40px 0;
}

.floor-plan-new .sec-head {
    text-align: center;
    margin-bottom: 50px;
}

.floor-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.floor-tab {
    padding: 10px 25px;
    border: 1px solid rgba(210, 180, 132, 0.3);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
    background: transparent;
}

.floor-tab.active,
.floor-tab:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
    font-weight: 600;
}

.floor-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.floor-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(210, 180, 132, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s;

}

.floor-card:hover {
    border-color: var(--gold);
    background: rgba(210, 180, 132, 0.05);
}

.floor-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: blur(6px);
}

.floor-card .floor-info {
    padding: 20px;
}

.floor-card .floor-info .unit-type {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
}

.floor-card .floor-info h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}

.floor-card .floor-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    margin-bottom: 18px;
}

.floor-card .floor-info button {
    width: 100%;
    padding: 11px;
    border: 1px solid rgba(210, 180, 132, 0.4);
    color: var(--gold);
    background: transparent;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.floor-card .floor-info button:hover {
    background: var(--gold);
    color: #111;
}

@media(max-width:768px) {
    .floor-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== AMENITIES SECTION ===== */
.amenities-new {
    background: var(--cream);
    padding: 40px 0;
}

.amenities-new .sec-head {
    text-align: center;
    margin-bottom: 50px;
}

.amen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.amen-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.amen-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s;
    display: block;
}

.amen-card:hover img {
    transform: scale(1.07);
}

.amen-card .amen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.9), transparent);
    padding: 30px 20px 20px;
    transition: all 0.4s;
}

.amen-card .amen-name {
    color: #fff;
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.amen-card .amen-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.amen-cta {
    text-align: center;
    margin-top: 40px;
}

@media(max-width:768px) {
    .amen-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:500px) {
    .amen-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== STUNNING LUXURY HIGHLIGHTS GRID SECTION ===== */
.highlights-new {
    background: radial-gradient(ellipse at 50% 0%, #0C3B2E 0%, #061D17 75%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.highlights-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.highlights-intro-banner {
    max-width: 840px;
    margin: 15px auto 0;
    padding: 16px 26px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: rgba(249, 249, 246, 0.92);
    font-size: 15px;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
    text-align: center;
    backdrop-filter: blur(6px);
}

.highlights-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1300px;
    margin: 45px auto 0;
    padding: 0 20px;
}

.hl-grid-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    padding: 28px 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hl-grid-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hl-grid-card:hover {
    transform: translateY(-8px);
    background: rgba(29, 111, 90, 0.28);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.hl-grid-card:hover::after {
    opacity: 1;
}

.hl-media-card {
    padding: 0;
    grid-row: span 2;
    min-height: 480px;
}

.hl-media-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.hl-media-card img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.hl-media-card:hover img {
    transform: scale(1.05);
}

.hl-media-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 12px 18px;
    background: rgba(6, 29, 23, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    color: #F9F9F6;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
}

.badge-gold-dot {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 10px #D4AF37;
}

.hl-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.hl-card-num {
    font-size: 32px;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.35);
    font-family: 'Cormorant Garamond', serif;
    transition: color 0.35s ease;
}

.hl-grid-card:hover .hl-card-num {
    color: #D4AF37;
}

.hl-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    transition: all 0.35s ease;
}

.hl-grid-card:hover .hl-card-icon {
    background: #D4AF37;
    color: #061D17;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hl-grid-card h5 {
    font-size: 20px;
    color: #F9F9F6;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.3;
}

.hl-grid-card p {
    font-size: 14px;
    color: rgba(249, 249, 246, 0.85);
    line-height: 1.65;
    margin: 0;
}

.highlights-grid-cta {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 45px;
}

@media (max-width: 1024px) {
    .highlights-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hl-media-card {
        grid-row: auto;
        min-height: 350px;
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .highlights-new {
        padding: 60px 0;
    }

    .highlights-grid-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hl-media-card {
        grid-column: span 1;
        min-height: 260px;
    }

    .highlights-grid-cta {
        flex-direction: column;
        padding: 0 20px;
    }

    .highlights-grid-cta button {
        width: 100%;
        justify-content: center;
    }
}


/* ===== LOCATION SECTION ===== */
.location-new {
    background: var(--cream);
    padding: 40px 0;
}

.location-new .sec-head {
    text-align: center;
    margin-bottom: 50px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.location-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loc-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--gold);
    transition: all 0.3s;
}

.loc-point:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.loc-point .distance {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--gold-dark);
    min-width: 65px;
}

.loc-point .place {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.location-map-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-cta {
    text-align: center;
    margin-top: 40px;
}

@media(max-width:900px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ SECTION ===== */
.faq-new {
    background: var(--dark);
    padding: 40px 0;
}

.faq-new .sec-head {
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-new {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(210, 180, 132, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.faq-item-new .fq {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-item-new .fq span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.faq-item-new .fq .icon {
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item-new .fq.open .icon {
    transform: rotate(45deg);
}

.faq-item-new .fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item-new .fa.open {
    max-height: 200px;
}

.faq-item-new .fa p {
    padding: 0 22px 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    margin: 0;
}

/* ===== CONTACT / FOOTER ===== */
.footer-contact {
    background: #0c0c0c;
    padding: 40px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 50px;
    border-bottom: 1px solid rgba(210, 180, 132, 0.15);
}

.footer-brand img {
    width: 150px;
    filter: invert(1) brightness(19.5);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.footer-col h5 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    margin-bottom: 18px;
}

.footer-col p,
.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 25px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Inter', sans-serif;
}

.rera-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rera-chip {
    font-size: 11px;
    padding: 5px 12px;
    border: 1px solid rgba(210, 180, 132, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
}

@media(max-width:768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== FIX FOOTER / FLOATING BTNS ===== */
.fix-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(210, 180, 132, 0.2);
}

@media (max-width: 900px) {
    .fix-footer {
        display: flex;
    }
}

@media (min-width: 901px) {
    .fix-footer {
        display: none !important;
    }
}

.fix-footer a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    gap: 5px;
    transition: all 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.fix-footer a:last-child {
    border-right: none;
}

.fix-footer a:hover {
    color: var(--gold);
    background: rgba(210, 180, 132, 0.05);
}

.fix-footer a img,
.fix-footer a svg {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}

.fix-footer .enquire-btn {
    background: linear-gradient(-45deg, #061D17, #D4AF37, #061D17, #D4AF37);
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
    color: #fff !important;
}

/* ===== POPUP MODAL ===== */
#popupFormgolfhills {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

#popupFormgolfhills.show-modal {
    display: flex !important;
}

.modal-box-new {
    background: #fff;
    border-radius: 12px;
    overflow-y: auto;
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 850px;
    width: 95%;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: popupIn 0.4s ease;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-left-panel {
    background: linear-gradient(-45deg, #061D17, #061D17, #061D17, #0C3B2E);
    background-size: 400% 400%;
    animation: Gradient 4s ease infinite;
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-left-panel img.modal-logo {
    width: 120px;
    filter: invert(1) brightness(19.5);
    margin-bottom: 30px;
}

.modal-left-panel h3 {
    font-size: 32px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 15px;
}

.modal-left-panel h3 span {
    color: var(--gold);
}

.modal-left-panel p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.modal-left-panel .modal-highlights {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-left-panel .modal-highlights li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.modal-right-panel {
    padding: 45px 35px;
    background: #fff;
}

.modal-right-panel .form-heading {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-family: 'Inter', sans-serif;
    margin-bottom: 6px;
}

.modal-right-panel h4 {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.modal-right-panel input,
.modal-right-panel select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #333;
    margin-bottom: 12px;
    outline: none;
    transition: border 0.3s;
    background: #fafafa;
    box-sizing: border-box;
}

.modal-right-panel input:focus {
    border-color: var(--gold);
    background: #fff;
}

.modal-right-panel input::placeholder {
    color: #aaa;
}

.modal-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(-45deg, #061D17, #D4AF37, #061D17, #D4AF37);
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
}

.modal-close-new {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 28px;
    color: #061D17;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    background: none;
    border: none;
    transition: color 0.3s;
}

.modal-close-new:hover {
    color: var(--gold-dark);
}

@media(max-width:700px) {
    .modal-box-new {
        grid-template-columns: 1fr;
    }

    .modal-left-panel {
        display: none;
    }

    .modal-right-panel {
        padding: 40px 25px;
    }
}

@media(max-height:560px) {
    .modal-box-new {
        max-height: 95vh;
    }

    .modal-left-panel {
        padding: 25px 20px;
    }

    .modal-left-panel img.modal-logo {
        width: 90px;
        margin-bottom: 15px;
    }

    .modal-left-panel h3 {
        font-size: 20px;
    }

    .modal-right-panel {
        padding: 20px 20px;
    }

    .modal-right-panel h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .modal-right-panel input,
    .modal-right-panel select {
        padding: 8px 12px;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .modal-submit-btn {
        padding: 10px;
        font-size: 12px;
    }
}

/* custom dropdown inside modal */
.custom-dropdown {
    position: relative;
    margin-bottom: 12px;
}

.custom-dropdown .selected {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    background: #fafafa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-dropdown .dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

.custom-dropdown .dropdown-list.open {
    display: block;
}

.custom-dropdown .dropdown-list li {
    padding: 10px 15px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-dropdown .dropdown-list li:hover {
    background: #f5f5f5;
}

.phone-flex-iwrapper {
    display: flex;
    flex: 1;
}

.phone-flex-iwrapper .phone-input {
    flex: 1;
    margin-bottom: 0 !important;
}

.modal-dropdown-phone {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.modal-dropdown-phone .custom-dropdown {
    flex: 0 0 auto;
    min-width: 130px;
    margin-bottom: 0;
}

/* OTP section in modal */
#otp-section h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

#otp-section p {
    font-size: 13px;
    color: #666;
    font-family: 'Inter', sans-serif;
    margin-bottom: 15px;
}

#otp-section input {
    width: 100%;
    padding: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 8px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 15px;
}

#thankYouPopup1 h2 {
    font-size: 24px;
    color: var(--dark);
    text-align: center;
    padding: 40px 20px;
}

/* dev about section */
.about-dev-section {
    background: var(--cream);
    padding: 70px 0;
}

.about-dev-inner {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-dev-inner h2 {
    font-size: clamp(30px, 3.5vw, 44px);
    color: var(--dark);
    margin-bottom: 20px;
}

.about-dev-inner p {
    font-size: 15px;
    color: #555;
    font-family: 'Inter', sans-serif;
    line-height: 1.9;
    margin-bottom: 15px;
}

.rera-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.rera-item {
    background: #fff;
    border: 1px solid rgba(210, 180, 132, 0.4);
    border-radius: 6px;
    padding: 12px 22px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #444;
}

.rera-item strong {
    color: var(--dark);
}

/* disclaimer */
.disclaimer-bar {
    background: #0c0c0c;
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

.disclaimer-bar a {
    color: rgba(210, 180, 132, 0.6);
    text-decoration: none;
}

/* ===== OVERVIEW READ MORE POPUP REDESIGN ===== */
.overview-popup-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.overview-popup-modal.active {
    display: flex;
}

.overview-popup-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.overview-popup-content {
    position: relative;
    background: #ffffff;
    max-width: 820px;
    width: 100%;
    max-height: 85vh;
    border-radius: 14px;
    border: 1px solid rgba(210, 180, 132, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: popupIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.overview-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: #061D17;
    border-bottom: 2px solid var(--gold);
    color: #ffffff;
}

.overview-popup-header h3 {
    font-size: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--gold);
    margin: 0;
    letter-spacing: 0.5px;
}

.overview-popup-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(210, 180, 132, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.overview-popup-close:hover {
    background: var(--gold);
    color: #061D17;
    transform: rotate(90deg);
}

.overview-popup-body {
    padding: 30px 35px;
    overflow-y: auto;
    max-height: calc(85vh - 75px);
    color: #333333;
    font-family: 'Inter', sans-serif;
}

.overview-popup-body::-webkit-scrollbar {
    width: 5px;
}

.overview-popup-body::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

.overview-popup-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.popup-section-title {
    font-size: 18px;
    color: #061D17;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 24px 0 12px;
    border-left: 3px solid var(--gold);
    padding-left: 12px;
    letter-spacing: 0.2px;
}

.overview-popup-body .custom-pera {
    font-size: 14px;
    line-height: 1.85;
    color: #444444;
    font-family: 'Inter', sans-serif;
    margin-bottom: 14px;
    text-align: left;
}

.overview-popup-body .custom-pera a {
    color: var(--gold-dark) !important;
    font-weight: 600;
    text-decoration: underline;
}

.overview-popup-body .custom-pera a:hover {
    color: var(--gold) !important;
}

.popup-amenities-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-amenities-list li {
    font-size: 14px;
    color: #444444;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #F9F9F6;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(210, 180, 132, 0.25);
}

.popup-amenities-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-dark);
    margin-top: 6px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .overview-popup-modal {
        padding: 12px;
    }

    .overview-popup-content {
        max-height: 88vh;
        border-radius: 10px;
    }

    .overview-popup-header {
        padding: 16px 20px;
    }

    .overview-popup-header h3 {
        font-size: 18px;
    }

    .overview-popup-body {
        padding: 20px;
        max-height: calc(88vh - 65px);
    }

    .popup-section-title {
        font-size: 16px;
        margin: 20px 0 10px;
    }

    .overview-popup-body .custom-pera,
    .popup-amenities-list li {
        font-size: 13px;
    }
}s