
/* --- Trust Stats Section --- */
.trust-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    position: relative;
    margin-top: -50px; /* Chevauchement léger sur le header pour le style */
    z-index: 10;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.trust-stat h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.trust-stat p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0;
}

/* --- Carte Témoignage Moderne --- */
.review-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    height: 100%; /* Hauteur égale pour toute la ligne */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 36, 68, 0.1);
    border-top-color: var(--secondary-color);
}

/* Icône citation en arrière-plan décoratif */
.review-card::before {
    content: '\f10e'; /* FontAwesome Quote Right */
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(10, 36, 68, 0.03); /* Très discret */
}

.review-stars {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.review-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Footer de la carte (Auteur) */
.review-author {
    display: flex;
    align-items: center;
    margin-top: auto; /* Pousse vers le bas */
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.author-info span {
    font-size: 0.8rem;
    color: #999;
}

/* Google Widget Placeholder Stylisé */
.google-widget-box {
    background: white;
    border: 1px solid #eee;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.google-logo-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    opacity: 0.05;
    z-index: 0;
}
