/* Core Variables & Resets */
:root {
    --primary-color: #0f172a;
    --accent-color: #3b82f6;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
}

.text-primary { color: var(--accent-color) !important; }
.bg-primary { background-color: var(--accent-color) !important; }
.btn-primary { background-color: var(--accent-color); border: none; }
.btn-primary:hover { background-color: #2563eb; }

/* Hero Section */
.hero-section {
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
}

.search-card {
    transform: translateY(30px);
}

/* Property Cards */
.property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.15)!important;
}

.property-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-img {
    transform: scale(1.05);
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(4px);
}

.price-tag {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
}