/* =========================================
   BALI FAQ ACCORDION
   ========================================= */

.bl-faq-container {
    max-width: 600px; /* Narrower for readability */
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Delight', sans-serif !important;
}

/* The Question Card */
.bl-faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.bl-faq-item.active {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #7d8dff; /* Active Blue Border */
}

/* The Clickable Header */
.bl-faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.bl-faq-question {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
}

/* The Icon (+ / -) */
.bl-faq-icon {
    width: 36px;
    height: 36px;
    position: relative;
    flex-shrink: 0;
}

.bl-faq-icon::before,
.bl-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #7d8dff; /* Brand Blue */
    border-radius: 2px;
    transition: transform 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Horizontal Line */
.bl-faq-icon::before { width: 26px; height: 1px; }
/* Vertical Line */
.bl-faq-icon::after { width: 1px; height: 26px; }

/* Rotate to minus when active */
.bl-faq-item.active .bl-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg); /* Turns vertical line flat */
}

/* The Answer (Hidden by default) */
.bl-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.bl-faq-answer {
    padding: 0 25px 25px;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}


/* Mobile Tweak */
@media (max-width: 480px) {
    .bl-faq-container {
        margin-top: 20px;
        padding: 0 5px; /* Changed from 0 20px to 0 5px */
    }
    
    .bl-faq-question { font-size: 16px; }
    .bl-faq-header { padding: 15px 20px; }
}