/* ============================================
   TESTIMONIALS SECTION
   Professional Client Reviews Layout
   ============================================ */

.testimonials-section {
    padding: 80px 80px;
    background-color: #f8f9fa;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E42B8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonials-title {
    font-family: var(--mds-font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: #1E42B8;
    margin-bottom: 20px;
}

.testimonials-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual Testimonial Card */
.testimonial-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Quote Icon */
.testimonial-quote {
    font-size: 3rem;
    color: #1E42B8;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

/* Star Rating */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating .star {
    color: #FFA500;
    font-size: 1.1rem;
}

/* Review Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

/* Client Info */
.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E42B8, #1F3A5D);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-weight: 600;
    color: #1E42B8;
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Google Badge */
.testimonial-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 8px;
}

.testimonial-source img {
    width: 16px;
    height: 16px;
}

/* CTA Section */
.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonials-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background-color: #1E42B8;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.testimonials-cta-button:hover {
    background-color: #1E42B8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 94, 150, 0.3);
}

.testimonials-cta-button svg {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 40px;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 40px 20px;
    }

    .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }
}

/* Alternative: Carousel Style */
.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-carousel .testimonial-card {
    max-width: 100%;
}