/* --- FAQ SECTION PREMIUM STYLE --- */
.faq-premium-section {
    padding: 100px 0;
    background: #fcfcfd;
}

.faq-title-area .title {
    font-size: 42px;
    color: #0f172a;
}

.faq-modern-card {
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    margin-bottom: 20px;
    background: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Hover effect for closed cards */
.faq-modern-card:hover {
    border-color: #cbd5e1 !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Active state (Jab open ho) */
/* CLOSED FAQ Light Purple Background + Shadow */
.faq-modern-card:has(.accordion-button.collapsed) {
    background: #faf9ff !important;
    /* very light purple */
    box-shadow: 0 8px 20px rgba(51, 48, 141, 0.1);
    border-color: #e9e7ff !important;
}

.faq-modern-card:has(.accordion-button:not(.collapsed)) {
    border-color: #605BE5 !important;
    box-shadow: 0 15px 30px rgba(96, 91, 229, 0.08);
}

.faq-btn {
    padding: 24px 30px !important;
    font-weight: 700 !important;
    font-size: 19px !important;
    color: #1e293b !important;
    background: transparent !important;
    box-shadow: none !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    text-align: left;
    position: relative;
}

/* --- THE LEFT SIDE ACTIVE BAR --- */
.faq-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 0;
    background: #605BE5;
    border-radius: 0 10px 10px 0;
    transition: 0.3s ease;
    opacity: 0;
}

.faq-btn:not(.collapsed)::before {
    height: 45px;
    opacity: 1;
}

.faq-btn::after {
    display: none !important;
    /* Default bootstrap icon hide karein */
}

.faq-btn:not(.collapsed) {
    color: #605BE5 !important;
}

/* --- PLUS/MINUS ICON BOX --- */
.faq-icon-box {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    flex-shrink: 0;
    font-size: 16px;
}

/* Jab open ho tab icon color aur bg change ho */
.faq-btn:not(.collapsed) .faq-icon-box {
    background: #605BE5;
    color: #fff;
    /* transform: rotate(180deg); */

}



.faq-body-text {
    padding: 0px 30px 24px 30px !important;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.btn-purple {
    background: #605BE5;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-purple:hover {
    background: #4a44cc;
    color: white;
    transform: scale(1.05);
}

.faq-toggle-icon {
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s ease;
}