/* Google Reviews Styles */
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.google-rating-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.google-rating-link:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.rating-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.rating-number {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #ffa500;
    font-size: 1em;
}

.rating-count {
    font-size: 0.9em;
    color: #666;
    margin-left: 4px;
}

/* Header/Navbar Integration */
.header .google-rating {
    font-size: 0.9em;
}

.header .rating-number {
    font-size: 1em;
}

.header .rating-stars i {
    font-size: 0.9em;
}

/* Footer Integration */
.footer .google-rating {
    justify-content: center;
}

/* Hero Section Integration */
.hero-section .google-rating {
    margin-top: 0px;
}

.hero-section .rating-number {
    font-size: 1.2em;
    color: var(--color-accent);
}

.hero-section .rating-count {
    color: var(--color-accent)
}

/* Testimonials Section Integration */
.testimonials-section .google-rating {
    margin-bottom: 24px;
    justify-content: center;
}

.testimonials-section .rating-number {
    font-size: 1.6em;
}

.testimonials-section .rating-stars i {
    font-size: 1.2em;
}

/* Card/Widget Style */
.google-rating-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.google-rating-widget:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.google-rating-widget .google-rating {
    flex-direction: column;
    gap: 12px;
}

.google-rating-widget .rating-number {
    font-size: 2em;
    color: #4285f4;
}

.google-rating-widget .rating-stars {
    justify-content: center;
}

.google-rating-widget .rating-stars i {
    font-size: 1.4em;
}

/* Responsive */
@media (max-width: 768px) {
    .google-rating {
        font-size: 0.9em;
    }
    
    .hero-section .google-rating {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .google-rating-widget .rating-number {
        font-size: 1.6em;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.google-rating {
    animation: fadeInUp 0.6s ease-out;
}

/* Google Colors */
.google-rating-google-style .rating-number {
    color: #4285f4;
}

.google-rating-google-style .rating-count {
    color: #5f6368;
}
