/* Basit Kullanıcı Yorumları CSS */
.testimonials-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonials-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 50px 0px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    flex-shrink: 0;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.star {
    color: #fbbf24;
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 30px;
    font-style: italic;
    max-width: 600px;
    word-wrap: break-word;
    white-space: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.author-info h4 {
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    margin: 5px 0 0 0;
    color: #64748b;
    font-size: 0.9rem;
}

/* Manual Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.carousel-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3b82f6;
    transform: scale(1.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0px;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .testimonials-carousel {
        margin: 0;
        max-width: 95%;
    }
    
    .testimonial-card {
        padding: 40px 5px;
        margin: 0 10px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0;
        max-width: 300px;
        word-wrap: break-word;
    }
    
    .carousel-nav {
        margin-top: 25px;
        gap: 15px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 30px 5px;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .testimonials-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .testimonials-carousel {
        margin: 0;
        max-width: 98%;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .testimonial-card {
        padding: 35px 20px;
        margin: 0 5px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0;
        margin-bottom: 25px;
        max-width: 250px;
        word-wrap: break-word;
    }
    
    .testimonial-stars {
        margin-bottom: 20px;
    }
    
    .star {
        font-size: 1.2rem;
    }
    
    .carousel-nav {
        margin-top: 20px;
        gap: 12px;
    }
    
    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .testimonial-author {
        gap: 12px;
    }
}

/* Extra Small Devices (360px and down) */
@media (max-width: 360px) {
    .testimonials-section {
        padding: 25px 5px;
    }
    
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .testimonials-subtitle {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    .testimonials-carousel {
        margin: 0;
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 30px 15px;
        margin: 0;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        padding: 0;
        max-width: 200px;
        word-wrap: break-word;
    }
    
    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info p {
        font-size: 0.75rem;
    }
}
