.testimonial-content-sld {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px 20px;
    background: #fff;
}

.md-flex-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Hiệu ứng 2 vòng tròn trang trí ảnh */
.testimonial-image-part {
    position: relative;
    flex: 0 0 375px;
    z-index: 1;
}

.testimonial-image-part::before {
    content: "";
    position: absolute;
    width: 380px; height: 380px;
    background: #fdb913; /* Citrus Yellow */
    opacity: 0.1;
    border-radius: 50%;
    right: -100px; top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.testimonial-image-part::after {
    content: "";
    position: absolute;
    width: 320px; height: 320px;
    background: #ff812e; /* Primary Color */
    border-radius: 50%;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    z-index: -2;
}

.testimonial-image-part img {
    border-radius: 40px;
    width: 100%;
    display: block;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.1);
}

/* Nội dung bên phải */
.testimonial-text-part {
    flex: 1;
    min-width: 320px;
}

.text-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.text-header h4 {
    font-size: 34px;
    color: #ff812e;
    margin: 0;
    font-weight: 700;
}

.text-header span {
    color: #fdb913;
    font-size: 18px;
    font-weight: 600;
}

/* Filter Quote màu cam chủ đạo */
.quote-icon img {
    width: 65px;
    filter: invert(68%) sepia(50%) saturate(4529%) hue-rotate(346deg) brightness(103%) contrast(101%);
}

.desc {
    font-size: 24px;
    line-height: 1.5;
    color: #333;
    font-style: italic;
    margin-bottom: 25px;
}

.stars {
    color: #fdb913;
    font-size: 18px;
}

/* Nút bấm Swiper */
.testimonial-nav {
    position: relative;
    margin-top: 20px;
    height: 50px;
}
.swiper-button-next, .swiper-button-prev {
    color: #ff812e !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .md-flex-container { flex-direction: column; text-align: center; gap: 30px; }
    .testimonial-image-part::before, .testimonial-image-part::after { display: none; }
    .testimonial-image-part { flex: 0 0 auto; max-width: 300px; }
    .text-header { flex-direction: column; align-items: center; gap: 10px; }
}