/* Activities Carousel Styles */
.activities-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.activitiesSwiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.activity-card-carousel {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card-carousel:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.activity-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card-carousel:hover .activity-image img {
    transform: scale(1.05);
}

.activity-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-info h3 {
    font-size: 23px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.activity-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
}

/* Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #194641;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #194641;
    color: white;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

.activities-prev {
    left: -60px;
}

.activities-next {
    right: -60px;
}

/* Responsive */
@media (max-width: 1024px) {
    .activities-prev {
        left: 10px;
    }

    .activities-next {
        right: 10px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}

/* Pagination Dots */
.swiper-pagination {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    opacity: 1;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #194641;
    width: 28px;
    border-radius: 5px;
}

.swiper-pagination-bullet:hover {
    background: #194641;
}

@media (max-width: 768px) {
    .activity-info {
        padding: 12px;
    }

    .activity-info h3 {
        font-size: 14px;
    }

    .activity-info p {
        font-size: 12px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .swiper-pagination-bullet-active {
        width: 24px;
    }
}
