/* Testimonials Section Styles */
.testimonials-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Rating Stars - Style Trustpilot */
.testimonial-rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}


.testimonial-rating i {
    background-color: #00b67a; /* Trustpilot green */
    color: white;
    padding: 3px;
    font-size: 0.9rem;
    width: 22px;
    height: 22px;
    margin-right: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.testimonial-rating i.fas.fa-star-half-alt {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #00b67a 50%, #e1e1e6 50%);
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Suppression de l'étoile isolée */

/* Suppression du texte Trustpilot */

/* Testimonial Content */
.testimonial-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

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

/* Trust Badges Section */
.trust-badges {
    margin-top: 50px;
}

.trust-badge {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge i {
    font-size: 2rem;
    color: #FFD166; /* Brand color */
    margin-bottom: 15px;
}

.trust-badge h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.trust-badge p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .trust-badge {
        margin-bottom: 15px;
    }
}
