.section-project-testimonial-slider {
    padding: var(--section-pad-y) 0;
    background-color: var(--midori-primary);
}

.testimonial-heading {
    margin-bottom: 50px !important;
    color: var(--text-title);
    letter-spacing: 0.5px;
}

.testimonial-swiper {
    max-width: 850px;
    margin: 0 auto;
    padding-bottom: 70px !important; /* Dành khoảng trống cho thanh pagination dẹt */
    overflow: hidden;
    position: relative;
}

/* Khung viền mảnh màu xám bao bọc cảm nhận */
.testimonial-card {
    border: 1px solid var(--text-grey);
    border-radius: var(--radius-card);
    padding: 60px 50px;
    background-color: #ffffff;
    box-sizing: border-box;
    width: 100%;
}

.testi-card-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

/* Ảnh đại diện hình tròn */
.testi-avatar, 
.testi-avatar-placeholder {
    width: 120px;
    height: 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: 50px;
    color: #cbd5e1;
    width: 50px;
    height: 50px;
}

.testi-content-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.testi-icon-quote {
    font-size: 70px;
    line-height: 0.8;
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-weight: 700;
    flex-shrink: 0;
}

.testi-body {
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
}

.testi-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--text-dark);
    margin-left: 35px; /* Thụt lề nhẹ để thẳng hàng với đoạn văn */
}

/* ==========================================================================
   STYLE THANH PAGINATION DẸT (KHỚP CHÍNH XÁC 100% ẢNH MẪU)
   ========================================================================== */
.testimonial-swiper .swiper-pagination {
    bottom: 10px !important;
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* Các thanh ngang dẹt phẳng màu beige mặc định */
.testimonial-swiper .swiper-pagination-bullet {
    width: 60px !important;
    height: 4px !important;
    border-radius: 0px !important; /* Cạnh vuông dẹt phẳng */
    background-color: #F2EFE6 !important; /* Mã màu beige sáng */
    opacity: 1 !important;
    margin: 0 !important;
    transition: var(--transition-base);
}

/* Thanh ngang dẹt kích hoạt màu rêu đậm */
.testimonial-swiper .swiper-pagination-bullet-active {
    background-color: var(--midori-accent-dark, #374426) !important;
}

/* Tối ưu hóa hiển thị Mobile */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 40px 25px;
    }
    .testi-card-inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .testi-quote-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .testi-icon-quote {
        line-height: 1;
    }
    .testi-name {
        margin-left: 0;
        text-align: center;
    }
}