/* =====================================================
   FAQ PAGE CSS - عرض بسيط بدون فتح وقفل
===================================================== */

/* ====== FAQ Hero ====== */
.FAQ-Hero {
    position: relative;
    margin-top: 90px;
    padding: 120px 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.FAQ-Hero-Bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.FAQ-Hero-Bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.FAQ-Hero-Overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 43, 74, 0.75);
    z-index: 1;
}

.FAQ-Hero .Container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.FAQ-Hero-Content {
    max-width: 700px;
}

.FAQ-Hero-SubTitle {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    color: #F28C28;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.FAQ-Hero-Title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 18px;
}

.FAQ-Hero-Description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
}

/* ====== FAQ Items ====== */
.FAQ-Items {
    padding: 80px 0;
    background: #ffffff;
}

.FAQ-Items .Container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.Section-Header {
    text-align: center;
    margin-bottom: 50px;
}

.Section-SubTitle {
    display: inline-block;
    padding: 6px 20px;
    background: #e8f5e9;
    color: #54B448;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.Section-Title {
    font-size: 36px;
    font-weight: 700;
    color: #0B2B4A;
    margin: 12px 0 0;
}

/* ====== قائمة الأسئلة ====== */
.FAQ-Grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* ====== كل عنصر ====== */
.FAQ-Item {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e8edf2;
    overflow: hidden;
    padding: 24px 28px;
}

.FAQ-Item:hover {
    border-color: #54B448;
}

/* ====== السؤال ====== */
.FAQ-Question {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.FAQ-Number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #54B448;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.FAQ-Question-Text {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #0B2B4A;
    margin: 0;
}

/* ====== الإجابة ====== */
.FAQ-Answer {
    padding-left: 52px;
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
}

.FAQ-Answer p {
    margin: 0;
}

/* ====== FAQ CTA ====== */
.FAQ-CTA {
    padding: 70px 0;
}

.FAQ-CTA .Container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.FAQ-CTA-Wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.FAQ-CTA-SubTitle {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.FAQ-CTA-Title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.FAQ-CTA-Description {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.92);
}

.FAQ-CTA-Buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.FAQ-CTA-Btn-Primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #54B448;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.FAQ-CTA-Btn-Primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.FAQ-CTA-Btn-Primary i {
    transition: transform 0.3s ease;
}

.FAQ-CTA-Btn-Primary:hover i {
    transform: translateX(5px);
}

.FAQ-CTA-Btn-Secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 12px 38px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
}

.FAQ-CTA-Btn-Secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-3px);
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
    .FAQ-Hero {
        padding: 80px 0;
        margin-top: 70px;
        min-height: 320px;
    }
    
    .FAQ-Hero-Title {
        font-size: 32px;
    }
    
    .FAQ-Hero-Description {
        font-size: 16px;
    }
    
    .FAQ-Items {
        padding: 50px 0;
    }
    
    .Section-Title {
        font-size: 28px;
    }
    
    .FAQ-Item {
        padding: 18px 20px;
    }
    
    .FAQ-Question {
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .FAQ-Question-Text {
        font-size: 16px;
    }
    
    .FAQ-Number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .FAQ-Answer {
        padding-left: 42px;
        font-size: 15px;
    }
    
    .FAQ-CTA {
        padding: 50px 0;
    }
    
    .FAQ-CTA-Title {
        font-size: 28px;
    }
    
    .FAQ-CTA-Buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .FAQ-CTA-Btn-Primary,
    .FAQ-CTA-Btn-Secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .FAQ-Hero-Title {
        font-size: 26px;
    }
    
    .FAQ-Item {
        padding: 14px 16px;
    }
    
    .FAQ-Question-Text {
        font-size: 14px;
    }
    
    .FAQ-Answer {
        padding-left: 0;
        font-size: 14px;
    }
}

/* ====== RTL Support ====== */
[dir="rtl"] .FAQ-Hero-Content {
    text-align: right;
}

[dir="rtl"] .FAQ-Question {
    flex-direction: row-reverse;
}

[dir="rtl"] .FAQ-Answer {
    padding-left: 0;
    padding-right: 52px;
}

[dir="rtl"] .FAQ-CTA-Buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .FAQ-CTA-Btn-Primary i {
    transform: rotate(180deg);
}

[dir="rtl"] .FAQ-CTA-Btn-Primary:hover i {
    transform: rotate(180deg) translateX(5px);
}

@media (max-width: 768px) {
    [dir="rtl"] .FAQ-Answer {
        padding-right: 0;
    }
    
    [dir="rtl"] .FAQ-CTA-Buttons {
        flex-direction: column-reverse;
    }
}

/* ============================================
           FAQ PAGE - كل النصوص من DB
           ============================================ */
        
        .FAQ-Hero {
            position: relative;
            padding: 130px 0 60px;
            overflow: hidden;
            min-height: 400px;
            display: flex;
            align-items: center;
            background: #0B2B4A;
        }

        .FAQ-Hero .Container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .FAQ-Hero .FAQ-Hero-Bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .FAQ-Hero .FAQ-Hero-Bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }

        .FAQ-Hero .FAQ-Hero-Overlay {
            position: absolute;
            inset: 0;
            background: rgba(11, 43, 74, 0.7);
            z-index: 1;
        }

        .FAQ-Hero .FAQ-Hero-Content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .FAQ-Hero .FAQ-Hero-Content .breadcrumb {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 16px;
        }

        .FAQ-Hero .FAQ-Hero-Content .breadcrumb a {
            color: #54B448;
            text-decoration: none;
        }

        .FAQ-Hero .FAQ-Hero-Content .breadcrumb .separator {
            color: rgba(255, 255, 255, 0.4);
            margin: 0 6px;
        }

        .FAQ-Hero .FAQ-Hero-Content .breadcrumb .current {
            color: #ffffff;
            font-weight: 500;
        }

        .FAQ-Hero .FAQ-Hero-Content .FAQ-Hero-SubTitle {
            display: inline-block;
            padding: 4px 16px;
            border-radius: 30px;
            background: rgba(84, 180, 72, 0.2);
            color: #54B448;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .FAQ-Hero .FAQ-Hero-Content h1 {
            font-size: 42px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .FAQ-Hero .FAQ-Hero-Content .FAQ-Hero-Description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            max-width: 600px;
        }

        @media (max-width: 768px) {
            .FAQ-Hero {
                padding: 110px 0 40px;
                min-height: 300px;
            }
            .FAQ-Hero .FAQ-Hero-Content h1 {
                font-size: 30px;
            }
            .FAQ-Hero .FAQ-Hero-Content .FAQ-Hero-Description {
                font-size: 16px;
            }
        }

        [dir="rtl"] .FAQ-Hero .FAQ-Hero-Content .breadcrumb .separator {
            margin: 0 6px;
        }