/* Testimonials Section */
.testimonials {
    background: radial-gradient(circle at 70% 20%, rgba(255, 184, 0, 0.08), transparent 50%),
        white;
    padding: 8rem 0;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.rating-source {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-info strong {
    display: block;
    font-size: 1.05rem;
    color: var(--dark-bg);
    margin-bottom: 0.3rem;
}

.author-badge {
    font-size: 0.85rem;
    color: #666;
}

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

.rating-stars i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .google-rating {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
    }
}