.slider-container {
    position: relative;
    width: 100%;
    margin: 40px auto;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.swiper {
    width: 100%;
    height: 70vh;
}

.swiper-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}


.swiper-slide-active .slide-image {
    transform: scale(1.05);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.slide-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
}

.slide-button {
    display: inline-block;
    padding: 14px 32px;
    background: #ff5e7d;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 94, 125, 0.4);
}

.slide-button:hover {
    background: #ff7a95;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 94, 125, 0.5);
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .swiper {
        height: 50vh;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        padding: 20px;
    }
    
    .slide-title {
        font-size: 1.7rem;
    }
    
    .slide-description {
        display: none;
    }
    
    .slide-button {
        padding: 12px 25px;
    }
}