/* Platinum Theme Slider Styles */
.platinum-slider {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.platinum-slider .slide-content {
    position: relative;
    overflow: hidden;
}

.platinum-slider .slide-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.platinum-slider .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
}

.platinum-slider .slide-text {
    color: white;
}

.platinum-slider .slide-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.2;
}

.platinum-slider .slide-description {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.6;
}

.platinum-slider .slide-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.platinum-slider .slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Custom Splide controls for Platinum theme */
.platinum-slider .splide__arrow {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.platinum-slider .splide__arrow:hover:not(:disabled) {
    opacity: 1;
    transform: scale(1.1);
}

.platinum-slider .splide__arrow--prev {
    left: 1rem;
}

.platinum-slider .splide__arrow--next {
    right: 1rem;
}

.platinum-slider .splide__pagination {
    bottom: 1rem;
    padding: 0;
}

.platinum-slider .splide__pagination__page {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.platinum-slider .splide__pagination__page.is-active {
    background: white;
    transform: scale(1.2);
}

.platinum-slider .splide__pagination__page:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive styles */
@media (max-width: 768px) {
    .platinum-slider .slide-image {
        height: 300px;
    }
    
    .platinum-slider .slide-overlay {
        padding: 1.5rem;
    }
    
    .platinum-slider .slide-title {
        font-size: 1.5rem;
    }
    
    .platinum-slider .slide-description {
        font-size: 0.875rem;
    }
    
    .platinum-slider .splide__arrow {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .platinum-slider .splide__arrow--prev {
        left: 0.5rem;
    }
    
    .platinum-slider .splide__arrow--next {
        right: 0.5rem;
    }
}