.attraction-gallery-swiper {
    width: 100%;
    padding-bottom: 30px;
    /* Space for pagination */
}

.swiper-slide .gallery-slide-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (9/16 = 0.5625) */
}

.swiper-slide .gallery-slide-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images cover the area without distortion */
    object-position: center;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #dc3545;
    /* Bootstrap danger color to match theme */
}
.related-attractions-swiper {
    width: 100%;
    padding-bottom: 30px;
}

.swiper-slide .related-attraction-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.swiper-slide .related-attraction-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}