*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f5f7fa;
    font-family:'Segoe UI',sans-serif;
    color:#2d3436;
    line-height:1.6;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
    padding:30px 0;
}

.property-header{
    margin-bottom:25px;
}

.property-header h1{
    font-size:38px;
    margin-bottom:10px;
    color:#1f2937;
}

.price{
    font-size:34px;
    font-weight:bold;
    color:#FF5A5F;
    margin-bottom:10px;
}

.location{
    color:#666;
    font-size:16px;
}

.property-slider{
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    margin-bottom:30px;
}

.property-slider img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}

.content-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
}

.card{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.card h2{
    margin-bottom:20px;
    color:#111827;
}

.features{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.feature{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:17px;
}

.feature i{
    color:#2563eb;
    width:25px;
}

.btn-whatsapp{
    display:block;
    text-align:center;
    margin-top:15px;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:15px;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

.btn-whatsapp:hover{
    background:#1da851;
}

.back-link{
    display:inline-block;
    margin-top:30px;
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
}

.swiper-button-next,
.swiper-button-prev{
    color:white;
}

.swiper-pagination-bullet-active{
    background:white;
}

@media(max-width:900px){

    .content-grid{
        grid-template-columns:1fr;
    }

    .property-slider img{
        height:350px;
    }

    .property-header h1{
        font-size:28px;
    }

    .price{
        font-size:28px;
    }
}