.filter-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.no-results {
    text-align: center;
    padding: 50px 0;
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 50px 0;
}

/* Property Card Styles */
.property-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    margin-bottom: 30px;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF8C00;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.property-feature span,
.form-label,
.results-count,
h2, h3, h4, h5,
p,
.no-results h3,
.no-results p {
}

/* Add CSS for the property type badge */
.property-type-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(255, 140, 0, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.property-type {
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

.property-type i {
    margin-left: 5px;
    color: #FF8C00;
}

/* Update property price to have white text on dark background */
.property-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8) !important; /* Dark background */
    color: white !important; /* White text */
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
}

/* Override hover effect to keep white text */
.property-card:hover .property-price {
    background: rgba(0, 0, 0, 0.9) !important; /* Slightly darker on hover */
    color: white !important;
}

/* Footer styling - match main CSS */
footer.footer {
    background: var(--card-bg-color);
    color: var(--text-color);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.05;
}

footer.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

footer.footer p {
    color: var(--text-muted);
    line-height: 1.8;
}

footer.footer .social-links {
    display: flex;
    gap: 1rem;
}

footer.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

footer.footer .contact-info i {
    color: var(--primary-color);
    margin-left: 0.5rem;
} 