/* ===== FEEDBACK ===== */

.feedback-section {
    padding: 10px 0 10px;
    /* 🔥 gradient orange */
    background: linear-gradient(
        180deg,
        rgba(247, 147, 30, 0.85) 0%,
        #f6a548 60%,
        #ffffff 100%
    );
}

.feedback-header {
    text-align: center;
    margin-bottom: 18px;
}

.feedback-header p {
    color: #f7931e;
    font-weight: 600;
    margin-top: 4px;
}

/* WRAPPER */
.feedback-wrapper {
    position: relative;
    overflow: hidden;
    /* 🔥 wrapper yang hidden, bukan slider */
}

.feedback-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 10px 0 14px;
    width: 100%;

    /* 🔥 HIDE SCROLLBAR */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge lama */
    -webkit-overflow-scrolling: touch;
}

.feedback-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

/* CARD */
.feedback-card {
    flex: 0 0 calc(33.333% - 16px);
    /* 🔥 kunci */
    min-width: 0;

    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    /* box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15); */
    box-shadow: none;
    overflow: hidden;
    position: relative;
    min-height: 120px;
}

.feedback-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.feedback-card p {
    font-size: 13px;
    opacity: 0.8;
}

/* ===== FEEDBACK ROW ===== */
.feedback-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* avatar kiri */
.feedback-row img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* teks kanan */
.feedback-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feedback-text h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* 🔥 nama max 1 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* komentar */
.feedback-comment {
    margin: 0;
    font-size: 13px;
    opacity: 0.75;
    line-height: 1.35;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 🔥 komentar max 2 baris */
    -webkit-box-orient: vertical;
    /* overflow: hidden; */
    font-style: italic;

    overflow: visible;
    white-space: normal;
}

.feedback-text p {
    margin: 0;
    font-size: 13px;
    opacity: 0.75;
    line-height: 1.35;
}

/* ===== FEEDBACK NAV BOTTOM ===== */
.feedback-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 0px;
    /* 🔥 lebih dekat */
}

/* .fb-btn2 {
            background: transparent;
            border: none;
            font-size: 22px;
            cursor: pointer;
            color: #111;
            transition: 0.2s ease;
        } */

.fb-btn2 {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transition: all 0.25s ease;
}

.fb-btn2:first-child {
    background: white;
}

.fb-btn2:last-child {
    background: white;
    /* color: white; */
}

.fb-btn2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* BUTTON */
.fb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f7931e;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.fb-prev {
    left: -10px;
}

.fb-next {
    right: -10px;
}

/* UNTUK LOGO PARTNER */
.client-section {
    /* background: linear-gradient(to bottom, #f6b24c, #fff); */
    padding: 5px 0;
    text-align: center;
}

.logo-slider {
    overflow: hidden;
    position: relative;

    /* fade kiri kanan */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation: scrollLeft 20s linear infinite;
    /* animation: scrollLeft 10s linear infinite; lebih cepat */
    /* animation: scrollLeft 30s linear infinite; lebih lambat */
}

.logo-track img {
    height: 80px;
    opacity: 0.8;
    transition: 0.3s;
}

.logo-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* ANIMASI KE KIRI */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
