.elementor-4143 .elementor-element.elementor-element-0d22dee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-66a32dc */@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&display=swap');

/* =========================================
   تنسيق الصفحة العام
   ========================================= */
.faq-page-wrapper {
    font-family: 'Cairo', sans-serif;
    background-color: #000;
    color: #fff;
    direction: rtl;
    padding-bottom: 80px;
    margin-top: -1px;
}

/* هيرو الصفحة */
.faq-page-hero {
    background: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
    text-align: center;
    padding: 80px 20px 50px;
    border-bottom: 1px solid #222;
}

.faq-page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.gold-text { color: #FFC107; }

.faq-page-hero p {
    color: #aaa;
    font-size: 1.1rem;
}

/* الكونتينر الرئيسي */
.faq-main-container {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 0 20px;
}

/* عناوين الأقسام */
.cat-title {
    color: #FFC107;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

/* =========================================
   عناصر الأكورديون (الأسئلة)
   ========================================= */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    background-color: #111;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FFC107;
}

/* زر السؤال */
.faq-btn {
    background-color: #111;
    color: #fff;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    text-align: right;
    border: none;
    outline: none;
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center; /* سنعدلها في الموبايل */
    transition: 0.4s;
}

/* عند الفتح */
.faq-btn.active {
    background-color: #FFC107;
    color: #000;
}

.faq-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-btn.active i {
    transform: rotate(45deg); /* تحويل + إلى x */
}

/* محتوى الإجابة */
.faq-content {
    padding: 0 20px;
    background-color: #0a0a0a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
    padding: 20px 0;
    margin: 0;
}

/* =========================================
   صندوق الدعوة (CTA)
   ========================================= */
.faq-cta-box {
    text-align: center;
    background: #111;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #FFC107;
    margin-top: 60px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.1);
}

.faq-cta-box h3 { color: #fff; margin-bottom: 10px; }
.faq-cta-box p { color: #888; margin-bottom: 25px; }

.faq-cta-btn {
    display: inline-block;
    background: #FFC107;
    color: #000;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: 0.3s;
}

.faq-cta-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* =========================================
   التجاوب مع الموبايل (حل مشكلة الكلام الطويل)
   ========================================= */
@media (max-width: 768px) {
    .faq-page-hero h1 { font-size: 2rem; }
    
    .faq-btn {
        font-size: 1rem;
        align-items: flex-start; /* محاذاة للأعلى عشان لو سطرين */
        line-height: 1.5;
    }
    
    .faq-btn span {
        width: 90%; /* ندي مساحة للكلام */
    }
    
    .faq-btn i {
        margin-top: 5px; /* تظبيط مكان الأيقونة */
    }
}/* End custom CSS */