/* ==========================================
   TESTIMONIALS SECTION - STANDALONE CSS
   ========================================== */

.testimonials-section {
    background: #FFFFFF;
    padding: 100px 0;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
}

.testimonial-card {
    background: #F3F4F6;
    padding: 35px 30px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    border-color: #10B981;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFA500;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1A1A1A;
    margin-bottom: 25px;
    font-style: italic;
    flex: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #10B981;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #0A5C36;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.15rem;
    color: #1A1A1A;
    margin-bottom: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.author-info p {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin: 0;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #10B981;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
}

.testimonial-badge i {
    font-size: 1rem;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-box {
    background: linear-gradient(135deg, #0A5C36 0%, #10B981 100%);
    color: #FFFFFF;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-box p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        min-height: auto;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box {
        padding: 25px 20px;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
}

@media (max-width: 400px) {
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .stat-box {
        padding: 20px 15px;
    }
    
    .stat-box h3 {
        font-size: 1.8rem;
    }
}
