/* ==========================================================================
   STYLING SECTION TESTIMONI ORANG TUA
   ========================================================================== */

.testimonials-section {
    background-color: #f8fafc; /* Latar abu-abu sangat muda agar kartu putih menonjol */
    padding: 6rem 0;
    overflow: hidden;
}

/* Header Testimoni */
.testi-badge {
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
}

.testi-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

/* Container Slider Testimoni */
.testi-slider-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem 0.5rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Sembunyikan scrollbar di Firefox */
}
.testi-slider-container::-webkit-scrollbar {
    display: none; /* Sembunyikan scrollbar di Chrome/Safari */
}

/* Desain Kartu Testimoni Mewah */
.testi-card {
    /* Menjamin di desktop selalu 3 kartu berjejer (1x3) */
    flex: 0 0 calc(33.333% - 1rem);
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    scroll-snap-align: start;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.08);
}

/* Ikon Petik Besar Transparan di Latar */
.testi-quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.08);
    z-index: 0;
}

/* Bintang Rating */
.testi-stars {
    color: #fbbf24; /* Kuning Emas */
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Teks Ulasan */
.testi-text {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Area Profil Pembuat Ulasan */
.testi-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.testi-author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.testi-author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.2rem 0;
}

.testi-author-info span {
    font-size: 0.85rem;
    color: #64748b;
}

/* ==========================================================================
   RESPONSIVITAS MOBILE (HP & TABLET)
   ========================================================================== */
@media (max-width: 991.98px) {
    .testi-card {
        flex: 0 0 calc(50% - 0.75rem); /* Di Tablet jadi 2 kartu berjejer */
    }
}
@media (max-width: 767.98px) {
    .testi-title {
        font-size: 2rem;
    }
    .testi-card {
        flex: 0 0 85vw; /* Di HP jadi 1 kartu, sisanya mengintip di kanan */
        padding: 2rem 1.5rem;
    }
}
