.testimonials-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-section .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.testimonials-section .section-title span {
    color: var(--secondary-color);
}

.testimonials-section .section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
}

.testimonials-swiper {
    padding: 80px 10px 60px; /* Reduced bottom padding since dots are gone */
    width: 100%;
    overflow: visible !important; /* Critical for overlapping avatars */
}

.testimonials-swiper .swiper-wrapper {
    overflow: visible !important;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    overflow: visible !important;
}

.testimonial-card {
    background: #0d1b11; /* Dark Greenish like sample */
    padding: 70px 30px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    color: #fff;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-avatar {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    font-family: serif; /* More classic quote look */
}

.quote-left {
    top: 25px;
    left: 25px;
}

.quote-right {
    bottom: 25px;
    right: 25px;
}

.testimonial-content {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    color: #e2e8f0;
    margin: 20px 0 30px;
    position: relative;
    font-weight: 300;
}

.testimonial-content::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    margin: 25px auto 0;
    opacity: 0.5;
}

.testimonial-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Swiper custom */
/* Google Widget Button */
.google-reviews-widget {
    text-align: center;
    margin-top: 50px;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: #fff;
    color: #1a1a40;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid #eee;
}

.google-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.google-btn img {
    width: 25px;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .testimonials-section .section-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonial-card {
        padding: 60px 20px 30px;
    }
    .testimonials-swiper {
        padding: 60px 0 60px;
    }
}
