﻿/* ==================== هدر جدید بخش‌ها (مشترک) ==================== */



    .modern-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.modern-title-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(34,65,115,0.05) 0%, rgba(34,65,115,0.15) 100%);
    border-radius: 3rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(34,65,115,0.1);
    transition: all 0.3s ease;
}

    .modern-title-wrapper:hover {
        box-shadow: 0 6px 25px rgba(34,65,115,0.25);
        transform: translateY(-2px);
    }

    .modern-title-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 5px;
        border-radius: 3rem 0 0 3rem;
        opacity: 0.8;
        animation: modernTitleBarPulse 2s ease-in-out infinite alternate;
        background: #224173;
    }

@keyframes modernTitleBarPulse {
    from {
        opacity: 0.5;
        width: 5px;
    }

    to {
        opacity: 1;
        width: 7px;
    }
}

.modern-title-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #224173, #1b3560);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(34,65,115,0.5);
    transition: transform 0.3s ease;
}

    .modern-title-icon:hover {
        transform: rotate(15deg) scale(1.1);
    }

.modern-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

body.dark-mode .modern-title {
    color: #f1f5f9;
}

.modern-view-all {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 2px solid #224173;
    padding: 0.6rem 1.8rem;
    border-radius: 3rem;
    color: #224173;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(34,65,115,0.15);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

    .modern-view-all i {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }

    .modern-view-all:hover {
        background: #224173;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(34,65,115,0.35);
    }

        .modern-view-all:hover i {
            transform: translateX(-4px);
        }

    .modern-view-all::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s, height 0.5s;
    }

    .modern-view-all:active::after {
        width: 200px;
        height: 200px;
    }

/* ==================== استایل‌های اختصاصی سوالات متداول ==================== */
.faq-section-wrapper {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

    .faq-section-wrapper::before,
    .faq-section-wrapper::after {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(34, 65, 115, 0.08);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    .faq-section-wrapper::before {
        top: -60px;
        left: -60px;
    }

    .faq-section-wrapper::after {
        bottom: -80px;
        right: -40px;
        width: 280px;
        height: 280px;
    }

.faq-section-container {
    background: #ffffff;
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(34, 65, 115, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.faq-box {
    background: #f9fbfd;
    border-radius: 1.8rem;
    padding: 1.8rem 1.5rem;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    height: 100%;
    overflow: hidden;
    margin-top: 0;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 0.8rem;
    border-radius: 1rem !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
}

/* ========== استایل جدید آکاردئون (پیش‌فرض آبی، باز سفید) با علامت + و - ========== */
.faq-accordion .accordion-button {
    background: linear-gradient(214deg, #224173, #1b3560) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: 1px solid rgba(34, 65, 115, 0.25) !important;
    border-radius: 1rem !important;
    box-shadow: none !important;
    transition: none !important;
    padding: 1rem 1.4rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    direction: rtl;
    position: relative;
}

    /* حذف فلش پیش‌فرض بوتسترپ */
    .faq-accordion .accordion-button::after {
        display: none;
    }

    /* مخفی کردن آیکون فونت آوسوم (در صورت وجود) */
    .faq-accordion .accordion-button .faq-icon {
        display: none !important;
    }

    /* علامت + با استفاده از ::before (برای حالت بسته) */
    .faq-accordion .accordion-button::before {
        content: '\002B';
        font-family: Arial, 'Segoe UI', sans-serif;
        font-weight: bold;
        font-size: 1.4rem;
        order: 2;
        margin-right: auto;
        margin-left: 0.5rem;
        transition: none;
        color: inherit;
    }

    /* علامت - در حالت باز */
    .faq-accordion .accordion-button:not(.collapsed)::before {
        content: '\2212';
    }

    /* حالت باز: پس‌زمینه سفید، متن آبی، حاشیه آبی ضخیم */
    .faq-accordion .accordion-button:not(.collapsed) {
        background: #ffffff !important;
        color: #224173 !important;
        border: 2px solid #224173 !important;
    }

/* حذف هرگونه افکت هاور (در صورت لزوم می‌توانید کامنت را بردارید) */
/*
.faq-accordion .accordion-button:hover,
.faq-accordion .accordion-button:not(.collapsed):hover {
    /* بدون تغییر */
/* }
*/

.faq-accordion .accordion-body {
    color: #334155;
    line-height: 1.8;
    padding: 1rem 1.4rem;
    text-align: right;
}

/* دکمه موبایل برای باز/بسته کردن سوالات */
.faq-mobile-toggle {
    background: transparent;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    background: #f8fafd;
    border-radius: 1.2rem;
    margin-bottom: 0.4rem;
    color: #1e2a3a;
    font-weight: 700;
    font-size: 1.3rem;
    transition: background 0.2s;
    border: 1px solid #eef2f6;
    direction: rtl;
}

    .faq-mobile-toggle .chevron-icon {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .faq-mobile-toggle[aria-expanded="true"] .chevron-icon {
        transform: rotate(180deg);
    }

    .faq-mobile-toggle[aria-expanded="true"] {
        background: #f8f9fa;
        border-color: #6c757d;
        color: #6c757d;
    }

/* ==================== استایل دکمه هدر (درخواست تعمیر فوری) ==================== */
/* حالت پایه برای موبایل (پنل بسته) */
.faq-header .modern-view-all {
    background: #ffffff !important;
    color: #224173 !important;
    border: 2px solid #224173 !important;
    box-shadow: none !important;
}

    .faq-header .modern-view-all:hover {
        background: linear-gradient(214deg, #224173, #1b3560) !important;
        color: #fff !important;
        border: 2px solid transparent !important;
        box-shadow: 0 10px 20px rgba(34, 65, 115, 0.25) !important;
    }

    /* حالت باز (وقتی کلاس expanded به دکمه اضافه شود - فقط موبایل) */
    .faq-header .modern-view-all.expanded {
        background: linear-gradient(214deg, #224173, #1b3560) !important;
        color: #fff !important;
        border: 1px solid rgba(34, 65, 115, 0.25) !important;
    }

        .faq-header .modern-view-all.expanded:hover {
            background: #ffffff !important;
            color: #224173 !important;
            border: 2px solid #224173 !important;
        }

/* دسکتاپ: پنل همیشه باز است → دکمه شبیه حالت expanded بدون نیاز به کلاس */
@media (min-width: 768px) {
    .faq-header .modern-view-all {
        background: linear-gradient(214deg, #224173, #1b3560) !important;
        color: #fff !important;
        border: 1px solid rgba(34, 65, 115, 0.25) !important;
    }

        .faq-header .modern-view-all:hover {
            background: #ffffff !important;
            color: #224173 !important;
            border: 2px solid #224173 !important;
        }

        .faq-header .modern-view-all.expanded {
            background: linear-gradient(214deg, #224173, #1b3560) !important;
            color: #fff !important;
            border: 1px solid rgba(34, 65, 115, 0.25) !important;
        }

            .faq-header .modern-view-all.expanded:hover {
                background: #ffffff !important;
                color: #224173 !important;
                border: 2px solid #224173 !important;
            }
}

/* ==================== دارک مود ==================== */
body.dark-mode .faq-section-wrapper::before,
body.dark-mode .faq-section-wrapper::after {
    background: rgba(34, 65, 115, 0.12);
}

body.dark-mode .faq-section-container {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .faq-box {
    background: #162032;
    border-color: #334155;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

body.dark-mode .faq-accordion .accordion-item {
    background: #1e293b;
    border-color: #334155;
}

/* دکمه‌های آکاردئون در دارک مود */
body.dark-mode .faq-accordion .accordion-button {
    background: linear-gradient(214deg, #0b0f1c, #1b3560) !important;
    color: #ffffff !important;
    border-color: rgba(34, 65, 115, 0.25) !important;
}

    body.dark-mode .faq-accordion .accordion-button:not(.collapsed) {
        background: #1e293b !important;
        color: #9aa8c9 !important;
        border-color: #9aa8c9 !important;
    }

body.dark-mode .faq-mobile-toggle {
    background: #1e293b;
    border-color: #334155;
    color: #cbd5e1;
}

    body.dark-mode .faq-mobile-toggle[aria-expanded="true"] {
        background: #343a40;
        color: #6c757d;
    }

/* دکمه هدر در دارک مود */
body.dark-mode .faq-header .modern-view-all {
    background: #1e293b !important;
    color: #9aa8c9 !important;
    border-color: #9aa8c9 !important;
}

    body.dark-mode .faq-header .modern-view-all:hover {
        background: linear-gradient(214deg, #3b4870, #4a5a8a) !important;
        color: #ffffff !important;
    }

    body.dark-mode .faq-header .modern-view-all.expanded {
        background: linear-gradient(214deg, #0b0f1c, #1b3560) !important;
        color: #fff !important;
        border-color: rgba(34, 65, 115, 0.25) !important;
    }

        body.dark-mode .faq-header .modern-view-all.expanded:hover {
            background: #1e293b !important;
            color: #9aa8c9 !important;
            border-color: #9aa8c9 !important;
        }

@media (min-width: 768px) {
    body.dark-mode .faq-header .modern-view-all {
        background: linear-gradient(214deg, #0b0f1c, #1b3560) !important;
        color: #fff !important;
    }

        body.dark-mode .faq-header .modern-view-all:hover {
            background: #1e293b !important;
            color: #9aa8c9 !important;
            border-color: #9aa8c9 !important;
        }
}

/* ==================== سوالات متداول - نسخه جدا شده و شیک‌تر ==================== */

.faq-section-separated {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.65), rgba(255, 255, 255, 0));
}

.faq-only-container {
    padding: 2rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.06);
}

.faq-intro-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(214deg, rgba(34, 65, 115, 0.08), rgba(34, 65, 115, 0.03));
    border: 1px solid rgba(34, 65, 115, 0.08);
    border-radius: 1.5rem;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.5rem;
}

.faq-intro-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(214deg, #224173, #1b3560);*/
    background: linear-gradient(135deg, #93c5fd 0%, #1c3764 100%) !important;
    color: #ffffff;
    border-radius: 1.2rem;
    font-size: 1.35rem;
    box-shadow: 0 14px 26px rgba(34, 65, 115, 0.22);
    flex-shrink: 0;
}

.faq-intro-card h3 {
    margin: 0 0 0.35rem;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 900;
}

.faq-intro-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.9;
    font-size: 0.95rem;
}

.faq-box-separated {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

    .faq-box-separated .faq-accordion {
        display: grid;
        gap: 0.9rem;
    }

    .faq-box-separated .accordion-item {
        margin-bottom: 0;
        border-radius: 1.25rem !important;
        border: 1px solid rgba(34, 65, 115, 0.09);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
        overflow: hidden;
    }

    .faq-box-separated .accordion-button {
        padding: 1.1rem 1.35rem;
        border-radius: 1.25rem !important;
    }

        .faq-box-separated .accordion-button:not(.collapsed) {
            border-bottom-left-radius: 0 !important;
            border-bottom-right-radius: 0 !important;
        }

    .faq-box-separated .accordion-body {
        background: #ffffff;
        color: #334155;
        padding: 1.2rem 1.4rem 1.4rem;
        border-top: 1px solid rgba(34, 65, 115, 0.08);
    }

.faq-header .modern-view-all {
    text-decoration: none;
}

@media (max-width: 767px) {
    .faq-only-container {
        padding: 1rem;
        border-radius: 1.5rem;
    }

    .faq-intro-card {
        align-items: flex-start;
        padding: 1rem;
        border-radius: 1.25rem;
    }

    .faq-intro-icon {
        width: 46px;
        height: 46px;
        border-radius: 1rem;
        font-size: 1.1rem;
    }

    .faq-intro-card h3 {
        font-size: 1.05rem;
    }

    .faq-intro-card p {
        font-size: 0.85rem;
    }

    .faq-box-separated {
        margin-top: 0.8rem;
    }
}

body.dark-mode .faq-section-separated {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0));
}

body.dark-mode .faq-only-container {
    background: rgba(18, 25, 45, 0.72);
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .faq-intro-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

    body.dark-mode .faq-intro-card h3 {
        color: #f8fafc;
    }

    body.dark-mode .faq-intro-card p {
        color: #cbd5e1;
    }

body.dark-mode .faq-box-separated .accordion-body {
    background: rgba(15, 23, 42, 0.72);
    color: #dbeafe;
    border-top-color: rgba(255, 255, 255, 0.08);
}


/* ==================== صفحه کامل سوالات متداول ==================== */

.faq-page-wrap {
    position: relative;
    overflow: hidden;
}

.faq-page-hero {
    position: relative;
    padding: 3.5rem 0 2rem;
    overflow: hidden;
}

    .faq-page-hero::before {
        content: '';
        position: absolute;
        top: 20px;
        right: -110px;
        width: 320px;
        height: 320px;
        background: rgba(34, 65, 115, 0.08);
        border-radius: 50%;
        pointer-events: none;
    }

    .faq-page-hero::after {
        content: '';
        position: absolute;
        left: -130px;
        bottom: -90px;
        width: 360px;
        height: 360px;
        background: rgba(34, 65, 115, 0.06);
        border-radius: 50%;
        pointer-events: none;
    }

.faq-page-hero-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
    border: 1px solid rgba(34, 65, 115, 0.1);
    border-radius: 2.2rem;
    padding: 2.5rem;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

    .faq-page-hero-card::before {
        content: '';
        position: absolute;
        inset: auto -120px -140px auto;
        width: 330px;
        height: 330px;
        background: radial-gradient(circle, rgba(34, 65, 115, 0.12), transparent 70%);
        pointer-events: none;
    }

.faq-hero-content {
    position: relative;
    z-index: 2;
}

.faq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #224173;
    background: rgba(34, 65, 115, 0.08);
    border: 1px solid rgba(34, 65, 115, 0.12);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
}

.faq-hero-content h1 {
    margin: 0 0 1rem;
    color: #0f172a;
    font-size: 2.65rem;
    font-weight: 950;
    line-height: 1.5;
}

.faq-hero-content p {
    max-width: 680px;
    color: #475569;
    line-height: 2.1;
    font-size: 1rem;
    margin-bottom: 1.6rem;
}

.faq-hero-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.faq-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .faq-hero-btn:hover {
        text-decoration: none;
        transform: translateY(-3px);
    }

.faq-hero-btn-primary {
    background: linear-gradient(214deg, #224173, #1b3560);
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(34, 65, 115, 0.24);
}

    .faq-hero-btn-primary:hover {
        color: #ffffff;
        box-shadow: 0 18px 34px rgba(34, 65, 115, 0.32);
    }

.faq-hero-btn-light {
    background: #ffffff;
    color: #224173;
    border: 1px solid rgba(34, 65, 115, 0.16);
}

    .faq-hero-btn-light:hover {
        color: #224173;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    }

.faq-hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1rem;
}

.faq-stat-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(34, 65, 115, 0.1);
    border-radius: 1.4rem;
    padding: 1.2rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
}

    .faq-stat-card span {
        display: block;
        color: #224173;
        font-size: 1.75rem;
        font-weight: 950;
        line-height: 1.2;
    }

    .faq-stat-card small {
        display: block;
        color: #64748b;
        margin-top: 0.3rem;
        font-weight: 700;
    }

.faq-page-main {
    padding: 2rem 0 5rem;
}

.faq-page-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.faq-category-sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 1rem;
}

.faq-sidebar-card,
.faq-help-card,
.faq-category-section,
.faq-empty-state {
    background: #ffffff;
    border: 1px solid rgba(34, 65, 115, 0.09);
    border-radius: 1.7rem;
    box-shadow: 0 20px 52px rgba(15, 23, 42, 0.06);
}

.faq-sidebar-card {
    padding: 1.25rem;
}

.faq-sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 1rem;
}

    .faq-sidebar-title i {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(214deg, #224173, #1b3560);
        color: #ffffff;
        border-radius: 0.9rem;
    }

.faq-category-list {
    display: grid;
    gap: 0.55rem;
}

.faq-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #334155;
    background: #f8fafc;
    border: 1px solid rgba(34, 65, 115, 0.07);
    border-radius: 1rem;
    padding: 0.75rem 0.9rem;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.25s ease;
}

    .faq-category-link:hover {
        color: #224173;
        background: rgba(34, 65, 115, 0.06);
        transform: translateX(-4px);
        text-decoration: none;
    }

    .faq-category-link strong {
        min-width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        color: #224173;
        border-radius: 999px;
        font-size: 0.85rem;
    }

.faq-help-card {
    padding: 1.35rem;
    overflow: hidden;
    position: relative;
}

    .faq-help-card::before {
        content: '';
        position: absolute;
        left: -55px;
        bottom: -65px;
        width: 170px;
        height: 170px;
        background: rgba(34, 65, 115, 0.08);
        border-radius: 50%;
    }

.faq-help-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(214deg, #224173, #1b3560);
    color: #ffffff;
    border-radius: 1.15rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 14px 25px rgba(34, 65, 115, 0.24);
}

.faq-help-card h3 {
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.65rem;
}

.faq-help-card p {
    color: #64748b;
    line-height: 1.9;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.faq-help-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #224173;
    font-weight: 900;
    text-decoration: none;
}

.faq-page-content {
    display: grid;
    gap: 1.25rem;
}

.faq-category-section {
    padding: 1.35rem;
    scroll-margin-top: 110px;
}

.faq-category-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(34, 65, 115, 0.08);
}

.faq-category-kicker {
    display: block;
    color: #224173;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.faq-category-heading h3 {
    margin: 0;
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 950;
}

.faq-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    color: #224173;
    background: rgba(34, 65, 115, 0.08);
    border: 1px solid rgba(34, 65, 115, 0.12);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 900;
}

.faq-page-accordion {
    display: grid;
    gap: 0.8rem;
}

.faq-page-item {
    background: #ffffff;
    border: 1px solid rgba(34, 65, 115, 0.09);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.faq-page-question {
    margin: 0;
}

.faq-page-button {
    width: 100%;
    border: 0;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: right;
    direction: rtl;
    background: linear-gradient(214deg, #224173, #1b3560);
    color: #ffffff;
    padding: 1.05rem 1.2rem;
    font-weight: 900;
    line-height: 1.9;
    cursor: pointer;
}

    .faq-page-button.collapsed {
        background: #ffffff;
        color: #0f172a;
    }

    .faq-page-button:hover {
        color: #ffffff;
        background: linear-gradient(214deg, #224173, #1b3560);
    }

    .faq-page-button .faq-plus {
        width: 34px;
        height: 34px;
        min-width: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.14);
        color: #ffffff;
        border-radius: 50%;
        transition: all 0.25s ease;
    }

    .faq-page-button.collapsed .faq-plus {
        background: rgba(34, 65, 115, 0.08);
        color: #224173;
    }

    .faq-page-button:not(.collapsed) .faq-plus {
        transform: rotate(45deg);
    }

.faq-page-answer {
    padding: 1.15rem 1.25rem 1.35rem;
    color: #334155;
    line-height: 2.1;
    background: #ffffff;
    border-top: 1px solid rgba(34, 65, 115, 0.08);
}

    .faq-page-answer p:last-child {
        margin-bottom: 0;
    }

.faq-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
}

    .faq-empty-state span {
        width: 72px;
        height: 72px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(34, 65, 115, 0.08);
        color: #224173;
        border-radius: 1.5rem;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .faq-empty-state h3 {
        color: #0f172a;
        font-weight: 950;
        margin-bottom: 0.7rem;
    }

    .faq-empty-state p {
        color: #64748b;
        line-height: 2;
        max-width: 520px;
        margin: 0 auto 1.2rem;
    }

    .faq-empty-state a {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        background: linear-gradient(214deg, #224173, #1b3560);
        color: #ffffff;
        border-radius: 999px;
        padding: 0.75rem 1.3rem;
        font-weight: 900;
        text-decoration: none;
    }

@media (max-width: 991px) {
    .faq-page-hero-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .faq-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-page-layout {
        grid-template-columns: 1fr;
    }

    .faq-category-sidebar {
        position: static;
        grid-template-columns: 1fr;
    }

    .faq-sidebar-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .faq-page-hero {
        padding: 2rem 0 1rem;
    }

    .faq-page-hero-card {
        border-radius: 1.6rem;
        padding: 1.25rem;
    }

    .faq-hero-content h1 {
        font-size: 1.9rem;
    }

    .faq-hero-content p {
        font-size: 0.92rem;
        line-height: 2;
    }

    .faq-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .faq-hero-btn {
        width: 100%;
    }

    .faq-hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .faq-stat-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.95rem 1rem;
        border-radius: 1.15rem;
    }

        .faq-stat-card span {
            font-size: 1.4rem;
        }

    .faq-page-main {
        padding: 1.5rem 0 3rem;
    }

        .faq-page-main .modern-section-header {
            margin-bottom: 1.2rem;
        }

        .faq-page-main .modern-title {
            font-size: 1.35rem;
        }

        .faq-page-main .modern-title-icon {
            width: 38px;
            height: 38px;
            font-size: 1rem;
        }

        .faq-page-main .modern-view-all {
            width: 100%;
            justify-content: center;
            padding: 0.7rem 1rem;
        }

    .faq-help-card {
        border-radius: 1.35rem;
    }

    .faq-category-section {
        padding: 1rem;
        border-radius: 1.35rem;
    }

    .faq-category-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.65rem;
    }

        .faq-category-heading h3 {
            font-size: 1.15rem;
        }

    .faq-category-count {
        font-size: 0.78rem;
    }

    .faq-page-item {
        border-radius: 1rem;
    }

    .faq-page-button {
        align-items: flex-start;
        padding: 0.95rem 1rem;
        font-size: 0.92rem;
        line-height: 2;
    }

        .faq-page-button .faq-plus {
            width: 30px;
            height: 30px;
            min-width: 30px;
            margin-top: 0.15rem;
        }

    .faq-page-answer {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 2;
    }
}

/* ==================== دارک مود صفحه FAQ ==================== */

body.dark-mode .faq-page-hero-card,
body.dark-mode .faq-sidebar-card,
body.dark-mode .faq-help-card,
body.dark-mode .faq-category-section,
body.dark-mode .faq-empty-state {
    background: rgba(18, 25, 45, 0.72);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

    body.dark-mode .faq-hero-content h1,
    body.dark-mode .faq-sidebar-title,
    body.dark-mode .faq-help-card h3,
    body.dark-mode .faq-category-heading h3,
    body.dark-mode .faq-empty-state h3 {
        color: #f8fafc;
    }

    body.dark-mode .faq-hero-content p,
    body.dark-mode .faq-stat-card small,
    body.dark-mode .faq-help-card p,
    body.dark-mode .faq-empty-state p {
        color: #cbd5e1;
    }

body.dark-mode .faq-hero-badge,
body.dark-mode .faq-category-count {
    background: rgba(255, 255, 255, 0.06);
    color: #dbeafe;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .faq-hero-btn-light,
body.dark-mode .faq-stat-card,
body.dark-mode .faq-category-link,
body.dark-mode .faq-page-item,
body.dark-mode .faq-page-button.collapsed,
body.dark-mode .faq-page-answer {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.08);
}

    body.dark-mode .faq-page-button.collapsed .faq-plus {
        background: rgba(255, 255, 255, 0.08);
        color: #dbeafe;
    }

body.dark-mode .faq-page-answer {
    color: #cbd5e1;
}

body.dark-mode .faq-category-heading,
body.dark-mode .faq-page-answer {
    border-color: rgba(255, 255, 255, 0.08);
}

/* ==================== اصلاحات موبایل صفحه FAQ ==================== */

@media (max-width: 767px) {
    .faq-mobile-row-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.75rem !important;
        flex-wrap: nowrap !important;
        margin-bottom: 1.1rem;
    }

        .faq-mobile-row-header .modern-title-wrapper {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 0.55rem;
        }

        .faq-mobile-row-header .modern-title-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 0.9rem;
            font-size: 0.95rem;
        }

        .faq-mobile-row-header .modern-title {
            font-size: 1.05rem !important;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .faq-mobile-request-btn {
        width: auto !important;
        min-width: auto !important;
        flex-shrink: 0;
        padding: 0.55rem 0.75rem !important;
        border-radius: 999px !important;
        font-size: 0.72rem !important;
        gap: 0.35rem !important;
        line-height: 1.4;
        white-space: nowrap;
    }

        .faq-mobile-request-btn i {
            font-size: 0.7rem;
        }
}


/* ==================== منوی موبایلی پایین صفحه FAQ ==================== */

.faq-mobile-bottom-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    height: 64px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 65, 115, 0.12);
    border-radius: 1.35rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0 0.7rem;
}

.faq-mobile-nav-item {
    border: 0;
    outline: 0;
    background: transparent;
    color: #334155;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-width: 54px;
    height: 54px;
    border-radius: 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    transition: all 0.25s ease;
}

    .faq-mobile-nav-item i {
        font-size: 1rem;
        color: #224173;
    }

    .faq-mobile-nav-item:hover,
    .faq-mobile-nav-item:focus {
        color: #224173;
        background: rgba(34, 65, 115, 0.07);
        text-decoration: none;
    }

.faq-mobile-theme-btn {
    cursor: pointer;
    font-family: inherit;
}

.faq-mobile-nav-float {
    width: 54px;
    height: 54px;
    min-width: 54px;
    margin-top: -34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(214deg, #224173, #1b3560);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(34, 65, 115, 0.32);
    text-decoration: none;
    border: 4px solid #ffffff;
}

    .faq-mobile-nav-float i {
        font-size: 1.15rem;
    }

    .faq-mobile-nav-float:hover,
    .faq-mobile-nav-float:focus {
        color: #ffffff;
        transform: translateY(-3px);
        text-decoration: none;
    }

@media (max-width: 767px) {
    body.faq-page {
        padding-bottom: 88px;
    }
}

body.dark-mode .faq-mobile-bottom-nav {
    background: rgba(18, 25, 45, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

body.dark-mode .faq-mobile-nav-item {
    color: #cbd5e1;
}

    body.dark-mode .faq-mobile-nav-item i {
        color: #dbeafe;
    }

    body.dark-mode .faq-mobile-nav-item:hover,
    body.dark-mode .faq-mobile-nav-item:focus {
        background: rgba(255, 255, 255, 0.07);
        color: #ffffff;
    }

body.dark-mode .faq-mobile-nav-float {
    border-color: #12192d;
}

/* ==================== اصلاح اندازه دکمه‌های شناور در موبایل ==================== */

@media (max-width: 767px) {
    .dark-toggle,
    .dark-mode-toggle,
    .theme-toggle,
    .theme-switch,
    #darkModeToggle,
    #themeToggle {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
        border-radius: 50% !important;
        font-size: 0.95rem !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

        .dark-toggle i,
        .dark-mode-toggle i,
        .theme-toggle i,
        .theme-switch i,
        #darkModeToggle i,
        #themeToggle i {
            font-size: 0.95rem !important;
        }

    .float-button,
    .floating-button,
    .floating-btn,
    .whatsapp-float,
    .call-float,
    .back-to-top,
    #floatingButton,
    #backToTop {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
        border-radius: 50% !important;
        font-size: 1rem !important;
        padding: 0 !important;
    }

        .float-button i,
        .floating-button i,
        .floating-btn i,
        .whatsapp-float i,
        .call-float i,
        .back-to-top i,
        #floatingButton i,
        #backToTop i {
            font-size: 1rem !important;
        }
}

/* ==================== منوی موبایلی پایین FAQ - هماهنگ با Blog ==================== */

@media (max-width: 767px) {
    body.faq-page {
        padding-bottom: 98px;
    }

    .faq-mobile-bottom-bar {
        position: fixed;
        right: 12px;
        left: 12px;
        bottom: 12px;
        height: 66px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 24px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 1040;
        padding: 8px;
        display: grid !important;
        grid-template-columns: 1fr 1.25fr;
        gap: 8px;
        direction: rtl;
    }

    .faq-bottom-item {
        border: none;
        background: transparent;
        color: #555;
        border-radius: 18px;
        font-family: inherit;
        font-size: 0.74rem;
        font-weight: 800;
        text-decoration: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-width: 0;
        transition: all 0.2s ease;
    }

        .faq-bottom-item:hover,
        .faq-bottom-item:focus {
            text-decoration: none;
            color: #224173;
        }

        .faq-bottom-item.active {
            background: rgba(34, 65, 115, 0.09);
            color: #224173;
        }

    .faq-bottom-icon {
        width: 28px;
        height: 28px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
    }

    .faq-bottom-item.active .faq-bottom-icon {
        background: linear-gradient(214deg, #224173, #1b3560);
        color: #fff;
        box-shadow: 0 6px 16px rgba(34, 65, 115, 0.28);
    }

    .faq-call-bottom-btn {
        background: linear-gradient(135deg, #16a34a, #22c55e);
        color: #fff !important;
        box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
        flex-direction: row;
        gap: 8px;
        font-size: 0.82rem;
    }

        .faq-call-bottom-btn:hover,
        .faq-call-bottom-btn:focus {
            color: #fff !important;
            transform: translateY(-1px);
        }

    .faq-call-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.22);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.88rem;
    }
}

/* ==================== تنظیم دارک مود و فلوت‌باتن در موبایل FAQ ==================== */

@media (max-width: 767px) {
    body.faq-page #darkModeToggle,
    body.faq-page .dark-toggle,
    body.faq-page .dark-mode-toggle,
    body.faq-page .theme-toggle,
    body.faq-page .theme-switch,
    body.faq-page #themeToggle {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
        border-radius: 50% !important;
        font-size: 0.85rem !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        bottom: 92px !important;
        left: 14px !important;
        right: auto !important;
        z-index: 1038 !important;
    }

        body.faq-page #darkModeToggle i,
        body.faq-page .dark-toggle i,
        body.faq-page .dark-mode-toggle i,
        body.faq-page .theme-toggle i,
        body.faq-page .theme-switch i,
        body.faq-page #themeToggle i {
            font-size: 0.85rem !important;
        }

    body.faq-page #floatBtn,
    body.faq-page .float-button,
    body.faq-page .floating-button,
    body.faq-page .floating-btn,
    body.faq-page .float-contact,
    body.faq-page .whatsapp-float,
    body.faq-page .call-float,
    body.faq-page .back-to-top,
    body.faq-page #floatingButton,
    body.faq-page #backToTop {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
        border-radius: 50% !important;
        font-size: 0.9rem !important;
        padding: 0 !important;
        bottom: 92px !important;
        right: 14px !important;
        z-index: 1038 !important;
    }

        body.faq-page #floatBtn i,
        body.faq-page .float-button i,
        body.faq-page .floating-button i,
        body.faq-page .floating-btn i,
        body.faq-page .float-contact i,
        body.faq-page .whatsapp-float i,
        body.faq-page .call-float i,
        body.faq-page .back-to-top i,
        body.faq-page #floatingButton i,
        body.faq-page #backToTop i {
            font-size: 0.9rem !important;
        }
}

/* ==================== دارک مود منوی پایین FAQ ==================== */

body.dark-mode .faq-mobile-bottom-bar {
    background: rgba(18, 25, 45, 0.92);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

body.dark-mode .faq-bottom-item {
    color: #cbd5e1;
}

    body.dark-mode .faq-bottom-item.active {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }

    body.dark-mode .faq-bottom-item:hover,
    body.dark-mode .faq-bottom-item:focus {
        color: #ffffff;
    }

    body.dark-mode .faq-bottom-item.active .faq-bottom-icon {
        background: linear-gradient(214deg, #224173, #1b3560);
        color: #ffffff;
    }

/* ==================== اصلاح چیدمان دکمه خانه در منوی موبایلی FAQ ==================== */

@media (max-width: 767px) {
    .faq-mobile-bottom-bar .faq-bottom-item.active {
        flex-direction: row;
        gap: 8px;
        font-size: 0.82rem;
    }

        .faq-mobile-bottom-bar .faq-bottom-item.active .faq-bottom-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            font-size: 0.88rem;
        }
}

.faq-mobile-bottom-bar {
    display: none !important;
}

@media (max-width: 991px) {
    .faq-mobile-bottom-bar {
        display: grid !important;
    }
}

/* ==================== یکسان‌سازی کامل فونت FAQ با Home/Index ==================== */
/* ==================== هماهنگ‌سازی اندازه تیترهای FAQ با Home/Index ==================== */

body.faq-page .faq-hero-content h1 {
    font-size: 2.25rem !important;
    font-weight: 900 !important;
    line-height: 1.55 !important;
}

body.faq-page .modern-title {
    font-size: 1.65rem !important;
    font-weight: 900 !important;
    line-height: 1.6 !important;
}

body.faq-page .faq-category-heading h3 {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    line-height: 1.7 !important;
}

body.faq-page .faq-help-card h3,
body.faq-page .faq-empty-state h3 {
    font-size: 1.1rem !important;
    font-weight: 900 !important;
    line-height: 1.7 !important;
}

body.faq-page .faq-page-button {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    line-height: 2 !important;
}

/* ==================== اندازه تیترهای FAQ در موبایل ==================== */

@media (max-width: 767px) {
    body.faq-page .faq-hero-content h1 {
        font-size: 1.55rem !important;
        line-height: 1.7 !important;
    }

    body.faq-page .modern-title {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    body.faq-page .faq-category-heading h3 {
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
    }

    body.faq-page .faq-help-card h3,
    body.faq-page .faq-empty-state h3 {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }

    body.faq-page .faq-page-button {
        font-size: 0.88rem !important;
        line-height: 2 !important;
    }

    body.faq-page .faq-hero-badge,
    body.faq-page .faq-category-kicker,
    body.faq-page .faq-category-count {
        font-size: 0.74rem !important;
    }
}

/* ==================== اصلاح فونت FAQ بدون خراب کردن Font Awesome ==================== */

body.faq-page,
body.faq-page .faq-page-wrap,
body.faq-page .faq-page-wrap :not(i):not(.fa):not(.fas):not(.far):not(.fab),
body.faq-page .faq-mobile-bottom-bar :not(i):not(.fa):not(.fas):not(.far):not(.fab) {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif !important;
}

/* ==================== Home / FAQ Accordion - Light Blue Elegant Style ==================== */

.faq-section-separated {
    background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 34%), linear-gradient(180deg, #f8fbff 0%, #ffffff 100%) !important;
}

.faq-section-wrapper::before,
.faq-section-wrapper::after {
    background: rgba(125, 184, 255, 0.18) !important;
}

.faq-only-container {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(147, 197, 253, 0.28) !important;
    box-shadow: 0 24px 65px rgba(59, 130, 246, 0.10) !important;
}

.faq-intro-card {
    background: linear-gradient(135deg, #eff7ff 0%, #ffffff 100%) !important;
    border: 1px solid rgba(147, 197, 253, 0.35) !important;
    box-shadow: 0 14px 35px rgba(59, 130, 246, 0.08) !important;
}

.faq-intro-icon {
    background: #224173 !important;
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(96, 165, 250, 0.35) !important;
}

.faq-box-separated .accordion-item {
    background: #ffffff !important;
    border: 1px solid rgba(147, 197, 253, 0.32) !important;
    border-radius: 22px !important;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.055) !important;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .faq-box-separated .accordion-item:hover {
        transform: translateY(-3px);
        border-color: rgba(96, 165, 250, 0.55) !important;
        box-shadow: 0 20px 45px rgba(59, 130, 246, 0.13) !important;
    }

.faq-accordion .accordion-button {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 55%, #ffffff 100%) !important;
    color: #1e3a5f !important;
    border: none !important;
    border-radius: 22px !important;
    padding: 1.18rem 1.45rem !important;
    font-weight: 900 !important;
    font-size: 1.02rem !important;
    box-shadow: none !important;
    transition: all 0.25s ease !important;
}

    .faq-accordion .accordion-button span {
        position: relative;
        padding-right: 0.3rem;
    }

    .faq-accordion .accordion-button::after {
        display: none !important;
    }

    .faq-accordion .accordion-button .faq-icon {
        display: none !important;
    }

    .faq-accordion .accordion-button::before {
        content: '\002B';
        width: 34px;
        height: 34px;
        min-width: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: auto;
        margin-left: 0;
        border-radius: 12px;
        background: #ffffff;
        color: #3b82f6;
        font-family: Arial, sans-serif;
        font-size: 1.35rem;
        font-weight: 800;
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.16);
        transition: all 0.25s ease;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 45%, #ffffff 100%) !important;
        color: #12395f !important;
        border: none !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

        .faq-accordion .accordion-button:not(.collapsed)::before {
            content: '\2212';
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
            color: #ffffff;
            box-shadow: 0 10px 22px rgba(59, 130, 246, 0.28);
        }

.faq-box-separated .accordion-body {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
    color: #475569 !important;
    padding: 1.25rem 1.55rem 1.55rem !important;
    line-height: 2 !important;
    border-top: 1px solid rgba(147, 197, 253, 0.28) !important;
    font-size: 0.96rem;
}

.faq-header .modern-view-all {
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%) !important;
    color: #12395f !important;
    border: 1px solid rgba(96, 165, 250, 0.45) !important;
    box-shadow: 0 12px 26px rgba(59, 130, 246, 0.18) !important;
}

    .faq-header .modern-view-all:hover {
        background: #ffffff !important;
        color: #2563eb !important;
        border-color: rgba(37, 99, 235, 0.45) !important;
        box-shadow: 0 14px 32px rgba(59, 130, 246, 0.20) !important;
    }

.faq-mobile-toggle {
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%) !important;
    color: #1e3a5f !important;
    border: 1px solid rgba(147, 197, 253, 0.4) !important;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.10) !important;
}

    .faq-mobile-toggle[aria-expanded="true"] {
        background: linear-gradient(135deg, #bfdbfe 0%, #eff6ff 100%) !important;
        color: #12395f !important;
        border-color: rgba(96, 165, 250, 0.55) !important;
    }

body.dark-mode .faq-section-separated {
    background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.13), transparent 34%), linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 1)) !important;
}

body.dark-mode .faq-only-container {
    background: rgba(15, 23, 42, 0.82) !important;
    border-color: rgba(147, 197, 253, 0.18) !important;
}

body.dark-mode .faq-intro-card {
    background: rgba(30, 58, 95, 0.35) !important;
    border-color: rgba(147, 197, 253, 0.18) !important;
}

body.dark-mode .faq-accordion .accordion-button {
    background: linear-gradient(135deg, #1e3a5f 0%, #172554 100%) !important;
    color: #e0f2fe !important;
}

    body.dark-mode .faq-accordion .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%) !important;
        color: #ffffff !important;
    }

body.dark-mode .faq-box-separated .accordion-body {
    background: rgba(15, 23, 42, 0.96) !important;
    color: #dbeafe !important;
    border-top-color: rgba(147, 197, 253, 0.18) !important;
}

/* ==================== FAQ Accordion Like Quick Request Points ==================== */

/* کارت کلی هر سوال مثل quick-request-point */
.faq-box-separated .accordion-item,
.faq-accordion .accordion-item {
    background: #f8fafc !important;
    border: 1px solid rgba(34, 65, 115, 0.08) !important;
    border-radius: 1.1rem !important;
    margin-bottom: 0.9rem !important;
    overflow: hidden !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045) !important;
    transition: 0.26s ease !important;
}

    /* هاور شبیه کارت‌های تم سایت */
    .faq-box-separated .accordion-item:hover,
    .faq-accordion .accordion-item:hover {
        transform: translateY(-2px);
        border-color: rgba(34, 65, 115, 0.14) !important;
        box-shadow: 0 16px 32px rgba(34, 65, 115, 0.10) !important;
    }

/* دکمه سوال */
.faq-accordion .accordion-button,
.faq-box-separated .accordion-button {
    background: #f8fafc !important;
    color: #1e293b !important;
    border: none !important;
    border-radius: 1.1rem !important;
    box-shadow: none !important;
    padding: 0.85rem 1rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    line-height: 1.9 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    text-align: right !important;
    direction: rtl !important;
    transition: 0.26s ease !important;
}

    /* حذف فلش پیش‌فرض بوتسترپ */
    .faq-accordion .accordion-button::after,
    .faq-box-separated .accordion-button::after {
        display: none !important;
    }

    /* حذف + و - قبلی */
    .faq-accordion .accordion-button::before,
    .faq-box-separated .accordion-button::before {
        display: none !important;
        content: none !important;
    }

    /* استفاده از همان آیکون داخل خود ویو، ولی تبدیل به فلش منوی موبایل */
    .faq-accordion .accordion-button .faq-icon,
    .faq-box-separated .accordion-button .faq-icon {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        order: 2 !important;
        margin-right: auto !important;
        margin-left: 0 !important;
        background: linear-gradient(214deg, #224173, #1b3560) !important;
        color: #ffffff !important;
        border-radius: 1rem !important;
        box-shadow: 0 10px 18px rgba(34, 65, 115, 0.18) !important;
        font-size: 0 !important;
        flex-shrink: 0 !important;
        transition: 0.26s ease !important;
    }

        /* فلش پایین مثل منوی موبایل */
        .faq-accordion .accordion-button .faq-icon::before,
        .faq-box-separated .accordion-button .faq-icon::before {
            content: "\f078" !important;
            font-family: "Font Awesome 6 Free" !important;
            font-weight: 900 !important;
            font-size: 0.86rem !important;
            line-height: 1 !important;
        }

    /* حالت باز: همان آیکون، با چرخش 180 درجه مثل mobile-submenu-toggle */
    .faq-accordion .accordion-button:not(.collapsed) .faq-icon,
    .faq-box-separated .accordion-button:not(.collapsed) .faq-icon {
        transform: rotate(180deg) !important;
    }

    /* حالت باز سوال */
    .faq-accordion .accordion-button:not(.collapsed),
    .faq-box-separated .accordion-button:not(.collapsed) {
        background: #ffffff !important;
        color: #224173 !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

/* متن جواب */
.faq-accordion .accordion-body,
.faq-box-separated .accordion-body {
    background: #ffffff !important;
    color: #334155 !important;
    padding: 0.2rem 1rem 1rem 1rem !important;
    line-height: 1.9 !important;
    font-size: 0.96rem !important;
    text-align: right !important;
    border-top: 1px solid rgba(34, 65, 115, 0.08) !important;
}

/* کمی فاصله برای متن سوال */
.faq-accordion .accordion-button span,
.faq-box-separated .accordion-button span {
    display: block !important;
    padding-left: 0.7rem !important;
}

/* هماهنگی دکمه موبایل بخش سوالات با همین تم */
.faq-mobile-toggle {
    background: #f8fafc !important;
    color: #1e293b !important;
    border: 1px solid rgba(34, 65, 115, 0.08) !important;
    border-radius: 1.1rem !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045) !important;
}

    .faq-mobile-toggle[aria-expanded="true"],
    .faq-mobile-toggle:hover {
        color: #ffffff !important;
        background: linear-gradient(214deg, #224173, #1b3560) !important;
        box-shadow: 0 16px 32px rgba(34, 65, 115, 0.2) !important;
    }

/* Dark Mode */
body.dark-mode .faq-box-separated .accordion-item,
body.dark-mode .faq-accordion .accordion-item {
    background: rgba(15, 23, 42, 0.75) !important;
    border-color: rgba(148, 163, 184, 0.14) !important;
}

body.dark-mode .faq-accordion .accordion-button,
body.dark-mode .faq-box-separated .accordion-button {
    background: rgba(15, 23, 42, 0.75) !important;
    color: #e2e8f0 !important;
}

    body.dark-mode .faq-accordion .accordion-button:not(.collapsed),
    body.dark-mode .faq-box-separated .accordion-button:not(.collapsed) {
        background: rgba(30, 41, 59, 0.92) !important;
        color: #ffffff !important;
    }

body.dark-mode .faq-accordion .accordion-body,
body.dark-mode .faq-box-separated .accordion-body {
    background: rgba(15, 23, 42, 0.92) !important;
    color: #cbd5e1 !important;
    border-top-color: rgba(148, 163, 184, 0.14) !important;
}

/* ==================== آیکون علامت سوال کنار هر تیتر داخل آکاردئون ==================== */
.faq-accordion .accordion-button::before,
.faq-box-separated .accordion-button::before {
    content: "\f059"; /* Font Awesome fa-question-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: #2563eb; /* رنگ آبی جذاب مثل آیکون‌ها */
    margin-left: 0.6rem;
    margin-right: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

/* وقتی سوال باز شد (فلش موبایل هنوز می‌چرخد) */
.faq-accordion .accordion-button:not(.collapsed)::before,
.faq-box-separated .accordion-button:not(.collapsed)::before {
    transform: rotate(0deg);
}




/* فلش باز/بسته موبایل */
.faq-icon {
    margin-left: auto;
    transition: transform 0.25s ease;
}

/* وقتی سوال باز شد فلش می‌چرخد */
.accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}



/* مربع فلش هم دقیقاً هم‌اندازه و هم‌رنگ آیکون سوال */
.faq-accordion .accordion-button .faq-icon,
.faq-box-separated .accordion-button .faq-icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: auto !important;
    margin-left: 0 !important;
    border-radius: 1rem !important;
    background: linear-gradient(214deg, #224173, #1b3560) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 18px rgba(34, 65, 115, 0.18) !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
    transition: transform 0.25s ease !important;
}

/* چرخش فلش هنگام باز شدن */
.faq-accordion .accordion-button:not(.collapsed) .faq-icon,
.faq-box-separated .accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(180deg) !important;
}

/* آیکون علامت سوال کنار تیتر آکاردئون - کاملاً وسط دایره */
.faq-question-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 0.75rem !important;
    margin-right: 0 !important;
    border-radius: 50% !important;
    background: linear-gradient(214deg, #224173, #1b3560) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 18px rgba(34, 65, 115, 0.18) !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

    .faq-question-icon i {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.18rem !important;
        color: #ffffff !important;
        line-height: 1 !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
    }