body {
    font-family: 'Poppins', sans-serif;
    background: #f1f5f9;
}

/* NAVBAR */
.navbar-custom {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin: 10px;
    padding: 10px 20px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 30px 30px;
}

/* FILTER BAR */
.filter-bar {
    background: white;
    padding: 15px;
    border-radius: 15px;
    margin-top: -40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CARDS */
.room-card {
    transition: 0.3s;
}

.room-card:hover {
    transform: translateY(-8px);
}

.card {
    border-radius: 20px;
    overflow: hidden;
}

.card img {
    height: 180px;
    object-fit: cover;
}

.price {
    font-size: 22px;
    font-weight: 600;
    color: #4f46e5;
}

.badge-available {
    background: #22c55e;
}

.badge-occupied {
    background: #ef4444;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

.srams-link {
    color: #0d6efd;
    text-decoration: none;
    transition: 0.3s;
}
.srams-link:hover {
    color: #0a58ca;
}

.room-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
}

.room-img:hover {
    transform: scale(1.05);
}




.property-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.room-img {
    height: 200px;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.price {
    font-size: 18px;
    margin-top: 5px;
}

.contact {
    font-size: 14px;
    color: #555;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.02);
}



