.section-testimonials {
    background: #ffffff;
    padding: 60px 0 30px 0;
}
.section-testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-head {
    text-align: center;
    margin-bottom: 40px;
}
.section-head .kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--barik-50);
    color: var(--barik-600);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.section-head .kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--barik-600);
}
.section-head h2 {
    margin: 14px 0 10px;
    font-size: 28px;
    letter-spacing: -0.03em;
}
.section-head h2 span {
    color: var(--barik-600);
}
.section-head .sub {
    max-width: 520px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-muted);
}
.testimonials-wrapper {
    margin-top: 20px;
}
.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 20px 20px 18px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--barik-100);
    background: var(--bg-soft);
    flex-shrink: 0;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.testimonial-identity {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testimonial-name {
    font-size: 15px;
    font-weight: 600;
}
.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}
.testimonial-company {
    font-size: 12px;
    font-weight: 600;
    color: var(--barik-600);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.testimonial-body {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 16px;
    position: relative;
}
.testimonial-body::before {
    content: "\201C";
    position: absolute;
    left: -6px;
    top: -12px;
    font-size: 32px;
    color: var(--barik-100);
    z-index: -1;
}
.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    position: absolute;
    bottom: 5px;
}
.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.rating-star {
    font-size: 13px;
    color: #e5e7eb;
}
.rating-star.filled {
    color: #facc15;
    font-size: 20px;
}
.rating-label {
    margin-left: 6px;
    font-weight: 500;
    color: var(--text-main);
}
.testimonial-badge {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--bg-soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
/* OwlCarousel overrides for this section */

.section-testimonials .owl-carousel .owl-stage {
    display: flex;
}
.section-testimonials .owl-carousel .owl-item {
    padding: 8px 6px 12px;
}
.section-testimonials .owl-theme .owl-nav {
    margin-top: 12px;
    position: absolute;
    top: -64px;
    right: 0;
    display: flex;
    gap: 8px;
}
.section-testimonials .owl-theme .owl-nav button.owl-prev, .section-testimonials .owl-theme .owl-nav button.owl-next {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    background: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted) !important;
    transition: all 0.18s ease;
}
.section-testimonials .owl-theme .owl-nav button.owl-prev:hover, .section-testimonials .owl-theme .owl-nav button.owl-next:hover {
    border-color: var(--barik-600);
    background: var(--barik-50) !important;
    color: var(--barik-600) !important;
}
.section-testimonials .owl-theme .owl-nav button span {
    line-height: 1;
}
.section-testimonials .owl-theme .owl-dots {
    margin-top: 18px;
}
.section-testimonials .owl-theme .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 4px 4px;
    background: #e5e7eb;
    transition: all 0.18s ease;
}
.section-testimonials .owl-theme .owl-dots .owl-dot.active span {
    width: 18px;
    border-radius: 999px;
    background: var(--barik-600);
}
.section-testimonials .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--barik-400);
}
/* Responsive */

@media (max-width: 991px) {
    .section-testimonials {
        padding: 56px 16px 72px;
    }
    .section-testimonials .owl-theme .owl-nav {
        position: static;
        justify-content: center;
        margin-bottom: 4px;
    }
}
@media (max-width: 640px) {
    .section-head h2 {
        font-size: 22px;
    }
    .section-head .sub {
        font-size: 13px;
    }
    .testimonial-card {
        padding: 18px 18px 16px;
    }
}
.owl-carousel .owl-stage {
    display: flex !important;
}
.owl-carousel .owl-item {
    flex: 0 0 auto !important;
}
.section-head-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}
.btn-add-testimonial {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: #0d6efd;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .1s ease, box-shadow .1s ease;
}
.btn-add-testimonial:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, .25);
}
.bt-link-all:hover {
    color: var(--barik-800);
    border-color: rgba(161, 20, 20, 0.5);
    transform: translateY(-1px);
}
.bt-link-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--barik-700);
    text-decoration: none;
    padding-bottom: 2px;
    border: 1px solid rgba(161, 20, 20, 0.2);
    border-top-color: rgba(161, 20, 20, 0.2);
    border-right-color: rgba(161, 20, 20, 0.2);
    border-bottom-color: rgba(161, 20, 20, 0.2);
    border-left-color: rgba(161, 20, 20, 0.2);
    transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    text-transform: capitalize;
}
