/* ==========================================================================
   TNB FAQ SECTION (Modern Accordion)
   ========================================================================== */
.tnb-faq-section {
    padding: 100px 0;
    background-color: #F8FAFD;
}

.tnb-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.tnb-faq-header .sub-title {
    color: #3764EB;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.tnb-faq-header .title {
    color: #142441;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tnb-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Accordion Item Styling */
.tnb-faq-item {
    background: #FFFFFF;
    border: 1px solid #EAEFEF;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.tnb-faq-item:hover {
    border-color: #3764EB;
    box-shadow: 0 10px 25px rgba(55, 100, 235, 0.08);
}

/* Pertanyaan (Summary) */
.tnb-faq-title {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Arimo', sans-serif;
    color: #142441;
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Menghilangkan panah default bawaan browser */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.tnb-faq-title::-webkit-details-marker {
    display: none;
    /* Untuk Safari */
}

/* Ikon Plus/Minus Khusus */
.tnb-faq-title::after {
    content: '\002B';
    /* Unicode untuk tanda plus (+) */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    color: #3764EB;
    transition: transform 0.3s ease;
}

/* Perubahan saat Accordion Terbuka */
.tnb-faq-item[open] {
    border-color: #3764EB;
}

.tnb-faq-item[open] .tnb-faq-title {
    background-color: rgba(55, 100, 235, 0.03);
    color: #3764EB;
    border-bottom: 1px solid #EAEFEF;
}

.tnb-faq-item[open] .tnb-faq-title::after {
    content: '\2212';
    /* Unicode untuk tanda minus (-) */
    transform: rotate(180deg);
}

/* Jawaban (Content) */
.tnb-faq-content {
    padding: 25px;
    color: #6B778C;
    font-size: 16px;
    line-height: 1.8;
    background: #FFFFFF;
}