/* WhatsApp Reviews Section */
.whatsapp-reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.whatsapp-reviews-section h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2E4057;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 800; /* ExtraBold */
}

/* Carousel Container */
.whatsapp-carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: #DFECF5; /* нежный фон вместо белого */
}

.whatsapp-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 500%; /* 5 slides * 100% */
}

.carousel-slide {
    min-width: 20%; /* 100% / 5 slides */
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: #DFECF5; /* фон там, где нет картинки */
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

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

.dot.active {
    background: #25D366;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(37, 211, 102, 0.7);
    transform: scale(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-reviews-section {
        padding: 40px 0;
    }
    
    .whatsapp-reviews-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .whatsapp-carousel-container {
        max-width: 90%;
        border-radius: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-slide img {
        max-height: 500px;
    }
}

/* Auto-play indicator */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #25D366;
    transition: width 0.1s ease;
    z-index: 5;
}
