/* Section Avis Google - Widget Officiel */
.google-reviews-embed {
    max-width: 900px;
    margin: 0 auto;
}

/* Container principal du widget */
.google-widget-container {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

/* Box CTA Google */
.google-cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.google-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.google-logo i {
    font-size: 2.5rem;
    color: white;
}

.google-cta-box h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.google-cta-box > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Boutons CTA */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-view-reviews,
.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-view-reviews {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
}

.btn-view-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(66, 133, 244, 0.4);
}

.btn-write-review {
    background: white;
    color: #34a853;
    border: 2px solid #34a853;
}

.btn-write-review:hover {
    background: #34a853;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(52, 168, 83, 0.3);
}

/* Badge de confiance */
.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
    margin-top: 1.5rem;
}

.trust-badge i {
    color: #34a853;
    font-size: 1.2rem;
}

/* Iframe Google Maps */
.google-map-embed {
    margin: 2rem 0;
}

/* Instructions */
.google-instructions {
    margin-top: 2rem;
}

.instruction-card {
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    border-radius: 20px;
    padding: 2.5rem;
    border-left: 5px solid #34a853;
}

.instruction-card i {
    font-size: 2.5rem;
    color: #34a853;
    margin-bottom: 1rem;
}

.instruction-card h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.instruction-card ol {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding-left: 1.5rem;
    color: #555;
    line-height: 2;
}

.instruction-card ol li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.instruction-card ol li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #34a853;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}

.btn-learn-more:hover {
    background: #2d8e47;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .google-widget-container {
        padding: 2rem 1.5rem;
    }
    
    .google-cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-view-reviews,
    .btn-write-review {
        width: 100%;
        justify-content: center;
    }
    
    .instruction-card {
        padding: 1.5rem;
    }
    
    .instruction-card h4 {
        font-size: 1.2rem;
    }
    
    .instruction-card ol {
        font-size: 0.95rem;
    }
}