/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Property Cards */
.property-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.property-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a5298;
}

.property-features {
    padding: 10px 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.property-features i {
    color: #2a5298;
    width: 20px;
}

/* Search Box */
.search-box {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
}