/* ================================================
   FEATURED PROPERTIES SLIDESHOW - Zambian Theme
   ================================================ */

.featured-slideshow {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.featured-slideshow-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.featured-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-primary), var(--luxury-accent), var(--luxury-primary));
}

.slideshow-header {
    text-align: center;
    margin-bottom: 50px;
}

.slideshow-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--luxury-text);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--luxury-primary), var(--luxury-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slideshow-header p {
    font-size: 1.2rem;
    color: var(--luxury-text-light);
    font-weight: 400;
}

.slideshow-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.slideshow-wrapper {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.slideshow-slide {
    min-width: 100%;
    display: none;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slideshow-slide.active {
    display: flex;
    opacity: 1;
}

.slideshow-slide-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 500px;
    background: white;
}

.slideshow-image {
    position: relative;
    overflow: hidden;
    background: var(--luxury-gray);
}

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

.slideshow-slide.active .slideshow-image img {
    transform: scale(1.05);
}

.slideshow-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--luxury-accent), var(--luxury-accent-light));
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

.slideshow-heart {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.5rem;
    z-index: 2;
}

.slideshow-heart:hover {
    background: var(--luxury-accent);
    color: white;
    transform: scale(1.15);
}

.slideshow-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.slideshow-price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--luxury-primary), var(--luxury-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.slideshow-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-text);
    margin-bottom: 15px;
    font-family: var(--font-display);
    line-height: 1.2;
}

.slideshow-location {
    font-size: 1.1rem;
    color: var(--luxury-text-light);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slideshow-details {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.slideshow-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--luxury-text);
    font-weight: 600;
    font-size: 1rem;
}

.slideshow-description {
    color: var(--luxury-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.slideshow-actions {
    display: flex;
    gap: 15px;
}

.slideshow-btn-primary {
    background: linear-gradient(135deg, var(--luxury-primary), var(--luxury-primary-dark));
    color: white;
    padding: 16px 35px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
}

.slideshow-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 95, 63, 0.4);
}

.slideshow-btn-secondary {
    background: transparent;
    color: var(--luxury-primary);
    padding: 16px 35px;
    border: 2px solid var(--luxury-primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slideshow-btn-secondary:hover {
    background: var(--luxury-primary);
    color: white;
    transform: translateY(-3px);
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--luxury-text);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slideshow-btn:hover {
    background: linear-gradient(135deg, var(--luxury-primary), var(--luxury-accent));
    color: white;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(26, 95, 63, 0.4);
}

.slideshow-btn-prev {
    left: 10px;
}

.slideshow-btn-next {
    right: 10px;
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slideshow-dot.active {
    background: linear-gradient(135deg, var(--luxury-primary), var(--luxury-accent));
    width: 30px;
    border-radius: 6px;
    transform: scale(1.2);
}

.slideshow-dot:hover {
    background: var(--luxury-accent);
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slideshow-slide-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .slideshow-image {
        height: 300px;
    }
    
    .slideshow-info {
        padding: 40px;
    }
    
    .slideshow-container {
        padding: 0 50px;
    }

    .featured-slideshow-inner {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .slideshow-container {
        padding: 0 40px;
    }

    .featured-slideshow-inner {
        padding: 0 20px;
    }
    
    .slideshow-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .slideshow-btn-prev {
        left: 5px;
    }
    
    .slideshow-btn-next {
        right: 5px;
    }
    
    .slideshow-info {
        padding: 30px;
    }
    
    .slideshow-price {
        font-size: 2rem;
    }
    
    .slideshow-title {
        font-size: 1.5rem;
    }
    
    .slideshow-actions {
        flex-direction: column;
    }
    
    .slideshow-btn-primary,
    .slideshow-btn-secondary {
        width: 100%;
    }
}

/* Featured Grid for Multiple Properties */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-grid .property-card {
    margin-bottom: 0;
}

/* Auto-play indicator */
.slideshow-container::after {
    display: none;
}

