.google-reviews-section {
    padding: 60px 0;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 0 auto;
}
.google-logo i {
    font-size: 2rem;
    color: #4285f4;
}
.rating-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rating-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}
.stars {
    color: #fbbc04;
    font-size: 1.2rem;
}
.stars i {
    margin: 0 2px;
}
.reviews-total {
    color: #666;
    font-size: 1rem;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.review-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.1);
    border-color: #4285f4;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}
.reviewer-info {
    flex: 1;
}
.reviewer-name {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}
.reviewer-rating {
    font-size: 0.9rem;
}
.google-icon {
    color: #4285f4;
    font-size: 1.5rem;
    opacity: 0.7;
}
.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}
.review-footer {
    display: flex;
    justify-content: flex-end;
}
.review-date {
    color: #999;
    font-size: 0.85rem;
}
.loading-spinner {
    text-align: center;
    padding: 40px;
    color: #666;
    grid-column: 1 / -1;
}
.loading-spinner i {
    margin-right: 10px;
    color: #4285f4;
}
.text-center {
    text-align: center;
    margin-top: 20px;
}
.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4285f4;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-google:hover {
    background: #3367d6;
    transform: translateY(-2px);
    color: white;
}
@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
}