/* ==========================================
PAGE DETAILS
========================================== */

.property-hero{
    padding:60px 0;
    background:#f8fafc;
}

.property-main-image{
    height:550px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.property-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.property-gallery{
    margin-top:15px;
}

.gallery-thumb{
    height:110px;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    transition:.3s;
}

.gallery-thumb:hover{
    transform:translateY(-4px);
}

.gallery-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.property-sidebar{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    position:sticky;
    top:100px;
}

.property-price{
    font-size:42px;
    font-weight:800;
    color:#0F3D5E;
}

.property-location{
    color:#666;
    margin-bottom:20px;
}

.status-badge{
    display:inline-block;
    background:#D4B15A;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    margin-bottom:20px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:25px 0;
}

.feature-box{
    background:#f7f8fb;
    border-radius:12px;
    padding:15px;
    text-align:center;
}

.feature-box i{
    font-size:25px;
    color:#0F3D5E;
    margin-bottom:8px;
}

.property-section{
    padding:80px 0;
}

.property-section h2{
    margin-bottom:25px;
    font-weight:700;
}

.property-description{
    line-height:1.9;
    color:#555;
}

.action-buttons{
    margin-top:25px;
}

.btn-visit{
    width:100%;
    background:#0F3D5E;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:12px;
    margin-bottom:15px;
}

.btn-reserve{
    width:100%;
    background:#D4B15A;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:12px;
}

.advisor-box{
    background:#0F3D5E;
    color:#fff;
    padding:40px;
    border-radius:20px;
    margin-top:50px;
}

.similar-section{
    padding:90px 0;
    background:#f8fafc;
}

.similar-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
    height:100%;
}

.similar-card:hover{
    transform:translateY(-10px);
}

.similar-image{
    height:230px;
}

.similar-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.similar-content{
    padding:20px;
}

.similar-price{
    font-size:24px;
    font-weight:700;
    color:#0F3D5E;
}

.cta-property{
    padding:100px 0;
    text-align:center;
    background:#102331;
    color:#fff;
}

.cta-property h2{
    font-size:42px;
    margin-bottom:20px;
}

@media(max-width:991px){

    .property-main-image{
        height:350px;
    }

    .property-price{
        font-size:32px;
    }

}