/**
 * Component: Service Testimonials (Cảm nhận từ Khách hàng)
 * Path: template-parts/sections/service-testimonials/style.css
 */

.service-testimonials-section {
    padding: var(--section-pad-y) 0 !important;
    background-color: #ffffff;
}

.service-testimonial-heading {
    font-family: 'Kodchasan', var(--font-serif), Georgia, serif !important;
    font-size: 32px !important;
    color: #374426 !important;
    font-weight: 500;
    margin-bottom: clamp(36px, 5vw, 54px) !important;
    letter-spacing: -0.3px;
    text-align: center;
}

.service-testimonial-swiper {
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 60px !important;
    overflow: hidden;
    position: relative;
}

/* Khung viền mảnh xám bao bọc cảm nhận */
.testimonial-card {
    border: 1px solid #d0d5dd;
    border-radius: 14px;
    padding: clamp(32px, 4vw, 56px) clamp(24px, 3.5vw, 48px);
    background-color: #ffffff;
    box-sizing: border-box;
    width: 100%;
}

.testi-card-inner {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.testi-avatar-wrap {
    flex-shrink: 0;
}

/* Ảnh đại diện hình tròn */
.testi-avatar, 
.testi-avatar-placeholder {
    width: clamp(90px, 10vw, 120px);
    height: clamp(90px, 10vw, 120px);
    border-radius: 50%;
    object-fit: cover;
    background-color: #f0f0f0;
}

.testi-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-avatar-placeholder span {
    font-size: 45px;
    color: #cbd5e1;
    width: 45px;
    height: 45px;
}

.testi-content-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

/* Khối nội dung ngoặc kép song song chữ */
.testi-quote-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.testi-icon-quote {
    font-size: clamp(50px, 6vw, 75px);
    line-height: 0.7;
    font-family: Georgia, serif;
    color: #111111;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: -4px;
}

.testi-body {
    font-family: var(--font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
    font-size: 16px !important;
    color: #222222;
    line-height: 1.65;
    font-weight: 400;
}

.testi-name {
    font-family: var(--font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111;
    margin-left: 28px;
}

/* Style Thanh Pagination Dẹt */
.service-testimonial-swiper .swiper-pagination {
    bottom: 5px !important;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.service-testimonial-swiper .swiper-pagination-bullet {
    width: 50px !important;
    height: 4px !important;
    border-radius: 0px !important;
    background-color: #F2EFE6 !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.service-testimonial-swiper .swiper-pagination-bullet-active {
    background-color: #374426 !important;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .service-testimonial-heading {
        font-size: 26px !important;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
    .testi-card-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .testi-content-wrap {
        text-align: center;
        align-items: center;
    }
    .testi-quote-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .testi-icon-quote {
        line-height: 1;
        margin-top: 0;
    }
    .testi-name {
        margin-left: 0;
        text-align: center;
        font-size: 15px !important;
    }
    .testi-body {
        font-size: 14.5px !important;
    }
}