/* ====================================
   SECTION AVIS
   ==================================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #d4af37;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-name {
    font-weight: 600;
    color: #1a1a1a;
}

.review-location {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.stars {
    color: #d4af37;
    font-size: 1.2rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
}

/* ====================================
   BOUTONS AVIS GOOGLE
   ==================================== */

.google-reviews-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 2px solid #d4af37;
}

.google-review-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.google-icon {
    font-size: 1.3rem;
}
