/* Tùy chỉnh Hero Section */
.hero-section {
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1200');
    background-size: cover;
    background-position: center;
}

/* Ảnh sản phẩm */
.card-img-top {
    height: 220px;
    object-fit: cover;
}

/* Hiệu ứng Hover cho thẻ */
.realty-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.realty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

/* Tinh chỉnh nút Chi tiết */
.view-detail-btn {
    transition: all 0.3s;
}

.view-detail-btn:hover {
    background-color: #198754; /* Màu success của bootstrap */
    color: #fff;
}