.carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.carousel-container:first-child {
    border-radius: 0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-content {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: var(--spacing-xl);
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.carousel-content h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.carousel-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Navigation buttons removed - using swipe gestures instead */

.carousel-indicators {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 2;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Tablet */
@media (max-width: 1024px) {
    .carousel-wrapper {
        height: 450px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .carousel-wrapper {
        height: 350px;
    }

    .carousel-content {
        padding: var(--spacing-lg);
        max-width: 90%;
    }

    .carousel-content h3 {
        font-size: 1.5rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .carousel-wrapper {
        height: 300px;
    }

    .carousel-content {
        padding: var(--spacing-md);
        max-width: 95%;
    }

    .carousel-content h3 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }

    .carousel-content p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .carousel-indicator {
        width: 10px;
        height: 10px;
    }

    .carousel-indicator.active {
        width: 24px;
    }
}

