.featured-properties{
    padding:100px 20px;
    background:#ffffff;
}

.property-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.property-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.property-card:hover{
    transform:translateY(-8px);
}

.property-image{
    position:relative;
    height:250px;
    overflow:hidden;
}

.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.property-card:hover img{
    transform:scale(1.08);
}

.property-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#D4AF37;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.property-content{
    padding:25px;
}

.property-content h3{
    margin:0;
    color:#0b2342;
}

.property-content p{
    color:#666;
    margin:12px 0;
}

.property-price{
    color:#D4AF37;
    font-size:26px;
    font-weight:700;
    margin-bottom:20px;
}

.property-btn{
    display:inline-block;
    background:#0b2342;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    text-decoration:none;
    transition:.3s;
}

.property-btn:hover{
    background:#D4AF37;
}

@media(max-width:991px){

.property-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.property-grid{
    grid-template-columns:1fr;
}

}