* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Red Hat Display", serif;
    /* font-weight: bold; */
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* padding: 0.5rem 0; */
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
}

.nav-container {
    /* max-width: 1400px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}

.logo {
    /* font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2rem;
            color:#131f2f;
            background: linear-gradient(135deg,#131f2f, #6c2914);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; */
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    color: white;
    font-size: 12px;
    justify-content: center;
    /* justify-content: flex-end; */
    /* flex-direction: column; */

}

.logo img {
    height: 45px;
    margin: 10px;
    width: auto;
    /* transition: transform 0.3s ease; */
    /* filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.926)); */
}
.rera1{
    
    text-align: end;
    font-size: 12px;
}

/* .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    background-color: white;
} */

/* .nav-menu a {
    text-decoration: none;
    color: #131f2f;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6c2914, #131f2f);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #6c2914;
} */

/* .cta-button {
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 168, 130, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 168, 130, 0.4);
} */

/* Hero Section with Zoom Effect */
.hero {
    height: 95vh;
    background: linear-gradient(to top, #000000da 0%,#00000089 33%,#03030360 66%,#000000 100% ), url('hero-image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    transform-origin: center;
    transition: transform 0.1s ease-out;
}

.logos1 img {
    height: 120px;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    transition: opacity 1s ease;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-video.loaded {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.118);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index:2;
    text-align: center;
    padding: 2rem;
    /* margin-top: 10rem; */
}


.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0;
    /* color: rgb(105, 31, 18); */
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero h1 {
    font-family: "Red Hat Display", serif;
    color: white;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.hero-price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #6c2914;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.hero-features {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 2.5s forwards;
    padding: 2px;
}

.hero-cta {
    background: #6c2914;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(200, 168, 130, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 168, 130, 0.5);
}

.hero-cta.secondary {
    background: transparent;
    border: 2px solid #6c2914;
    color: #6c2914;
}

.hero-cta.secondary:hover {
    background: #6c2914;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.discover-section {
    background: #131f2f;
    padding: 3rem 0;
    color: white;
}

.discover-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: #ffffff;
    margin: 0 auto 3rem;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
}

.discover-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.property-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.property-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.learn-more {
    color: #6c2914;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.property-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.property-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.view-details {
    background: linear-gradient(135deg, #6c2914, #b8986f);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.view-details:hover {
    background: #b8986f;
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #131f2f;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #131f2f;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    /* font-size: 0.9rem; */
    color: #555;
    position: relative;
    line-height: 1.4rem;
}

.features-list li::before {
    /* content: '✓'; */
    position: absolute;
    left: 0;
    color: #6c2914;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Floor Plans Section */
/* Base Section Styling */
.floorplans-section {
    background: #131f2f;
    color: white;
    padding: 4rem 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Grid */
.floorplans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Card Styling */
.floorplan-card {
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 20px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Hover for Larger Screens */
@media (hover: hover) and (pointer: fine) {
    .floorplan-card:hover {
        transform: translateY(-10px);
        background: white;
        color: #131f2f;
    }

    .floorplan-card:hover h3 {
        color: #131f2f;
    }
}

/* Headings */
.floorplan-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 1rem 0;
    color: #b8986f;
    transition: color 0.3s ease;
}

/* Area Description */
.floorplan-card .area {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* CTA Button */
.hero-cta {
    background: linear-gradient(135deg, #6c2914, #b8986f);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(200, 168, 130, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 168, 130, 0.5);
}

/* Responsive Spacing and Text */
@media (max-width: 600px) {
    .floorplans-section {
        padding: 3rem 1rem;
    }

    .floorplan-card {
        padding: 1.5rem;
    }

    .floorplan-card h3 {
        font-size: 1.4rem;
    }

    .floorplan-card .area {
        font-size: 0.95rem;
    }

    .hero-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        
    }
    .bgn{
        margin-top: 2rem;
    }
    .offer-card p{
        font-size: 1rem;
        line-height: 1.5rem;
        padding-top: 8px;
    }
    .hero-price{
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .rera1{
        font-size: 8px;
       
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    /* max-width: 600px; */
    margin: 0 auto;
}

.price-highlight {
    font-size: 2.7rem;
    font-weight: 700;
    color: #6c2914;
    margin-bottom: 1rem;
}

.launch-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background:  #131f2f;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 168, 130, 0.3);
}

/* Amenities Section */
.amenities-section {
    background: #131f2f;
    color: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-card {
    /* background: rgba(255, 255, 255, 0.1); */
    box-shadow: 2px 2px 20px rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

/* .a1:hover{
            background: url(images/swmming.gif) no-repeat center center;
            
        }
         .a2:hover{
            background: url(images/fitnes.gif) no-repeat center center;
            
        }
         .a3:hover{
            background: url(images/kids.gif) no-repeat center center;
            
        }
         .a4:hover{
            background: url(images/Landscaped.gif) no-repeat center center;
            
        }
         .a5:hover{
            background: url(images/Gated\ Security.gif) no-repeat center center;
            
        }
         .a6:hover{
            background: url(images/club.jpg) no-repeat center center;
            
            
        } */


.amenity-card:hover {
    transform: translateY(-10px);
    /* background: rgba(255, 255, 255, 0.15); */
    box-shadow: 2px 2px 20px rgba(255, 255, 255, 0.289);
    color: #b8986f;
    /* background: rgb(255, 255, 255); */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);


}

.amenity-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    /* display: inline; */
}

.amenity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    /* display: inline; */
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 250px;
    background: #ddd;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Location Section */
.location-section {
    background: #131f2f;
    color: white;
    padding: 4rem 0;
}

.location-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.location-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.0rem;
    text-align: center;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.location-feature h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.location-feature p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.location-map {
    height: 100%;
    /* min-height: 500px; */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .location-content-wrapper {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 400px;
        order: -1;
        /* Map will appear above features on mobile */
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-form {
    /* background: white; */
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 0.4rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #131f2f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c2914;
    box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #6c2914, #b8986f);
    color: white;
    padding: 1rem 2rem;
    margin-top: 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 130, 0.4);
}

/* Footer */
.footer {
    background: #131f2f;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6c2914;
}

/* Pop-up Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    /* Hide default arrow on some browsers */
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="10"><path fill="black" d="M7 10L0 0h14z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.form-group select:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #6c2914;
}

.modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #131f2f;
    margin-bottom: 1rem;
    text-align: center;
}

.modal p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 0px;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #131f2f;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {

    .logos img {
        height: 30px;
        width: auto;
        transition: transform 0.3s ease;
        /* filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.926)); */
    }

    .logos1 img {
        height: 70px;
    }

    .section-subtitle {
        margin-bottom: 1rem;
    }

    .location-feature h3 {
        font-size: 1.3rem;
    }

    .para {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .features-list li {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .floorplan-card .area {
        font-size: 1 rem;
        line-height: 2.3rem;
    }

    .fade-in.visible {
        font-size: 1.2rem;
    }

    .hero-features {
        line-height: 2;
        color: 	#FFC107;
        font-weight: 600;
    }

    .hero-subtitle {
        line-height: 1.4;
    }

    .logo img {
        height: 30px;
        margin-left: 10px;
        margin-top: 3px;
    }

    .nav-menu {
        display: none;
    }

    .flow {
        height: 30vh !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 10px;
        /* padding-bottom: 130px; */
        /* background: linear-gradient(to bottom, #000000c0 0%,#000000b1 33%,#0000001b 66%,#00000000 100% ); */
    }

    .hero-content {
        padding: 0 1rem;
        margin-top: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-container {
        padding: 0 1rem;
    }

    .discover-container {
        padding: 0 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .section {
        padding: 4rem 0;
    }

    .floorplans-grid,
    .amenities-grid,
    .gallery-grid,
    .location-features {
        grid-template-columns: 1fr;
    }

    .launch-offers {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .pera {
        font-size: 1rem !important;
        line-height: 1.6;
        color: #666;
        /* margin-bottom: 2rem; */
    }

    .modal {
        padding: 2rem;
        margin: 1rem;
    }

    body {
        overflow-x: hidden;
        line-height: 1;
    }

    .logo {
        font-size: 9px;
    }
    .price-highlight{
        font-size: 2rem;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #131f2f;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(200, 168, 130, 0.3);
    border-top: 3px solid #6c2914;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.clubhouse-section {
    background: #f7f6f3;
    padding: 60px 0 40px 0;
}

.clubhouse-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.clubhouse-features {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.clubhouse-block {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 32px 28px 24px 28px;
    margin-bottom: 0;
    transition: box-shadow 0.2s;
}

.clubhouse-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #6c2914;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clubhouse-block ul {
    padding-left: 20px;
    margin: 0;
    color: #333;
    font-size: 1.08rem;
    line-height: 1.6;
}

.clubhouse-image {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 500px;
    align-self: center;
}

.clubhouse-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

/* Responsive styles */
@media (max-width: 900px) {
    .clubhouse-content {
        flex-direction: column;
        gap: 32px;
    }

    .clubhouse-image {
        max-width: 100%;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .clubhouse-section {
        padding: 40px 0 20px 0;
    }

    .clubhouse-block {
        padding: 20px 14px 16px 14px;
    }

    .clubhouse-block h3 {
        font-size: 1.08rem;
    }

    .clubhouse-block ul {
        font-size: 0.98rem;
    }
}

.sticky-contact-buttons {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.call-btn {
    background-color: #25D366;
}

.whatsapp-btn {
    background-color: #25D366;
}

.contact-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .contact-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

.form-row {
    display: flex;
    gap: 15px;
}

.half-width {
    flex: 1;
}
