.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f4f4f4;
}
.slider-container-bottom {
    width: 100%;
    height: 36px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgb(244 244 244) 100%
    );
    margin-top: -6px;
}
.slides-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.slide-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vh;
    min-height: 150px;
    max-height: 300px;
    z-index: 5;
    margin-bottom: -1px;
    pointer-events: none;
}

.waves {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;

    padding-bottom: 30px;
    padding-top: 50px;
    text-align: center;
    z-index: 10;

    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.slide-title {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 26px;
    margin: 0;
    color: #2c3e50;
}

.slide-desc {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 16px;
    margin-top: 8px;
    color: #555;
}

.btn-action {
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    transition: transform 0.2s;
}
.btn-action:hover {
    transform: scale(1.05);
    background: #ffb400;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 20;
    transition: 0.3s;
}
.nav-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}
.prev {
    left: 20px;
}
.next {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-container {
        height: 500px;
    }
    .waves-container {
        height: 20vh;
        min-height: 120px;
    }
    .slide-title {
        font-size: 24px;
    }
    .slide-desc {
        font-size: 14px;
    }
}
