.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;
}

/* 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;
    text-shadow: none; /* Remove text shadow */
}

/* 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;
}

.property-content {
    padding: 20px;
}

.property-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

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

.property-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
}

.property-feature i {
    color: var(--icon-color);
}

.property-actions {
    text-align: center;
}

.property-actions .btn {
    width: 100%;
    padding: 10px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.property-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Banner Loader */
.banner-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
} 