

/*=====================================
PROJECT DETAILS
======================================*/

.project-hero{
    position:relative;
    height:90vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.project-hero .hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.project-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.75));
}

.project-hero .container{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:700px;
    color:#fff;
}

.project-status{
    display:inline-block;
    background:#C89B3C;
    color:#fff;
    padding:10px 24px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:600;
}

.hero-content h1{
    font-size:70px;
    margin-bottom:20px;
    color:#fff;
}

.hero-content p{
    font-size:22px;
    margin-bottom:35px;
    color:#eee;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.btn{
    display:inline-block;
    padding:16px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn-gold{
    background:#C89B3C;
    color:#fff;
}

.btn-gold:hover{
    background:#184A2C;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#184A2C;
}
.project-overview{
    padding:100px 0;
    background:#fff;
}

.overview-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
    align-items:start;
}

.overview-grid h2{
    font-size:48px;
    margin-bottom:25px;
}

.overview-grid p{
    line-height:1.9;
    color:#666;
}

.project-facts{
    background:#184A2C;
    padding:40px;
    border-radius:18px;
    color:#fff;
}

.project-facts div{
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.project-facts div:last-child{
    border:none;
}

.project-facts h4{
    color:#C89B3C;
    margin-bottom:8px;
}
.amenities{
    padding:100px 0;
    background:#f8f8f8;
}

.amenity-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.amenity-grid div{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:15px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.amenity-grid div:hover{
    transform:translateY(-8px);
}

.amenity-grid i{
    font-size:45px;
    color:#C89B3C;
    margin-bottom:20px;
}
.master-plan{
    padding:100px 0;
}

.master-plan img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}
.floor-plans{
    padding:100px 0;
    background:#f8f8f8;
}

.plan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.plan-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.plan-card:hover{
    transform:translateY(-10px);
}

.plan-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.plan-card h4{
    padding:20px 25px 10px;
}

.plan-card p{
    padding:0 25px 25px;
}
.location-section{
    padding:100px 0;
}

.location-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.location-grid ul{
    list-style:none;
}

.location-grid li{
    padding:18px 0;
    border-bottom:1px solid #eee;
    font-size:18px;
}

.location-grid iframe{
    width:100%;
    height:450px;
    border:0;
    border-radius:15px;
}
.project-enquiry{
    padding:100px 0;
    background:#184A2C;
}

.project-enquiry form{
    background:#fff;
    padding:50px;
    border-radius:18px;
}

.project-enquiry input,
.project-enquiry textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
}

.project-enquiry button{
    width:100%;
}
@media(max-width:991px){

.hero-content h1{
font-size:46px;
}

.overview-grid,
.location-grid,
.plan-grid,
.amenity-grid{

grid-template-columns:1fr;

}

.project-hero{

height:70vh;

}

}