/* Paket slider stilleri */
.package-slider {
    position: relative;
    overflow: hidden;
}

.package-slider__shape .shape {
    position: absolute;
    z-index: 0;
}

.package-slider__shape .shape--1 {
    top: 15%;
    left: 5%;
}

.package-slider__shape .shape--2 {
    top: 50%;
    left: 8%;
}

.package-slider__shape .shape--3 {
    top: 30%;
    right: 5%;
}

.package-slider__shape .shape--4 {
    bottom: 15%;
    right: 8%;
}

.package-slider__shape .shape--5 {
    bottom: 30%;
    left: 12%;
}

.package-slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.package-button-prev,
.package-button-next {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-button-prev:hover,
.package-button-next:hover {
    background: rgba(59, 130, 246, 0.3);
}

.package-pagination {
    width: auto;
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.package-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 5px;
}

.package-pagination .swiper-pagination-bullet-active {
    background: #3b82f6;
}