:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --light-text: #ecf0f1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.property-slider-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.slider-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
    background-color: white;
}

.slider-image-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-image {
    height: 500px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 500px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.slider-info h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.slider-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.property-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.slider-info p {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

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

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .slider-card {
        height: auto;
        flex-direction: column;
    }
    
    .slider-image-container {
        height: 350px;
    }
    
    .slider-info {
        padding: 1rem;
    }
    
    .slider-nav {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .slider-card {
        height: auto;
        flex-direction: column;
    }
    
    .slider-image-container {
        height: 300px;
    }
    
    .slider-info {
        padding: 1.5rem;
    }
    
    .slider-nav {
        bottom: 1rem;
        right: 1rem;
    }
}