/* Testimonials Section Styles */

.testimonials {
    background: linear-gradient(180deg, #f8f9fa 0%, #e8edf2 100%);
    padding: 50px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.testimonials .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 25px;
}

.testimonials .section-badge i {
    color: #ffc107;
    font-size: 16px;
}

.testimonials .section-badge span {
    color: #f59e0b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.testimonials .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 15px;
    line-height: 1.2;
}

.testimonials .section-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Stars */
.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #ffc107;
    font-size: 16px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    flex: 1;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.author-avatar.blue {
    background: linear-gradient(135deg, #4a9eff, #00d9ff);
}

.author-avatar.cyan {
    background: linear-gradient(135deg, #00d9ff, #00f2fe);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a2942;
    margin-bottom: 2px;
}

.author-role {
    font-size: 10px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 70px 0;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials .section-title {
        font-size: 36px;
    }
    
    .testimonial-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .testimonials .section-title {
        font-size: 28px;
    }
}