/* Events Carousel Styles */
.events-carousel-wrapper {
    margin-top: 3rem;
    position: relative;
}

.events-swiper {
    padding: 1rem 0 3rem;
}

.event-card-carousel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-card-carousel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.event-carousel-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-carousel-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-carousel-date {
    font-size: 0.85rem;
    color: var(--secondary-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.event-carousel-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.event-carousel-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.event-carousel-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-carousel-location i {
    color: var(--secondary-cyan);
}

.event-carousel-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-cyan) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.event-carousel-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 109, 119, 0.4);
}

.event-carousel-cta i {
    transition: transform 0.3s ease;
}

.event-carousel-cta:hover i {
    transform: translateX(3px);
}

/* Custom navigation buttons for events carousel */
.events-nav-next,
.events-nav-prev {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.events-nav-next:hover,
.events-nav-prev:hover {
    background: white;
    color: var(--primary-teal);
}

.events-nav-next::after,
.events-nav-prev::after {
    font-size: 18px;
    font-weight: 700;
}

/* Custom pagination for events carousel */
.events-pagination {
    bottom: 0 !important;
}

.events-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.events-pagination .swiper-pagination-bullet-active {
    background: var(--primary-teal);
}