/* ==========================================================================
   Premium FAQ Accordion Architecture - Clean Fixed Version
   ========================================================================== */
.faq-category-block {
    margin-bottom: 40px;
}

.category-heading {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 5px solid #7acaff; /* आपके नए ग्रेडिएंट कलर से मैच करता हुआ */
    font-weight: 800;
}

.faq-accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(23, 37, 84, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}

.faq-question-trigger {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    gap: 15px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question-trigger span {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.05rem;
    line-height: 1.5;
    flex: 1;
}

/* Toggle Icon Style - बटन ग्रेडिएंट से अलग रखा गया है ताकि आर्किटेक्चर ब्लॉक न हो */
.accordion-icon {
    width: 32px;
    height: 32px;
    background-color: var(--light-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--orange-accent);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, color 0.3s;
    flex-shrink: 0;
}

/* Active & Hover States */
.faq-question-trigger:hover {
    background-color: rgba(248, 250, 252, 0.7);
}

.faq-accordion-item.active {
    border-color: #7acaff;
    box-shadow: 0 12px 25px rgba(122, 202, 255, 0.15);
    transform: translateY(-2px);
}

.faq-accordion-item.active .faq-question-trigger {
    background-color: rgba(122, 202, 255, 0.05);
}

.faq-accordion-item.active .accordion-icon {
    transform: rotate(45deg); /* प्लस को क्रॉस में बदलता है */
    background: linear-gradient(135deg, #7acaff 0%, #fceb05 50%, #9bdd00 100%) !important; /* बटन वाला सुंदर ग्रेडिएंट */
    color: #085baf !important;
}

/* Hidden State Panel */
.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--white);
}

.faq-answer-panel p {
    padding: 0 24px 22px 24px;
    color: var(--dark-text);
    font-size: 0.98rem;
    line-height: 1.6;
}

.faq-inner-list {
    list-style: none;
    padding: 0 24px 22px 30px;
    margin: 0;
}

.faq-inner-list li {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.5;
}


/* ==========================================================================
   💥 HIGHLY IMPRESSIVE MOBILE RESPONSIVE OVERRIDES (Max 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .faq-category-block {
        margin-bottom: 30px;
    }

    .category-heading {
        font-size: 1.2rem;
        margin-bottom: 15px;
        padding-left: 10px;
        border-left-width: 4px;
    }

    .faq-accordion-item {
        border-radius: 12px; /* Marginally sharper corners for mobile alignment */
        margin-bottom: 10px;
    }

    /* Optimized Touch Padding for Mobile screens */
    .faq-question-trigger {
        padding: 16px 18px;
        gap: 12px;
    }

    .faq-question-trigger span {
        font-size: 0.98rem; /* Slightly smaller font for mobile screens readability */
        font-weight: 700;
    }

    /* Slightly smaller toggle button to save horizontal space */
    .accordion-icon {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }

    .faq-answer-panel p {
        padding: 0 18px 18px 18px;
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .faq-inner-list {
        padding: 0 18px 18px 24px;
    }

    .faq-inner-list li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
}