/* Google Reviews Slider Styles */
.google-reviews-section {
    background: linear-gradient(135deg, #1a5490 0%, #0f3a63 100%);
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
}

.google-reviews-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.google-reviews-section .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.google-reviews-section .section-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.google-rating-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.google-rating-summary .rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #f39c12;
    line-height: 1;
}

.google-rating-summary .rating-stars {
    font-size: 1.5rem;
    color: #f39c12;
    margin: 0.5rem 0;
}

.google-rating-summary .rating-count {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.google-rating-summary .google-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #1a5490;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-rating-summary .google-link:hover {
    background: #f39c12;
    color: white;
    transform: translateY(-2px);
}

.reviews-slider-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.reviews-slider {
    display: flex;
    gap: 2rem;
    animation: slideLeft 30s linear infinite;
    width: fit-content;
}

.reviews-slider:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    min-width: 350px;
    max-width: 350px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a5490, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.review-rating {
    color: #f39c12;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    font-style: italic;
}

.review-source {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 0.85rem;
}

.review-source svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .google-reviews-section .section-header h2 {
        font-size: 2rem;
    }
    
    .reviews-slider {
        animation-duration: 40s;
    }
}
