﻿/* ===== BASE RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #222;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 63px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

    .nav ul li a {
        font-size: 14px;
        font-weight: 500;
        color: #333;
        position: relative;
        padding: 5px 0;
    }

        .nav ul li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: #c62828;
            transition: width 0.3s ease;
        }

        .nav ul li a:hover::after,
        .nav ul li a.active::after {
            width: 100%;
        }

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

    .hero-slider .slides {
        position: absolute;
        inset: 0;
    }

    .hero-slider .slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transform: scale(1.08);
        transition: opacity 1.2s ease-in-out, transform 2s ease;
    }

        .hero-slider .slide.active {
            opacity: 1;
            transform: scale(1);
        }

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65) );
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 780px;
    color: #fff;
}

    .hero-content h1 {
        font-size: 50px;
        font-weight: 700;
        line-height: 1.2;
    }

    .hero-content p {
        margin-top: 20px;
        font-size: 18px;
        opacity: 0.95;
    }

.hero-cta {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn.primary {
        background: #c62828;
        color: #fff;
    }

    .btn.outline {
        border: 1px solid #fff;
        color: #fff;
    }

    .btn:hover {
        transform: translateY(-3px);
    }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

    .slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
    }

        .slider-dots .dot.active {
            background: #fff;
        }

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }
}
/* ================= MOBILE RESPONSIVE HERO ================= */

/* Tablets */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 90%;
    }

        .hero-content h1 {
            font-size: 40px;
        }
}

/* Mobile Devices */
@media (max-width: 768px) {

    .hero-slider {
        height: 100vh;
    }

        .hero-slider .slide {
            background-position: center center;
        }

    .hero-content {
        padding: 0 15px;
        align-items: center;
        text-align: center;
    }

        .hero-content h1 {
            font-size: 30px;
            line-height: 1.25;
        }

        .hero-content p {
            font-size: 16px;
            margin-top: 15px;
        }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 25px;
    }

        .hero-cta .btn {
            width: 100%;
            text-align: center;
            padding: 14px 0;
        }

    .slider-dots {
        bottom: 20px;
    }
}

/* Small Phones */
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
}


/* Buttons */
.btn {
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn.primary {
        background: #c62828;
        color: #fff;
    }

    .btn.outline {
        border: 1px solid #fff;
        color: #fff;
    }

    .btn:hover {
        transform: translateY(-3px);
    }

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
}

/*.hero-slider {
    margin-top: 80px;*/ /* same as header height */
/*}*/




/* ================= SPECIFICATIONS ================= */
.specifications {
    padding: 100px 0;
    background: #f7f7f7;
}

.section-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: #222;
    }

    .section-title p {
        margin-top: 10px;
        color: #666;
        font-size: 16px;
    }

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.spec-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .spec-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    }

    .spec-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #c62828;
        margin-bottom: 15px;
    }

    .spec-card ul {
        padding-left: 18px;
    }

        .spec-card ul li {
            font-size: 14.5px;
            margin-bottom: 8px;
            color: #444;
        }

/* Responsive */
@media (max-width: 992px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

/* ================= PREMIUM SPECIFICATIONS ================= */
.premium-specs {
    padding: 120px 0;
    background: #f6f7f9;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.spec-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 32px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

    .spec-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 45px 90px rgba(0,0,0,0.1);
    }

/* Header row */
.spec-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

    .spec-header i {
        font-size: 22px;
        color: #c62828;
        min-width: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .spec-header h3 {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
    }


/* Divider */
.spec-card::after {
    content: '';
    display: block;
    height: 1px;
    background: #eee;
    margin: 12px 0 18px;
}

/* List */
.spec-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .spec-card ul li {
        position: relative;
        padding-left: 28px;
        font-size: 14.5px;
        margin-bottom: 10px;
        color: #444;
        line-height: 1.6;
    }

        .spec-card ul li::before {
            content: "\f058"; /* check-circle */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 14px;
            color: #c62828;
        }


/* Responsive */
@media (max-width: 992px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .premium-specs {
        padding: 90px 0;
    }
}


/* ================= LUXURY SECTION TITLE ================= */

.luxury-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    font-size: 31px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c62828;
    margin-bottom: 12px;
    font-weight: 600;
}

.luxury-title h2 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.3;
}

    /* Subtle underline accent */
    .luxury-title h2::after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background: #c62828;
        margin: 22px auto 0;
        border-radius: 2px;
    }

/* Responsive */
@media (max-width: 768px) {
    .luxury-title h2 {
        font-size: 28px;
    }
}



/* ================= ABOUT US ================= */

.about-section {
    padding: 90px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* Text Content */
.about-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* Highlights */
.about-highlights {
    border-left: 2px solid #eee;
    padding-left: 35px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

    .highlight-item span {
        font-size: 20px;
        font-weight: 600;
        color: #c62828;
        min-width: 32px;
    }

    .highlight-item p {
        font-size: 14.5px;
        color: #333;
        line-height: 1.6;
    }

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-highlights {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #eee;
        padding-top: 30px;
    }
}


/* ================= SOFT BACKGROUND TEXTURE ================= */

.about-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

    /* subtle geometric texture */
    .about-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.035) 1px, transparent 1px), radial-gradient(circle at 80% 30%, rgba(0,0,0,0.03) 1px, transparent 1px), radial-gradient(circle at 40% 70%, rgba(0,0,0,0.025) 1px, transparent 1px);
        background-size: 120px 120px;
        pointer-events: none;
        z-index: 0;
    }

    /* ensure content stays above texture */
    .about-section .container {
        position: relative;
        z-index: 1;
    }




/* ================= FLOOR PLAN & CUT SECTION ================= */

.plan-section {
    padding: 90px 0;
    background: #ffffff;
}

    .plan-section.light-bg {
        background: #f7f8fa;
    }

.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.plan-gridfloor {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.plan-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .plan-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .plan-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 40px 90px rgba(0,0,0,0.12);
    }

/* Label */
.plan-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Hover overlay */
.plan-card::after {
    content: 'View Plan';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .plan-gridfloor {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .plan-grid {
        grid-template-columns: 1fr;
    }

    .plan-gridfloor {
        grid-template-columns: 1fr;
    }
}



/* ================= AMENITIES ================= */

.amenities-section {
    padding: 90px 0;
    background: #ffffff;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Amenity Card */
.amenity-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .amenity-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .amenity-card:hover img {
        transform: scale(1.08);
    }

    .amenity-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 40px 90px rgba(0,0,0,0.12);
    }

/* Overlay */
.amenity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15) );
    display: flex;
    align-items: flex-end;
    padding: 22px;
}

    .amenity-overlay h4 {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
    }

/* Responsive */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .amenity-card {
        height: 220px;
    }
}



/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa, #ffffff);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.contact-info h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
}

.contact-points {
    list-style: none;
    padding: 0;
}

    .contact-points li {
        font-size: 14px;
        margin-bottom: 10px;
        color: #333;
    }

/* Form Box */
.contact-form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* Floating Label Inputs */
.form-group {
    position: relative;
    margin-bottom: 28px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 14px;
        border: 1px solid #ddd;
        border-radius: 10px;
        outline: none;
        font-size: 14px;
        background: transparent;
    }

    .form-group textarea {
        height: 110px;
        resize: none;
    }

    .form-group label {
        position: absolute;
        top: 50%;
        left: 14px;
        transform: translateY(-50%);
        background: #fff;
        padding: 0 6px;
        font-size: 13px;
        color: #777;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .form-group textarea + label {
        top: 18px;
        transform: none;
    }

    /* Floating Effect */
    .form-group input:focus + label,
    .form-group input:valid + label,
    .form-group textarea:focus + label,
    .form-group textarea:valid + label {
        top: -8px;
        font-size: 11px;
        color: #c62828;
    }

/* Button */
.btn-primary {
    width: 100%;
    padding: 14px;
    background: #c62828;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .btn-primary:hover {
        background: #a91f1f;
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 35px 25px;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #5e626061;
    color: #fff;
    padding: 10px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    

    .whatsapp-float:hover {
        transform: translateY(-4px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    }

/* Mobile */
@media(max-width:768px) {
    .whatsapp-float span {
        display: none;
    }
}



/* Footer */
.site-footer {
    background: #111;
    color: #ccc;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: #ccc;
            font-size: 14px;
            transition: color 0.3s;
        }

            .footer-col ul li a:hover {
                color: #c62828;
            }

.footer-map iframe {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    border: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #777;
}

/* Responsive */
@media(max-width:992px) {
    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-box h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.popup-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.popup-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.popup-box button {
    width: 100%;
    padding: 12px;
    background: #c62828;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
}



/* Map Section */
.map-section {
    width: 100%;
    height: 420px;
    position: relative;
}

    .map-section iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(100%) contrast(1.1);
    }

        /* Optional hover effect */
        .map-section iframe:hover {
            filter: grayscale(0%);
        }



/* Footer */
.modern-footer {
    background: #0f0f0f;
    color: #bbb;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: #bbb;
            font-size: 14px;
            transition: color 0.3s;
        }

            .footer-col ul li a:hover {
                color: #c62828;
            }

.footer-socials {
    display: flex;
    gap: 14px;
}

    .footer-socials a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #1a1a1a;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
    }

        .footer-socials a:hover {
            background: #c62828;
        }

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* Responsive */
@media(max-width:992px) {
    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}



/* ================= LOCATION MAP SECTION ================= */


    .location-section {
        background: #f8f9fa;
        padding: 90px 0 0;
        position: relative;
    }

    .map-wrapper {
        position: relative;
        margin-top: 50px;
        height: 420px;
        overflow: hidden;
        border-radius: 24px 24px 0 0;
    }

        /* Map itself */
        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(100%) contrast(1.05) brightness(0.95);
            transition: filter 0.4s ease;
        }

    /* Subtle brand overlay */
    .map-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.0) 100% );
        pointer-events: none;
    }

    /* On hover – map becomes colored */
    .map-wrapper:hover iframe {
        filter: grayscale(0%) contrast(1);
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .map-wrapper {
            height: 320px;
            border-radius: 18px 18px 0 0;
        }
    }


.map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}



/* ================= FOOTER BRAND BLOCK ================= */

.footer-brand {
    text-align: center;
}

.footer-brand-logo {
    max-width: 140px;
    margin-bottom: 18px;
    place-self: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

    .footer-socials a {
        width: 40px;
        height: 40px;
        background: #1c1c1c;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .footer-socials a:hover {
            background: #c62828;
            transform: translateY(-3px);
        }

.footer-copy {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.footer-dev {
    font-size: 13px;
    color: #888;
}

    .footer-dev a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #bbb;
        font-weight: 500;
    }

    .footer-dev img {
        height: 18px;
    }


.call-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #c62828;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    z-index: 9999;
    display: none;
}

@media(max-width:768px) {
    .call-float {
        display: block;
    }
}
.whatsapp-float {
    opacity: 1;
    transition: opacity .4s ease;
}


/* ================= HEADER ================= */

.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 63px;
}

/* Desktop Menu */
.main-nav {
    display: flex;
    gap: 28px;
}

    .main-nav a {
        font-size: 14px;
        font-weight: 500;
        color: #111;
        position: relative;
    }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: #c62828;
            transition: width .3s ease;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: #111;
        transition: all .3s ease;
    }

/* ================= MOBILE ================= */

@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
        transform: translateY(-120%);
        transition: transform .4s ease;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

        .main-nav a {
            padding: 14px 24px;
            font-size: 15px;
            border-bottom: 1px solid #eee;
        }

        .main-nav.active {
            transform: translateY(0);
        }
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

/* Active menu item */
.main-nav a.active {
    color: #c62828;
    font-weight: 600;
}

    .main-nav a.active::after {
        width: 100%;
    }


/* ================= HEXA TOWERS STATIC RIBBON ================= */

.static-help-ribbon {
    width: 100%;
    background: linear-gradient(90deg, #c62828, #9e1f1f);
    border-radius: 8px 8px 0 0;
}

.ribbon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.ribbon-text strong {
    color: #fff;
    font-weight: 700;
}

.ribbon-link {
    color: #ffd6d6;
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
    .ribbon-container {
        flex-direction: column;
        text-align: center;
        font-size: 14px;
        gap: 6px;
    }
}





.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 88px;
}

.menu-toggle {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

/* Desktop */
.main-nav {
    display: flex;
    gap: 22px;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 16px 0;
        display: none;
        z-index: 9999;
    }

        .main-nav a {
            padding: 12px 20px;
            border-bottom: 1px solid #eee;
        }

        .main-nav.active {
            display: flex;
        }

    .header-container {
        padding: 12px 30px;
    }
}


.plan-card img {
    transition: transform 0.6s ease;
}

.plan-card:hover img {
    transform: scale(1.06);
}

.amenity-card {
    overflow: hidden;
}

    .amenity-card img {
        transition: transform 0.7s ease;
    }

    .amenity-card:hover img {
        transform: scale(1.12);
    }

.amenity-overlay {
    transition: opacity 0.4s ease;
}


.spec-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .spec-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }


.CDEWingText {
    color: #ffffffd9;
    padding: 7px 32px;
    background: #c6282870;
    border-radius: 50px;
}



.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.badge {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

    .badge.sold-out {
        background: rgba(255,255,255,0.15);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.25);
    }

    .badge.limited {
        background: #c62828;
        color: #fff;
        box-shadow: 0 8px 24px rgba(198,40,40,0.4);
    }




/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fafafa, #f3f3f3);
    text-align: center;
}

.stats-title {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 50px;
}

/* Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card */
.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }

/* Number */
.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #c62828;
    margin-bottom: 10px;
}

/* Label */
.stat-label {
    font-size: 15px;
    color: #555;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(198,40,40,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .stat-icon i {
        font-size: 28px;
        color: #c62828;
    }

