
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#fff;
color:#222;
}

/* Header */

header{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 60px;
background:#000;
z-index:999;
}

.logo img{
width:150px;
}

nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
color:#caa24b;
font-size:17px;
transition:.3s;
}

nav a:hover{
color:#fff;
}

.menu-btn{
display:none;
cursor:pointer;
}

.menu-btn span{
display:block;
width:30px;
height:3px;
background:#caa24b;
margin:6px 0;
}

/* Hero */

.hero{
margin-top:91px;
display:flex;
min-height:100vh;
}

.left{
flex:1;
background:black;
color:#fff;
display:flex;
flex-direction:column;
justify-content:center;
padding:70px;
}

.left h2{
font-size:70px;
color:#d7b256;
}

.left h4{
font-size:26px;
margin:10px 0;
}

.left h3{
font-size:30px;
font-weight:400;
}

.left h1{
font-size:58px;
margin:25px 0;
}

.line{
width:180px;
height:2px;
background:#d7b256;
margin:25px 0;
}

.right{
flex:1;
padding:40px;
background: #000;;
display:flex;
align-items:center;
justify-content:center;
}

.right img{
width:100%;
border:4px solid #caa24b;
border-radius:18px;
}

.hero-btn,
.brochure-btn,
.unlock-plan,
.popup button{
       display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 36px;

    width:fit-content;
    min-width:220px;
    max-width:250px;

    background:#D9A58B;
    color:#000;

    border-radius:8px;
    text-decoration:none;

    font-size:18px;
    font-weight:600;

    transition:.3s;

    align-self:flex-start;
}

.hero-btn:hover,
.brochure-btn:hover,
.unlock-plan:hover,
.popup button:hover{
background:#C78C72;
}


@media (max-width:768px){

    .line{

        width:180px;

        margin:30px auto;

    }

}

@media (max-width:768px){

    .hero-btn{

        display:block;

        width:220px;

        margin:35px auto 0;

    }

}

/* Sections */

.container{
width:90%;
max-width:1300px;
margin:auto;
}

.overview,
.floor-plan{
padding:10px 0;
}

.overview-tagline{

    text-align:center;

    max-width:900px;

    margin:30px auto;

    font-size:32px;

    font-weight:700;

    line-height:1.4;

    color:#111;

    text-transform:uppercase;

}

.overview h2,
.floor-plan h2{
text-align:center;
font-size:52px;
color:#b07d17;
}

.overview-btn{

    margin-top:50px;

    display:flex;

    justify-content:center;

}

.title-line{
width:180px;
height:2px;
background:#000;
margin:20px auto 40px;
}

.description{

    max-width:1000px;

    margin:0 auto 24px;

    font-size:18px;

    line-height:2;

    color:#444;

    text-align:center;

}

.brochure-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    white-space:nowrap;

    padding:16px 40px;

    background:#D9A58B;

    color:#000;

    border-radius:8px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.brochure-btn:hover{

    background:#C78C72;

}

/* Lifestyle */

.amenities{

    padding:100px 0;

}

.lifestyle-showcase{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}
.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:52px;
    color:#b07d17;
    margin-bottom:18px;
}

.section-heading .title-line{
    width:100px;
    height:3px;
    background:#D9A58B;
    margin:0 auto;
}

.showcase-card{
height:520px;
border-radius:20px;
overflow:hidden;
position:relative;
box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.showcase-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.showcase-card:hover img{
transform:scale(1.08);
}

.showcase-overlay{
position:absolute;
inset:0;
display:flex;
flex-direction:column;
justify-content:flex-end;
padding:30px;
background:linear-gradient(transparent,rgba(0,0,0,.82));
}

.showcase-overlay span{
color:#d7b256;
letter-spacing:2px;
text-transform:uppercase;
font-size:13px;
}

.showcase-overlay h3{
color:#fff;
font-size:38px;
margin:10px 0;
}

.showcase-overlay p{
color:#fff;
}

/* Floor */

.floor-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.floor-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.floor-card img{

    width:100%;

    height:450px;

    object-fit:cover;

    filter:blur(8px);

    transition:.4s;

}

.floor-lock{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    background:rgba(0,0,0,.45);

    padding:30px;

    color:#fff;

}

.floor-lock i{

    font-size:50px;

    color:#D9A58B;

    margin-bottom:15px;

}

.floor-lock h3{

    font-size:30px;

    margin-bottom:10px;

}

.floor-lock p{

    margin-bottom:25px;

    color:#eee;

}

.unlock-plan{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    align-self:center;

    margin:30px auto 0;

    padding:16px 36px;

    width:auto;

    background:#D9A58B;

    color:#000;

    border:none;

    border-radius:8px;

}

.unlock-plan:hover{

    background:#C78C72;

}



@media (max-width:768px){

.floor-grid{

    grid-template-columns:1fr;

}

.floor-card img{

    height:320px;

}

}

/* Popup */

.popup{
position:fixed;
inset:0;
display:none;
align-items:center;
justify-content:center;
background:rgba(0,0,0,.65);
z-index:9999;
}

.popup.active{
display:flex;
}

.popup-content{
background:#fff;
width:92%;
max-width:470px;
padding:40px;
border-radius:16px;
position:relative;
}

.close{
position:absolute;
right:20px;
top:15px;
font-size:30px;
cursor:pointer;
}

.popup h2{
margin-bottom:25px;
text-align:center;
color:#b07d17;
}

.popup input{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
}

/* Footer */

.footer{
background:#000;
color:#fff;
padding:30px;
text-align:center;
}

/* Mobile */

@media(max-width:991px){

header{
padding:0 20px;
}

.menu-btn{
display:block;
}

nav{
position:fixed;
top:90px;
right:-100%;
width:260px;
height:100vh;
background:#000;
flex-direction:column;
padding:30px;
transition:.4s;
}

nav.active{
right:0;
}

.hero{
flex-direction:column;
}

.left,
.right{
width:100%;
padding:30px;
}

.left{
text-align:center;
}

.left h2{
font-size:48px;
}

.left h1{
font-size:40px;
}

.lifestyle-showcase{
grid-template-columns:1fr;
}

.showcase-card{
height:420px;
}
}



/*=========================
Location
==========================*/

.location-section{

    padding:100px 0;


}

.location-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

    margin-top:60px;

}

.location-image{

    height:520px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:black;

}

.location-image img{

    max-height:100%;

    max-width:100%;

    width:auto;

    height:auto;

}
.location-heading{

    text-align:center;

    margin-bottom:60px;

}

.location-heading h2{

    font-size:48px;

    font-weight:700;

    color:#b07d17;

    margin-bottom:18px;

}

.title-line{

    width:100px;

    height:3px;

    background:#D9A58B;

    margin:0 auto;

    border-radius:50px;

}

.google-map{

    height:420px;

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.google-map iframe{

    width:100%;

    height:100%;

}

.location-image,
.google-map{

    height:420px;

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}


@media(max-width:991px){

.location-grid{

    grid-template-columns:1fr;

}

.location-image{

    order:1;

}

.google-map{

    order:2;

    height:400px;

}

}




/*=================================
Site Visit Section
==================================*/

.sitevisit{

    position:relative;

    padding:120px 0;

    background:
        linear-gradient(
            rgba(0,0,0,.65),
            rgba(0,0,0,.65)
        ),
        url("images/sitevisit.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.site-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.site-container{

    position:relative;

    width:90%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1.3fr .7fr;

    gap:60px;

    align-items:center;

}

.site-left{

    color:#fff;

}

.site-left h2{

    font-size:58px;

    color:#D9A58B;

    line-height:1.1;

    margin-bottom:25px;

}

.site-left p{

    font-size:20px;

    line-height:1.8;

    max-width:650px;

    margin-bottom:35px;

}

.site-left ul{

    list-style:none;

}

.site-left li{

    margin-bottom:20px;

    font-size:19px;

}

.site-left i{

    color:#D9A58B;

    margin-right:12px;

}

.site-form{

    background:#fff;

    padding:45px;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.site-form h3{

    text-align:center;

    font-size:38px;

    margin-bottom:35px;

    color:#111;

}

.site-form input,

.site-form select{

    width:100%;

    padding:17px;

    margin-bottom:18px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

    outline:none;

}

.site-form input:focus,

.site-form select:focus{

    border-color:#D9A58B;

}

.site-form button{

    width:100%;

    padding:18px;

    background:#D9A58B;

    color:#000;

    border:none;

    border-radius:8px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.site-form button:hover{

    background:#C78C72;

}

@media(max-width:991px){

.site-container{

    grid-template-columns:1fr;

}

.site-left{

    text-align:center;

}

.site-left h2{

    font-size:42px;

}

.site-left p{

    margin:auto auto 30px;

}

.site-left ul{

    text-align:left;

    display:inline-block;

    margin-top:20px;

}

.site-form{

    margin-top:30px;

}

}
.thank-you{

    text-align:center;

    padding:40px 20px;

}

.thank-you i{

    font-size:75px;

    color:#2ecc71;

    margin-bottom:20px;

}

.thank-you h2{

    color:#111;

    font-size:34px;

    margin-bottom:15px;

}

.thank-you p{

    color:#555;

    font-size:17px;

    line-height:1.8;

    margin-bottom:30px;

}

.thank-you button{

    background:#D9A58B;

    color:#000;

    border:none;

    padding:16px 40px;

    border-radius:8px;

    font-size:18px;

    cursor:pointer;

}

.thank-you button:hover{

    background:#C78C72;

}
/*=========================
Mobile Floating Bar
==========================*/

.mobile-contact-bar{

    position:fixed;

    bottom:0;

    left:0;

    width:100%;

    height:70px;

    background:#111;

    display:none;

    justify-content:space-around;

    align-items:center;

    z-index:9999;

    box-shadow:0 -5px 20px rgba(0,0,0,.2);

}

.mobile-contact-bar a{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#fff;

    font-size:12px;

    transition:.3s;

}

.mobile-contact-bar i{

    font-size:22px;

    margin-bottom:6px;

}

.call-btn i{

    color:#D9A58B;

}

.whatsapp-btn i{

    color:#25D366;

}

.location-btn i{

    color:#D9A58B;

}

.enquiry-btn i{

    color:#D9A58B;

}

.mobile-contact-bar a:hover{

    background:#1b1b1b;

}

@media(max-width:768px){

.mobile-contact-bar{

    display:flex;

}

body{

    padding-bottom:70px;

}

}

.footer{

    background:black;

    color:#fff;

    padding:80px 20px 40px;

    position:relative;

}

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:url(images/pattern.png);

    opacity:.04;

}

.footer-container{

    position:relative;

    max-width:1200px;

    margin:auto;

    text-align:center;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-tagline{

    max-width:650px;

    margin:0 auto 35px;

    font-size:18px;

    line-height:1.8;

    color:#ddd;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:35px;

}

.footer-social a{

    width:46px;

    height:46px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#D9A58B;

    transition:.3s;

}

.footer-social a:hover{

    background:#D9A58B;

    color:#000;

}

.footer-contact{

    display:flex;

    justify-content:center;

    gap:50px;

    margin-bottom:30px;

    flex-wrap:wrap;

}

.footer-contact div{

    font-size:20px;

}

.footer-contact i{

    color:#D9A58B;

    margin-right:10px;

}

.footer-address{

    font-size:18px;

    max-width:900px;

    margin:auto;

    line-height:1.8;

    margin-bottom:50px;

}

.footer-address i{

    color:#D9A58B;

}

.footer-bottom{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:80px;

    margin-bottom:50px;

    flex-wrap:wrap;

}

.footer-qr img{

    width:130px;

}

.footer-qr span{

    display:block;

    margin-top:10px;

}

/* =========================
   RERA VERIFICATION
========================= */

.footer-rera{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;

    padding:25px 35px;

    border:1px solid rgba(217,165,139,.35);
    border-radius:16px;

    max-width:650px;
    margin:0 auto 50px;

    background:rgba(255,255,255,.03);
}

.rera-badge{
    width:90px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    border-radius:10px;

    padding:8px;
}

.rera-badge img{
    width:100%;
    max-width:75px;
    height:auto;
}

.rera-details{
    text-align:left;
}

.rera-label{
    display:block;

    color:#D9A58B;

    font-size:12px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:6px;
}

.rera-details h3{
    color:#fff;

    font-size:17px;
    font-weight:500;

    margin-bottom:5px;
}

.rera-details p{
    color:#fff;

    font-size:25px;
    font-weight:700;

    letter-spacing:1px;

    margin-bottom:10px;
}

.rera-details a{
    display:inline-flex;
    align-items:center;
    gap:7px;

    color:#D9A58B;

    font-size:14px;
    font-weight:500;

    text-decoration:none;

    transition:.3s;
}

.rera-details a:hover{
    color:#fff;
}

@media(max-width:600px){

    .footer-rera{
        width:100%;
        padding:20px 15px;

        gap:15px;

        text-align:left;
    }

    .rera-badge{
        width:70px;
        height:70px;

        flex-shrink:0;
    }

    .rera-badge img{
        max-width:58px;
    }

    .rera-label{
        font-size:10px;
        letter-spacing:1.5px;
    }

    .rera-details h3{
        font-size:14px;
    }

    .rera-details p{
        font-size:17px;
        word-break:break-word;
    }

    .rera-details a{
        font-size:12px;
    }

}

.footer-disclaimer{

    color:#bbb;

    line-height:2;

    font-size:14px;

    max-width:1100px;

    margin:auto;

}

.copyright{

    margin-top:40px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.1);

    color:#999;

}

/* Privacy Policy */

.privacy-page{
    margin-top:20px;
    padding:80px 0;
}

.privacy-page .container{
    max-width:1000px;
}

.privacy-page h1{
    text-align:center;
    color:#b07d17;
    font-size:48px;
    margin-bottom:20px;
}

.privacy-page h2{
    margin-top:40px;
    margin-bottom:15px;
    color:#111;
}

.privacy-page p,
.privacy-page li{
    font-size:17px;
    line-height:1.9;
    color:#555;
}

.privacy-page ul{
    margin-left:25px;
}

.footer-links{
    margin:30px 0 15px;
    text-align:center;
}

.footer-links a{
    color:#D9A58B;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
}



/* Privacy Policy page layout */

html,
body{
    margin:0;
    padding:0;
}

.privacy-footer{
    background:#000;
    color:#999;
    text-align:center;
    padding:20px 15px;
    font-size:14px;
    margin-top:auto;
}

.privacy-footer p{
    margin:0;
}