/* ==========================
   Featured Properties
========================== */

.featured-properties{
    padding:100px 0;
    background:#f8f8f8;
}

.featured-properties h2{
    text-align:center;
    font-size:48px;
    margin-bottom:60px;
    color:#111;
    font-family:'Playfair Display', serif;
}

.property-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.property-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.property-card:hover{
    transform:translateY(-10px);
}

.property-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.property-info{
    padding:25px;
}

.property-info h3{
    margin:0;
    font-size:28px;
    color:#111;
}

.property-info p{
    color:#666;
    margin:15px 0;
}

.property-info a{
    display:inline-block;
    padding:12px 28px;
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
}

.property-info a:hover{
    background:#000;
    color:#fff;
}.price-tag{
    display:none !important;
}.property-buttons{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.property-buttons a{
    flex:1;
    text-align:center;
    padding:12px 18px;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;
}

.view-btn{
    background:#111827;
    color:#fff !important;
}

.book-btn{
    background:#D4AF37 !important;
    color:#111 !important;
    display:inline-block !important;
}

.book-btn:hover{
    background:#c99c10 !important;
}