

/* ---- Begin Trip ---- */
.trip-wrapper {
    padding: 200px 0 40px;
}
.trip-wrapper .swiper-slide-active {
    opacity: 1 !important;
}
.trip-wrapper .swiper-slide-prev , .trip-wrapper .swiper-slide-next {
    opacity: .6 !important;
}
.trip-wrapper .swiper-slide-duplicate,
.trip-wrapper .swiper-slide-duplicate-next,
.trip-wrapper .swiper-slide-duplicate-prev,
.trip-wrapper .swiper-slide-duplicate-active {
    opacity: 0;
}
.trip-wrapper .trip-content {
    position: relative;
    width: 80%;
    margin: 0 auto;
}
.trip-wrapper .trip-content .trip-next-btn, .trip-wrapper .trip-content .trip-prev-btn {
    max-width: 120px;
    cursor: pointer;
    position: absolute;
    top: 40%;
    z-index: 9;
}
.trip-wrapper .trip-content .trip-next-btn {
    right: 17%;
}
.trip-wrapper .trip-content .trip-prev-btn {
    left: 17%;
}
/* Pagination Styles */
.trip-wrapper .trip-content .swiper-pagination {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    margin: 20px 0 0;
}

.trip-wrapper .trip-content .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background: url(../../images/landing/slider.png);
    background-size: 100% 100%;
    border-radius: 50%;
    margin: 0 6px !important;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

.trip-wrapper .trip-content .swiper-pagination-bullet-active {
    background: url(../../images/landing/slider-active.png);
    background-size: 100% 100%;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Desktop specific styles */
.trip-wrapper .trip-content .trip-swiper-pagination {
    margin-top: 30px;
    position: relative;
    bottom: auto;
}

/* Mobile specific styles */
.trip-wrapper .trip-content .trip-swiper-pagination-mobile {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* Hover effects for desktop */
@media (hover: hover) and (pointer: fine) {
    .trip-wrapper .trip-content .swiper-pagination-bullet:hover {
        background: rgba(255, 255, 255, 0.6);
        transform: scale(1.1);
    }
}
.trip-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (orientation: portrait) {
    .trip-wrapper {
        padding: 120px 0;
    }
    .trip-wrapper .trip-content .trip-swiper-pagination {
        margin-top: 10px;
        scale: 0.5;
    }
    .trip-wrapper .title-block {
        padding-bottom: 0;
    }

    .trip-wrapper .trip-content .trip-next-btn {
        right: 10%;
    }
    .trip-wrapper .trip-content .trip-prev-btn {
        left: 10%;
    }
}

/* ---- End Trip ---- */
