.beturi_carousel {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.beturi_carousel p{
    color: #fff;
}

.beturi_carousel .splide__slide {
    text-align: left;
    min-height: 300px;
    padding: 60px 80px;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Background pentru fiecare slide */
.beturi_carousel .splide__slide:nth-child(1) {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.beturi_carousel .splide__slide:nth-child(2),
.beturi_carousel .splide__slide:nth-child(4) {
    background: linear-gradient(135deg, #1a4c96 0%, #0d2142 100%);
}

.beturi_carousel .splide__slide:nth-child(3),
.beturi_carousel .splide__slide:nth-child(5) {
    background: linear-gradient(135deg, #4c1a96 0%, #210d42 100%);
}

.beturi_carousel__title {
    color: white;
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 16px 0;
    font-family: "Barlow", sans-serif;
}

.beturi_carousel__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.beturi_carousel__button {
    background: #028A1B;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: none;
}

.beturi_carousel .splide__arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    opacity: 1;
}

.beturi_carousel .splide__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.beturi_carousel .splide__arrow svg {
    fill: white;
    width: 18px;
    height: 18px;
}

.beturi_carousel .splide__pagination {
    /* bottom: -40px;
    padding: 0;
    position: relative;
    margin-top: 20px; */
}

.beturi_carousel .splide__pagination__page {
    width: 16px;
    height: 6px;
    border-radius: 3px;
    background: #AEAEAE;
    margin: 0 6px;
    opacity: 1;
}

.beturi_carousel .splide__pagination__page.is-active {
    background: #FF6B35;
}


.beturi_carousel .beturi_carousel__button {
    font-size: 14px;
    color: #fff;
    text-decoration: none;

}

/* Responsive */
@media (max-width: 768px) {
    .beturi_carousel .splide__slide {
        padding: 40px 20px;
        flex-direction: column;

    }

    .beturi_carousel__title {
        font-size: 28px;
    }

    .beturi_carousel__description {
        font-size: 16px;
    }

    .beturi_carousel .splide__arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .beturi_carousel .splide__slide {
        padding: 30px 15px;
    }

    .beturi_carousel__title {
        font-size: 1.5rem;
    }

    .beturi_carousel__button {
        padding: 12px 24px;
        font-size: 0.9rem;
        color: #fff
    }
}


@media (max-width: 768px) {
    .beturi_carousel__container {
        max-width: 100%;
        padding: 0;
    }
}