/* Carousel Styles for SlurryAM */

.carousel-section {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    padding: 4rem 0;
    color: white;
    overflow: hidden;
    position: relative;
}

.carousel-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.carousel-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 4rem;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.carousel-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 3rem;
    text-align: center;
}

.carousel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.carousel-content h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.carousel-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

.carousel-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-content ul li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.carousel-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00D9A3;
    font-weight: bold;
    font-size: 1.3rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    font-weight: bold;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-button:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Auto-play indicator */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #00D9A3;
    width: 0%;
    transition: width 0.1s linear;
}

.carousel-progress.active {
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-section {
        padding: 4rem 0;
    }

    .carousel-content {
        padding: 2rem;
    }

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

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

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

    .carousel-icon {
        font-size: 3rem;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
