/* Testimonials Section */
.testimonials-section {
    padding: 1rem 0;
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.testimonial-header {
    margin-bottom: 1rem;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: #5f6368;
}

.testimonial-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brand-primary-dark);
    margin-bottom: 1rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.8rem;
}

.rating-score {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--black);
    @media (max-width: 768px) {
        font-size: 1rem;
    }
}

.review-count {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Review Card */
.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary-dark);
    margin: 0;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.review-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    @media (max-width: 768px) {
        font-size: 0.8rem;
    }
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--brand-primary);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonial-title {
        font-size: 1.8rem;
    }

    .review-card {
        padding: 1rem;
    }
}