/* Google Reviews Styling */
.google-reviews-section {
    background-color: var(--color-subtle);
    padding: 80px 0;
}

.google-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.google-logo {
    width: 24px;
    height: 24px;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rating-score {
    font-size: 48px;
    font-weight: 500;
    color: #202124;
    font-family: 'Lato', sans-serif;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    color: #fbbc04;
    font-size: 20px;
}

.rating-count {
    color: #5f6368;
    font-size: 14px;
    margin-top: 4px;
}

.google-review-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.google-review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 2px;
}

.review-date {
    font-size: 12px;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-stars i {
    color: #fbbc04;
    font-size: 14px;
}

.review-text {
    color: #202124;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid #e8eaed;
    font-size: 12px;
    color: #5f6368;
}

.google-icon-small {
    width: 16px;
    height: 16px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e8f5e9;
    color: #1e7e34;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.verified-badge i {
    font-size: 12px;
}

.view-all-reviews {
    text-align: center;
    margin-top: 40px;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4285f4;
    color: white;
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.btn-google-reviews:hover {
    background: #3367d6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
}

.btn-google-reviews i {
    font-size: 18px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .google-reviews-section {
        padding: 60px 0;
    }
    
    .google-rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .rating-score {
        font-size: 36px;
    }
    
    .google-review-card {
        padding: 20px;
    }
}

@media screen and (max-width: 450px) {
    .google-reviews-section {
        padding: 40px 0;
    }
    
    .review-text {
        font-size: 13px;
    }
}