* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}

body {
    background: #000;
    color: #fff;
}

/* NAVBAR */

/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 72px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    gap: 16px;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    background: #f5c542;
    color: #000;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    font-size: 18px;
}

.logo strong {
    font-size: 16px;
}

.logo small {
    display: block;
    font-size: 12px;
    color: #aaa;
}

/* CENTER NAV */

.nav-center {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.nav-center a {
    margin: 0 10px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.nav-center a:hover {
    color: #fff;
}

/* NAV RIGHT */

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* BUTTON */

.btn-primary {
    background: #f5c542;
    color: #000;
    border: none;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(245, 197, 66, 0.45);
}

/* ================= TOGGLE ================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: #f5c542;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-center {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 22px;
        padding: 30px 0;
        display: none;
        z-index: 999;
    }
    .nav-center.active {
        display: flex;
    }
    .nav-center a {
        font-size: 18px;
    }
    .nav-right {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-shrink: 0;

    }
}

/* HERO */

.hero {
    min-height: 100vh;
    background: url("/img/b1.jpg") center/cover no-repeat;
    position: relative;
    padding-top: 72px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    padding: 80px 80px;
}

/* LEFT */

.badge {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #f5c542;
    border-radius: 999px;
    color: #f5c542;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.location {
    color: #f5c542;
    margin-bottom: 14px;
}

.desc {
    max-width: 520px;
    color: #ccc;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-bottom: 32px;
}

.stat-card {
    background: rgb(0 0 0 / 84%);
    border-radius: 16px;
    width: 30%;
    padding: 20px 6px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 20px;
    color: #f5c542;
}

.stat-card span {
    font-size: 18px;
    color: #aaa;
}

.cta {
    display: flex;
    gap: 50px;
    width: 70%;
}

/* FORM */

.hero-form {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    padding: 36px;
    border-radius: 24px;
}

.hero-form h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.hero-form p {
    color: #aaa;
    margin-bottom: 24px;
}

.hero-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    margin-bottom: 14px;
}

.hero-form .full {
    width: 50%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 20px;
}

/* PRIMARY BUTTON HOVER */

.btn-primary {
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 197, 66, 0.35);
}

/* OUTLINE BUTTON HOVER */

.btn-outline {
    transition: all 0.25s ease;
}

.btn-outline:hover {
    color: #f5c542;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 197, 66, 0.25);
}

/* NAVBAR CTA HOVER */

.nav-right .btn-primary:hover {
    box-shadow: 0 10px 26px rgba(245, 197, 66, 0.4);
}

/* FORM SUBMIT BUTTON HOVER */

.hero-form .btn-primary:hover {
    box-shadow: 0 14px 34px rgba(245, 197, 66, 0.45);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 40px;
    }
    .hero-left h1 {
        font-size: 52px;
    }
    .stats {
        width: 100%;
        gap: 16px;
    }
    .stat-card {
        flex: 1;
        width: auto;
    }
    .btn-primary {
        width: auto;
        padding: 12px 20px;
    }
    .cta {
        width: 40%;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 0 auto;
        border: none;
    }
}

/* ================== MOBILE ================== */

@media (max-width: 768px) {
    .hero {
        padding-top: 64px;
    }
    .hero-content {
        padding: 40px 20px;
    }
    .hero-left h1 {
        font-size: 40px;
        line-height: 1.15;
    }
    .desc {
        max-width: 100%;
        font-size: 15px;
    }
    .stats {
        flex-direction: column;
        gap: 14px;
    }
    .stat-card {
        width: 100%;
    }
    .cta {
        flex-direction: column;
        gap: 16px;
    }
    .cta button {
        width: 100%;
    }
    .hero-form {
        display: none;
        padding: 28px 22px;
    }
}

@media (max-width: 1180px) {
    .cta {
        width: 90%;
    }
}

/* ================== SMALL MOBILE ================== */

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 34px;
    }
    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    .location {
        font-size: 14px;
    }
    .stat-card strong {
        font-size: 20px;
    }
    .hero-form h3 {
        font-size: 22px;
    }
}

.features {
    padding: 100px 80px;
    background: #0b0b0b;
    color: #fff;
}

.features-header {
    text-align: center;
    margin-bottom: 70px;
}

.features-header .pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #f5c542;
    color: #f5c542;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.features-header h2 {
    font-size: 46px;
    margin-bottom: 12px;
}

.features-header p {
    color: #aaa;
    max-width: 620px;
    margin: 0 auto;
    font-size: 15px;
}

/* GRID */

.features-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */

.feature-card {
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.7));
    border-radius: 22px;
    padding: 34px 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* GOLD HIGHLIGHT CARD */

.feature-card.highlight {
    border-color: rgba(245, 197, 66, 0.45);
}

/* HOVER */

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 66, 0.6);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
}

/* ICON */

.feature-card .icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(245, 197, 66, 0.15);
    color: #f5c542;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 18px;
}

/* TEXT */

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #bcbcbc;
    font-size: 15px;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features {
        padding: 80px 22px;
    }
    .features-header h2 {
        font-size: 34px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.investment {
    background: radial-gradient(circle at bottom right, #3a2d00, #0b0b0b);
    padding: 130px 120px;
    color: #fff;
}

.investment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 120px;
}

/* LEFT SIDE */

.pill {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 40px;
    background: rgba(255, 200, 50, 0.18);
    color: #f5c842;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.investment-left h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 28px;
}

.investment-left p {
    color: #bdbdbd;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* POINTS */

.points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.point {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.point:hover {
    transform: translateX(8px);
}

.point i {
    font-size: 24px;
    color: #f5c842;
    margin-top: 2px;
}

.point strong {
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
}

.point span {
    font-size: 14px;
    color: #9b9b9b;
    line-height: 1.6;
}

/* RIGHT SIDE */

.investment-right {
    position: relative;
}

.image-box {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
    transition: transform 0.45s ease;
}

.image-box:hover {
    transform: scale(1.04);
}

.image-box img {
    width: 100%;
    display: block;
}

/* CTA CARD */

.cta-box {
    position: absolute;
    bottom: -35px;
    left: -35px;
    background: linear-gradient(135deg, #ffd34d, #f0b800);
    padding: 20px 35px;
    border-radius: 22px;
    color: #111;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-8px);
}

.cta-box small {
    font-size: 13px;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.cta-box h3 {
    font-size: 30px;
    margin-top: 6px;
}

/* MOBILE */

@media (max-width: 900px) {
    .investment {
        padding: 90px 24px;
    }
    .investment-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    .cta-box {
        left: 20px;
        bottom: -25px;
    }
}

/* LEFT IMAGE */

.left-image-box {
    width: 100%;
    max-width: 420px;
    margin-bottom: 40px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    transition: transform 0.4s ease;
}

.left-image-box img {
    width: 100%;
    display: block;
}

.left-image-box:hover {
    transform: scale(1.03);
}

.amenities {
    background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
    padding: 120px 60px;
    color: #fff;
}

.amenities-container {
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.pill {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: rgba(255, 200, 50, 0.15);
    color: #f5c842;
    font-size: 12px;
    letter-spacing: 1.4px;
    margin-bottom: 22px;
}

.amenities h2 {
    font-size: 48px;
    margin-bottom: 18px;
}

.subtitle {
    color: #a5a5a5;
    font-size: 17px;
    margin-bottom: 70px;
}

/* ===== DESKTOP GRID ===== */

.row {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.amenity-card {
    flex: 1;
    background: linear-gradient(145deg, #111, #0a0a0a);
    border-radius: 22px;
    padding: 42px 20px;
    border: 1px solid #1f1f1f;
}

.amenity-card i {
    font-size: 30px;
    color: #f5c842;
    background: rgba(245, 200, 66, 0.12);
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    display: inline-block;
}

.amenity-card h4 {
    font-size: 16px;
    font-weight: 600;
}

.clubhouse {
    flex: 2;
    border-color: rgba(245, 200, 66, 0.7);
}

.spacer {
    flex: 1;
}

.slider-btn {
    display: none;
}

/* ===== MOBILE SLIDER ===== */

@media (max-width: 600px) {
    .slider-track {
        width: 100%;
    }
    .amenities {
        padding: 70px 16px;
    }
    .row {
        display: contents;
    }
    .spacer {
        display: none;
    }
    .amenities-slider {
        position: relative;
        overflow: hidden;
    }
    .slider-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .slider-track::-webkit-scrollbar {
        display: none;
    }
    .amenity-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }
    .clubhouse {
        flex: 0 0 100%;
    }
    .slider-btn {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
        background: rgba(0, 0, 0, 0.65);
        color: #f5c842;
        font-size: 26px;
        cursor: pointer;
        z-index: 10;
    }
    .slider-btn.prev {
        left: 6px;
    }
    .slider-btn.next {
        right: 6px;
    }
}

.infra-section {
    padding: 120px 80px;
    background: #0b0b0b;
}

.infra-box {
    max-width: 1400px;
    margin: auto;
    background: linear-gradient(145deg, #141414, #0e0e0e);
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

/* LEFT */

.infra-left {
    padding: 70px 70px;
    color: #fff;
}

.infra-left h2 {
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 22px;
}

.infra-left p {
    color: #bcbcbc;
    line-height: 1.7;
    margin-bottom: 38px;
    max-width: 520px;
}

/* LIST */

.infra-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.infra-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: #e5e5e5;
}

.infra-list i {
    color: #f5c842;
    font-size: 18px;
    background: rgba(245, 200, 66, 0.15);
    padding: 6px;
    border-radius: 50%;
}

/* RIGHT IMAGE */

.infra-right {
    position: relative;
}

.infra-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .infra-box {
        grid-template-columns: 1fr;
    }
    .infra-left {
        padding: 50px 40px;
    }
    .infra-section {
        padding: 90px 20px;
    }
}

/* ================= PRICING ================= */
.pricing-section {
    padding: 100px 80px;
    background: #0b0b0b;
}
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}
.pricing-header h2 {
    font-size: 42px;
    margin-bottom: 12px;
}
.pricing-header p {
    color: #a8a8a8;
    font-size: 16px;
}
.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
/* CARD */
.unit-box {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #1f1f1f;
    background: linear-gradient(145deg, #141414, #0e0e0e);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.unit-box:hover {
    border-color: rgba(245, 200, 66, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
/* GOLD TAB */
.unit-tab {
    background: #f5c842;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 20px;
    letter-spacing: 0.3px;
    text-align: center;
}
.unit-popular .unit-tab {
    background: linear-gradient(135deg, #ffd34d, #f0b800);
}
/* BODY */
.unit-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
    text-align: center;
    align-items: center;
}
.unit-body h2 {
    font-size: 27px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}
/* DETAILS */
.unit-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    width: 100%;
}
.unit-details p {
    font-size: 14px;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}
.unit-details strong {
    color: #ffffff;
    font-weight: 500;
    min-width: 52px;
    text-align: right;
}
.unit-details span {
    color: #f5c842;
    font-weight: 600;
    font-size: 15px;
}
/* BUTTON */
.unit-box a {
    width: 100%;
    text-decoration: none;
    color: inherit;
}
.unit-box .unit-btn {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid #f5c842;
    color: #f5c842;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, transform 0.25s;
    box-sizing: border-box;
    line-height: normal;
    letter-spacing: normal;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
}
.unit-box .unit-btn:hover {
    background: #f5c842;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(245, 197, 66, 0.35);
}
/* POPULAR */
.unit-popular {
    border: 2px solid rgba(245, 200, 66, 0.5);
}

/* CENTER LAST BOX on desktop */
.pricing-grid .unit-box:last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-section {
        padding: 80px 20px;
    }
    .pricing-grid .unit-box:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }
}
@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-header h2 {
        font-size: 30px;
    }
}

/* ================= LAUNCH OFFER SECTION ================= */

.launch-section {
    padding: 60px 80px 120px;
}

.launch-box {
    max-width: 1300px;
    margin: auto;
    padding: 50px 40px;
    border-radius: 28px;
    text-align: center;
    background: radial-gradient( circle at center, rgba(245, 200, 66, 0.18), #141414 70%);
    border: 1px solid rgba(245, 200, 66, 0.35);
    box-shadow: inset 0 0 60px rgba(245, 200, 66, 0.15), 0 40px 90px rgba(0, 0, 0, 0.6);
}

.launch-box h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.launch-box p {
    font-size: 17px;
    color: #d0d0d0;
}

.launch-box span {
    color: #f5c842;
    font-weight: 700;
}

.launch-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.launch-primary {
    padding: 14px 36px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #ffd34d, #f0b800);
    color: #111;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.launch-outline {
    padding: 14px 36px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid #f5c842;
    color: #f5c842;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.launch-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 200, 66, 0.4);
}

.launch-outline:hover {
    background: rgba(245, 200, 66, 0.15);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .launch-section {
        padding: 60px 20px 90px;
    }
    .launch-actions {
        flex-direction: column;
    }
}

body {
    background: #0b0b0b;
    color: #fff;
}

/* ================= MASTER PLAN SECTION ================= */

.master-section {
    padding: 120px 80px;
}

.master-header {
    text-align: center;
    margin-bottom: 80px;
}

.master-pill {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: rgba(245, 200, 66, 0.15);
    color: #f5c842;
    font-size: 12px;
    letter-spacing: 1.4px;
    margin-bottom: 20px;
}

.master-header h2 {
    font-size: 46px;
    margin-bottom: 14px;
}

.master-header p {
    color: #a8a8a8;
    font-size: 17px;
}

.master-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.master-features {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.feature-card {
    background: linear-gradient(145deg, #141414, #0e0e0e);
    border-radius: 22px;
    padding: 26px 30px;
    border: 1px solid #1f1f1f;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.35s ease;
}

.feature-card:hover {
    transform: translateX(8px);
    border-color: #f5c842;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.feature-icon {
    min-width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(245, 200, 66, 0.15);
    color: #f5c842;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.feature-text p {
    color: #b0b0b0;
    font-size: 14.5px;
    line-height: 1.6;
}

.master-image-box {
    position: relative;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
}

.master-image-box img {
    width: 100%;
    display: block;
}

.download-btn {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: linear-gradient(135deg, #ffd34d, #f0b800);
    color: #111;
    border: none;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(245, 200, 66, 0.45);
}

@media (max-width: 1100px) {
    .master-grid {
        grid-template-columns: 1fr;
    }
    .master-section {
        padding: 90px 20px;
    }
    .feature-card:hover {
        transform: translateX(0);
    }
}

.location-section {
    padding: 120px 80px;
}

.location-header {
    text-align: center;
    margin-bottom: 80px;
}

.location-pill {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: rgba(245, 200, 66, 0.15);
    color: #f5c842;
    font-size: 12px;
    letter-spacing: 1.4px;
    margin-bottom: 20px;
}

.location-header h2 {
    font-size: 48px;
    margin-bottom: 14px;
}

.location-header p {
    color: #a8a8a8;
    font-size: 17px;
}

.location-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.location-left h3 {
    font-size: 26px;
    margin-bottom: 30px;
}

.connectivity-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.connectivity-card {
    background: linear-gradient(145deg, #141414, #0e0e0e);
    border-radius: 22px;
    padding: 22px 26px;
    border: 1px solid #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.35s ease;
}

.connectivity-card:hover {
    border-color: #f5c842;
    transform: translateX(6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.connect-left {
    display: flex;
    gap: 16px;
    align-items: center;
}

.connect-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(245, 200, 66, 0.15);
    color: #f5c842;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.connect-text h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.connect-text span {
    color: #9a9a9a;
    font-size: 13px;
}

.connect-time {
    text-align: right;
}

.connect-time strong {
    color: #f5c842;
    font-size: 16px;
}

.connect-time span {
    font-size: 12px;
    color: #9a9a9a;
}

.location-right {
    display: flex;
    padding-top: 100px;
    flex-direction: column;
    gap: 30px;
}

.map-box {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid #1f1f1f;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

img {
    height: 100%;
    width: 100%;
}

.address-card {
    background: linear-gradient(145deg, #141414, #0e0e0e);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid #1f1f1f;
}

.address-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.address-card p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.direction-btn {
    background: linear-gradient(135deg, #ffd34d, #f0b800);
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.direction-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 200, 66, 0.45);
}

@media (max-width: 1100px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    .location-section {
        padding: 90px 20px;
    }
    .connectivity-card:hover {
        transform: none;
    }
}

.landmark-section {
    padding: 0px 120px;
}

.landmark-box {
    max-width: 1400px;
    margin: auto;
    padding: 50px 40px;
    border-radius: 30px;
    background: linear-gradient(145deg, #141414, #0e0e0e);
    border: 1px solid #1f1f1f;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65);
}

.landmark-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.landmark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.landmark-item {
    text-align: center;
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.landmark-item:hover {
    transform: translateY(-6px);
}

.landmark-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: rgba(245, 200, 66, 0.15);
    color: #f5c842;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: inset 0 0 0 1px rgba(245, 200, 66, 0.25);
}

.landmark-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.landmark-item p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .landmark-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .landmark-section {
        padding: 60px 20px 90px;
    }
}

.about-section {
    padding: 120px 80px;
}

.about-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-image-box {
    position: relative;
    height: 620px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

.about-stats {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(15, 15, 15, 0.88);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    border: 1px solid rgba(245, 200, 66, 0.25);
    z-index: 2;
}

.about-stats h3 {
    color: #f5c842;
    font-size: 26px;
    font-weight: 700;
}

.about-stats span {
    font-size: 13px;
    color: #b0b0b0;
}

.about-pill {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: rgba(245, 200, 66, 0.15);
    color: #f5c842;
    font-size: 12px;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}

.about-content h2 {
    font-size: 44px;
    margin-bottom: 18px;
}

.about-content p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(245, 200, 66, 0.15);
    color: #f5c842;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-feature h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: #a8a8a8;
}

.about-quote {
    margin-top: 36px;
    background: linear-gradient(145deg, #141414, #0e0e0e);
    border-radius: 22px;
    padding: 26px;
    border: 1px solid #1f1f1f;
}

.about-quote p {
    font-style: italic;
    color: #cfcfcf;
    margin-bottom: 16px;
    line-height: 1.6;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f5c842;
    font-weight: 600;
}

.quote-author span {
    font-size: 13px;
    color: #9a9a9a;
}

.about-image-box:hover .about-stats {
    box-shadow: 0 15px 40px rgba(245, 200, 66, 0.35);
}

@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-section {
        padding: 90px 20px;
    }
    .about-content h2 {
        font-size: 36px;
    }
    .about-image-box {
        height: 520px;
    }
}

.contact-section {
    padding: 120px 80px;
}

.contact-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.contact-pill {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: rgba(245, 200, 66, 0.15);
    color: #f5c842;
    font-size: 12px;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}

.contact-header h2 {
    font-size: 46px;
    margin-bottom: 14px;
}

.contact-header p {
    color: #b0b0b0;
    font-size: 16px;
}

.contact-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-card {
    background: linear-gradient(145deg, #141414, #0e0e0e);
    border-radius: 22px;
    padding: 26px;
    border: 1px solid #1f1f1f;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: .3s;
}

.info-card:hover {
    border-color: rgba(245, 200, 66, .4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(245, 200, 66, .15);
    color: #f5c842;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-card h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 14px;
    color: #a8a8a8;
    line-height: 1.6;
}

.info-highlight {
    color: #f5c842;
    font-weight: 600;
    margin-top: 6px;
}

.contact-form {
    background: linear-gradient(145deg, #141414, #0e0e0e);
    border-radius: 26px;
    padding: 40px;
    border: 1px solid #1f1f1f;
}

.contact-form h3 {
    font-size: 26px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    background: #0b0b0b;
    border: 1px solid #222;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: .3s;
}

.form-group textarea {
    resize: none;
    height: 130px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f5c842;
    box-shadow: 0 0 0 1px rgba(245, 200, 66, .4);
}

.char-limit {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

.send-btn {
    margin-top: 12px;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: none;
    background: #f5c842;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.send-btn:hover {
    background: #ffd95a;
    box-shadow: 0 15px 40px rgba(245, 200, 66, .45);
}

@media(max-width:1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-section {
        padding: 90px 20px;
    }
    .contact-header h2 {
        font-size: 36px;
    }
}

.footer {
    padding: 80px 80px 40px;
    background: #0b0b0b;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.3fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f5c842;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.footer-logo h3 {
    font-size: 20px;
}

.footer-logo span {
    font-size: 12px;
    color: #a8a8a8;
}

.footer-desc {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #151515;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: .3s;
}

.footer-social a:hover {
    background: #f5c842;
    color: #000;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.footer-links a:hover {
    color: #f5c842;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #b0b0b0;
}

.contact-item i {
    color: #f5c842;
    font-size: 16px;
}

.newsletter p {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 14px;
}

.newsletter input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #222;
    background: #0b0b0b;
    color: #fff;
    outline: none;
    margin-bottom: 12px;
}

.newsletter input:focus {
    border-color: #f5c842;
}

.newsletter button {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #f5c842;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.newsletter button:hover {
    background: #ffd95a;
}

.footer-bottom {
    max-width: 1400px;
    margin: 50px auto 0;
    padding-top: 24px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #8f8f8f;
}

.footer-bottom a {
    color: #b0b0b0;
    text-decoration: none;
    margin-left: 18px;
}

.footer-bottom a:hover {
    color: #f5c842;
}

.footer-note {
    max-width: 1400px;
    margin: 16px auto 0;
    font-size: 12px;
    color: #777;
    text-align: center;
    line-height: 1.6;
}

@media(max-width:1100px) {
    .footer {
        padding: 60px 20px 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.m7w29c {
    opacity: 0;
}

section.mobile-bottom-section {
    display: none;
}

@media (max-width:768px) {
    body {
        padding-bottom: 90px;
    }
    section.mobile-bottom-section {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 78px;
        background: radial-gradient( circle at 50% -40%, rgba(245, 196, 0, 0.28), rgba(0, 0, 0, 0) 65%), linear-gradient( 180deg, #0c0c0c 0%, #050505 60%, #000000 100%);
        box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(245, 196, 0, 0.18);
        z-index: 9999;
    }
    .cta-item {
        flex: 1;
        text-decoration: none;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 12px;
        font-weight: 600;
        position: relative;
    }
    .cta-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: linear-gradient( to bottom, transparent, rgba(245, 196, 0, 0.35), transparent);
    }
    .cta-item i {
        font-size: 16px;
        padding: 7px;
        border-radius: 50%;
        background: linear-gradient( 135deg, #ffd86a, #f5c400);
        color: #5c4300;
        box-shadow: 0 0 0 1px rgba(245, 196, 0, 0.55), 0 4px 12px rgba(245, 196, 0, 0.3);
    }
    .cta-item:active {
        background: rgba(245, 196, 0, 0.08);
    }
}

.page-content {
    padding: 100px;
    font-size: 20px;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-card {
    width: 380px;
    padding: 32px;
    border-radius: 16px;
    background: #111;
    color: #fff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: scaleIn 0.35s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.popup-card h2 {
    margin-bottom: 8px;
}

.popup-card p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #111;
    font-weight: 600;
    cursor: pointer;
}

#thankYouPopup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(6px);
}

.thankyou-box {
    background: #0b0b0b;
    border: 2px solid #d4af37;
    padding: 35px 40px;
    border-radius: 14px;
    text-align: center;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
}

.thankyou-box h2 {
    color: #d4af37;
    font-size: 26px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.thankyou-box p {
    color: #e6e6e6;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.thankyou-box button {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    border: none;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thankyou-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.45);
}

@media (max-width: 600px) {
    .amenities {
        padding: 70px 16px;
    }
    .row {
        display: contents;
    }
    .spacer {
        display: none;
    }
    .amenities-slider {
        position: relative;
        overflow: hidden;
    }
    .slider-track {
        display: flex;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .slider-track::-webkit-scrollbar {
        display: none;
    }
    .amenity-card {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: center;
        margin: 0 auto;
    }
    .clubhouse {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .slider-btn {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
        background: rgba(0, 0, 0, 0.65);
        color: #f5c842;
        font-size: 26px;
        cursor: pointer;
        z-index: 10;
    }
    .slider-btn.prev {
        left: 6px;
    }
    .slider-btn.next {
        right: 6px;
    }
}

@media (min-width: 601px) {
    .slider-btn {
        display: none;
    }
}

.footer-contact a {
    color: inherit !important;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* ================= OVERVIEW ================= */
.overview-section {
    padding: 100px 80px;
    background: #0b0b0b;
}

.overview-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: stretch;
}

.ov-pill {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 30px;
    background: rgba(245, 200, 66, 0.15);
    color: #f5c842;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.overview-left h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 20px;
}

.overview-left p {
    font-size: 17px;
    color: #b0b0b0;
    line-height: 1.75;
    margin-bottom: 16px;
    text-align: justify;
}

.ov-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 28px 0 36px;
}

.ov-highlight-row {
    display: flex;
    gap: 10px;
}

.ov-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 200, 66, 0.08);
    border: 1px solid rgba(245, 200, 66, 0.25);
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 13px;
    color: #e0e0e0;
    flex: 1;
}

.ov-chip i { color: #f5c842; }

.ov-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd34d, #f0b800);
    color: #111;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.ov-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 197, 66, 0.4);
}

.overview-right { position: relative; padding-bottom: 0; height: 100%; }

.ov-img-wrap {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(245, 200, 66, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    height: 100%;
}

.ov-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ov-stat-bar {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 200, 66, 0.25);
    border-radius: 16px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.ov-stat strong {
    display: block;
    color: #f5c842;
    font-size: 20px;
    font-weight: 600;
}

.ov-stat span { font-size: 11px; color: #888; }

@media (max-width: 1000px) {
    .overview-grid { grid-template-columns: 1fr; gap: 50px; }
    .overview-section { padding: 80px 20px; }
    .ov-stat-bar { position: static; margin-top: 16px; border-radius: 12px; grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .overview-right { padding-bottom: 0; }
}

@media (max-width: 600px) {
    .ov-highlight-row { flex-direction: column; }
    .overview-left h2 { font-size: 30px; }
}

/* ================= FLOOR PLANS ================= */
.fp-section { padding: 100px 80px; background: #0b0b0b; }

.fp-header { text-align: center; margin-bottom: 44px; }
.fp-pill {
    display: inline-block; padding: 7px 18px; border-radius: 30px;
    background: rgba(245,200,66,0.15); color: #f5c842;
    font-size: 11px; letter-spacing: 1.5px; margin-bottom: 14px;
}
.fp-header h2 { font-size: 42px; font-weight: 600; margin-bottom: 10px; }
.fp-header p  { font-size: 15px; color: #777; max-width: 480px; margin: 0 auto; }

.fp-tabs {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 10px; margin-bottom: 36px;
}
.fp-tab {
    padding: 10px 24px; border-radius: 8px;
    border: 1px solid rgba(245,200,66,0.3);
    background: transparent; color: #aaa;
    font-size: 13px; font-weight: 500; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
}
.fp-tab:hover  { border-color: #f5c842; color: #f5c842; }
.fp-tab.active { background: #f5c842; border-color: #f5c842; color: #111; font-weight: 600; }

.fp-img-wrap { max-width: 900px; margin: 0 auto; }

.fp-img-box {
    border-radius: 4px; overflow: hidden;
    border: 3px solid #c8a84b; background: #141414;
    min-height: 420px; display: flex;
    align-items: center; justify-content: center;
}
.fp-img-box img { width: 100%; display: block; }

.fp-img-placeholder {
    display: flex; flex-direction: column;
    align-items: center; gap: 14px;
    color: rgba(245,200,66,0.25); padding: 80px 20px;
}
.fp-img-placeholder i { font-size: 48px; }

.fp-footer {
    display: flex; align-items: center;
    justify-content: space-between; margin-top: 18px;
}
.fp-floor-name { font-size: 14px; color: #f5c842; font-weight: 600; }

.fp-dl-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, #ffd34d, #f0b800);
    color: #111; font-weight: 600; font-size: 13px;
    padding: 11px 22px; border-radius: 10px;
    border: none; cursor: pointer; font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}
.fp-dl-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(245,197,66,0.4); }

@media (max-width: 768px) {
    .fp-section { padding: 80px 20px; }
    .fp-header h2 { font-size: 30px; }
    .fp-tab { padding: 8px 16px; font-size: 12px; }
}

.nav-logo {
    height: 44px;
    width: auto;
}
.footer-logo-img {
    height: 48px;
    width: auto;
}

/* ================= FAQ ================= */
.faq-section { padding: 100px 80px; background: #0b0b0b; }

.faq-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.faq-pill {
    display: inline-block; padding: 8px 18px; border-radius: 999px;
    border: 1px solid #f5c542; color: #f5c542;
    font-size: 12px; letter-spacing: 1.4px; margin-bottom: 16px;
}
.faq-header h2 { font-size: 42px; margin-bottom: 12px; }
.faq-header p { color: #a8a8a8; font-size: 16px; }

.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
    background: linear-gradient(145deg, #141414, #0e0e0e);
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(245, 200, 66, 0.35); }
.faq-item.active { border-color: #f5c842; }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    padding: 22px 26px;
    cursor: pointer;
}

.faq-q i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(245, 200, 66, 0.12);
    color: #f5c842;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-q i { transform: rotate(135deg); background: #f5c842; color: #111; }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-a { max-height: 400px; }

.faq-a p {
    padding: 0 26px 24px;
    color: #b0b0b0;
    font-size: 14.5px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section { padding: 80px 20px; }
    .faq-header h2 { font-size: 30px; }
    .faq-q { padding: 18px 20px; font-size: 15px; }
    .faq-a p { padding: 0 20px 20px; }
}

/* ================= FACT SHEET ================= */
.factsheet-section {
    padding: 70px 80px;
    background: #fff;
}

.factsheet-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.factsheet-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.factsheet-divider {
    width: 50px;
    height: 3px;
    background: #b8962e;
    margin: 0 auto 36px;
}

.factsheet-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
}

.factsheet-table tr:nth-child(odd) {
    background-color: #f5f0e8;
}

.factsheet-table tr:nth-child(even) {
    background-color: #ffffff;
}

.factsheet-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e8e0d0;
    vertical-align: middle;
    line-height: 1.5;
}

.fs-label {
    font-weight: 700;
    color: #1a1a1a;
    width: 35%;
    white-space: normal;   /* fixed: was nowrap, caused overflow */
}

.fs-value {
    color: #444;
}

/* ===== MOBILE: stack label above value ===== */
@media (max-width: 600px) {
    .factsheet-section {
        padding: 50px 16px;
    }

    .factsheet-table,
    .factsheet-table tbody,
    .factsheet-table tr,
    .factsheet-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* separate rows with a bottom border */
    .factsheet-table tr {
        border-bottom: 2px solid #e8e0d0;
        margin-bottom: 0;
    }

    .factsheet-table tr:last-child {
        border-bottom: none;
    }

    /* label becomes a small grey uppercase caption */
    .fs-label {
        width: 100%;
        padding: 12px 16px 4px;
        font-size: 11px;
        color: #999;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        border-bottom: none;
        background-color: inherit;
    }

    /* value sits directly below */
    .fs-value {
        width: 100%;
        padding: 2px 16px 14px;
        font-size: 14px;
        font-weight: 500;
        color: #222;
        border-bottom: none;
    }
}

/* Mobile Call Icon */
.mobile-call-btn{
  display:none;
  position:relative;
  width:36px;
  height:36px;
  background:#000;
  border:1.5px solid #f5c842;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.mobile-call-btn svg{
  width:16px;
  height:16px;
  fill:#f5c842;
  animation:call-shake 1.4s ease-in-out infinite;
  transform-origin:center;
}
.mobile-call-btn::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  border:2px solid #f5c842;
  animation:call-pulse 1.6s ease-out infinite;
}
@keyframes call-pulse{
  0%{
    transform:scale(1);
    opacity:.6;
  }
  100%{
    transform:scale(1.6);
    opacity:0;
  }
}
@keyframes call-shake{
  0%,100%{ transform:rotate(0deg); }
  10%{ transform:rotate(-15deg); }
  20%{ transform:rotate(12deg); }
  30%{ transform:rotate(-10deg); }
  40%{ transform:rotate(8deg); }
  50%{ transform:rotate(0deg); }
}
@media (max-width: 768px){
  .mobile-call-btn{
    display:flex;
  }
}

.call-pill-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5c842;
    color: #000;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.call-pill-btn i {
    font-size: 14px;
}

.call-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(245, 197, 66, 0.45);
}

@media (max-width: 1300px) {
    .call-pill-btn {
        display: none;
    }
}

/* WHO SHOULD BUY SECTION */
.who-section {
    padding: 80px 6%;
    background: #faf9f7;
    text-align: center;
}

.who-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.who-pill {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #c9a24b;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #c9a24b;
    margin-bottom: 16px;
}

.who-header h2 {
    font-size: 34px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.who-header p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.who-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: left;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}

.who-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f3e9d2;
    color: #c9a24b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.who-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.who-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
    .who-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .rera-link {
        display: block;
        margin-top: 6px;
    }
}