@media (max-width: 1200px) {
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-image {
        max-height: 350px;
    }
}

@media (max-width: 992px) {
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .slide-image {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: auto;
        min-height: 600px;
        border-radius: 0;
        margin-bottom: 2rem;
    }
    
    .slide {
        flex-direction: column-reverse;
        padding: 3rem 5%;
        text-align: center;
        justify-content: flex-end;
    }
    
    .content {
        max-width: 100%;
        padding: 1rem 0 2rem;
    }
    
    .slide-text {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .slide-footer {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-top: 1.5rem;
    }
    
    .image-container {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        width: 100%;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
    
    .slide-image {
        max-height: 250px;
        max-width: 80%;
    }
    
    .slider-controls {
        display: none;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .badge {
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.8rem;
    }
}

@media (max-width: 576px) {
    .slider-container {
        height: 200px;
    }
    
    .slide {
        padding: 2rem 1.5rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
        margin-top: 20px;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        top: 0px;
    }
    
    .slide-image {
        max-height: 200px;
    }
    
    .slide-indicators {
        justify-content: center;
        width: 100%;
    }
}

/* Mobile-specific animations */
@media (max-width: 768px) {
    
    .slide.active .content > * {
        animation: fadeInUp 0.6s ease-out both !important;
    }
    
    .slide.active .content .badge {
        animation-delay: 0.2s !important;
    }
    
    .slide.active .content .slide-title {
        animation-delay: 0.3s !important;
    }
    
    .slide.active .content .slide-text {
        animation-delay: 0.4s !important;
    }
    
    .slide.active .content .slide-footer {
        animation-delay: 0.5s !important;
    }
    
    .slide.active .image-container {
        animation: fadeInUp 0.8s ease-out 0.3s both !important;
    }
}