/* ========================================
   AVIS GOOGLE COMPONENT
   ======================================== */

.google-reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.google-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(12, 192, 223, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.google-reviews-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.google-reviews-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.google-reviews-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.google-reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.google-rating-display {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.google-logo {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
}

.rating-stars {
    display: flex;
    margin-right: 0.75rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-right: 0.125rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-right: 0.5rem;
}

.rating-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.google-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #0cc0df);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #0cc0df);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.review-rating {
    display: flex;
    margin-bottom: 1rem;
}

.review-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(124, 58, 237, 0.2);
    font-family: serif;
    line-height: 0;
    margin-right: 0.5rem;
    float: left;
    margin-top: 0.5rem;
}

.google-widget-container {
    text-align: center;
    margin-top: 2rem;
}

.google-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #7c3aed, #0cc0df);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.google-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.google-cta i {
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .google-reviews-section {
        padding: 3rem 0;
    }
    
    .google-reviews-title {
        font-size: 2rem;
    }
    
    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .google-reviews-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .google-rating-display {
        padding: 0.75rem 1rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.6s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

/* Widget Google intégré */
.google-embedded-widget {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}