/* =============================================== */
/* START OF SWIPER STYLE FIXES */
/* Generic styles for all custom swipers */
/* =============================================== */

/* * ADDED THIS RULE for the main swiper container
 * This adds 4rem of space at the bottom of the swiper
 * to make room for the pagination bars.
 */
:is(#inboundSwiper, #outboundSwiper, #vlogSwiper, #countryBusinessSwiper, #corporateCarousel) {
    padding-bottom: 4rem;
}

/* 1. Pagination Bars */
:is(#inboundSwiper, #outboundSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-pagination {
    position: absolute;
    /* * CHANGED THIS VALUE from -2.5rem to 1rem.
     * This places the pagination *inside* the 4rem padding
     * area we just added, instead of outside the container.
     */
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
    z-index: 10;
    cursor: pointer;
}

:is(#inboundSwiper, #outboundSwiper, #vlogSwiper, #destinationSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-pagination-bullet {
    width: 50px;
    height: 5px;
    border-radius: 3px;
    background: var(--primary-color);
    opacity: 0.2;
    transition: all 0.3s ease;
    margin: 0 4px;
    display: inline-block;
}

:is(#inboundSwiper, #outboundSwiper, #vlogSwiper, #destinationSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.05);
}

/* 2. Navigation Arrows (Prev/Next) */
:is(#inboundSwiper, #outboundSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-button-prev,
:is(#inboundSwiper, #outboundSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-button-next {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

:is(#inboundSwiper, #outboundSwiper, #vlogSwiper, #destinationSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-button-prev:hover,
:is(#inboundSwiper, #outboundSwiper, #vlogSwiper, #destinationSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* 3. Arrow Icon Styling (using Swiper's built-in ::after) */
:is(#inboundSwiper, #outboundSwiper, #vlogSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-button-prev::after,
:is(#inboundSwiper, #outboundSwiper, #vlogSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
}

/* 4. Arrow Positioning */
:is(#inboundSwiper, #outboundSwiper, #vlogSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-button-prev {
    left: 20px;
}

:is(#inboundSwiper, #outboundSwiper, #vlogSwiper, #countryBusinessSwiper, #corporateCarousel, #logoCarousel) .swiper-button-next {
    right: 20px;
}

/* =============================================== */
/* END OF SWIPER STYLE FIXES */
/* =============================================== */

/* =============================================== */
/* PARTNER LOGO SWIPER STYLES */
/* =============================================== */
.logoCarousel {
    padding-bottom: 0rem;
}

.partner-logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
}

.partner-logo-img {
    max-height: 240px;
    max-width: 100%;
    border-radius: 10px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo-img:hover {
    opacity: 1;
    border-radius: 10px;
    transform: scale(1.03);
}

/* =============================================== */
/* VLOG SWIPER SPECIFIC STYLES */
/* =============================================== */
#vlogSwiper .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 3px;
    background: var(--primary-color);
    opacity: 0.2;
    transition: all 0.3s ease;
    margin: 0 4px;
    display: inline-block;
}

#vlogSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.05);
}

/* =============================================== */
/* END OF VLOG SWIPER STYLES */
/* =============================================== */

/* =============================================== */
/* END OF PARTNER LOGO SWIPER STYLES */
/* =============================================== */
