/* Start custom CSS for html, class: .elementor-element-465a347 *//* =========================================
   تنسيق حاوية المحتوى (البطاقة البيضاء)
   ========================================= */
.maid-profile-container {
    background-color: #ffffff !important; /* لون أبيض نقي */
    color: #333333 !important; /* إجبار النصوص لتكون غامقة */
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
    max-width: 800px;
    margin: 40px auto; /* مسافة من الأعلى والأسفل */
    padding: 30px;
    border-radius: 15px; /* حواف ناعمة */
    /* ظل قوي ليفصل البطاقة عن الخلفية الغامقة */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
    position: relative;
    overflow: hidden;
}

/* =========================================
   العناوين والنصوص
   ========================================= */
.maid-profile-container h1 {
    color: #2c3e50 !important; /* كحلي غامق */
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.5;
}

.maid-profile-container p {
    color: #555555 !important; /* رمادي متوسط */
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
   جدول المواصفات
   ========================================= */
.specs-table {
    background-color: #f8f9fa !important; /* رمادي فاتح جداً */
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 0 !important; /* إلغاء البادينغ القديم للتحكم به هنا */
    overflow: hidden;
    margin-bottom: 30px;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 15px;
    border-bottom: 1px solid #e1e1e1;
    color: #444 !important;
}

/* تلوين العمود الأيمن (العناوين) */
.specs-table td:first-child {
    font-weight: bold;
    background-color: #f1f3f5; /* تمييز العناوين */
    color: #2c3e50 !important;
    width: 35%;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

/* =========================================
   الأسئلة الشائعة (الأكورديون)
   ========================================= */
.faq-section details {
    background-color: #ffffff !important;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.faq-section details[open] {
    border-color: #27ae60; /* حدود خضراء عند الفتح */
    background-color: #fcfcfc !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-section summary {
    padding: 15px;
    color: #2c3e50 !important;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* إخفاء السهم الافتراضي */
    position: relative;
    padding-left: 40px;
}

/* أيقونة + و - */
.faq-section summary::after {
    content: '+';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #aaa;
    font-weight: normal;
}

.faq-section details[open] summary::after {
    content: '-';
    color: #27ae60;
    font-weight: bold;
}

/* =========================================
   أزرار التواصل (CTA)
   ========================================= */
.cta-actions-section {
    background-color: #f8fcf9 !important; /* خلفية خضراء باهتة جداً */
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.buttons-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    color: #ffffff !important; /* نص أبيض للأزرار */
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 180px;
}

/* زر الواتساب */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* زر الاتصال */
.btn-call {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3);
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn-action .icon {
    margin-left: 10px;
    font-size: 18px;
}

/* =========================================
   التجاوب مع الجوال
   ========================================= */
@media (max-width: 768px) {
    .maid-profile-container {
        padding: 20px;
        margin: 20px 10px; /* هوامش جانبية صغيرة في الجوال */
    }

    .specs-table td {
        display: block;
        width: 100%;
    }

    .specs-table td:first-child {
        background-color: transparent;
        color: #888 !important;
        font-size: 14px;
        padding-bottom: 5px;
        border-bottom: none;
    }

    .specs-table td:last-child {
        padding-top: 0;
        font-weight: bold;
        font-size: 16px;
    }

    .btn-action {
        width: 100%; /* الأزرار بعرض كامل في الجوال */
        margin-bottom: 10px;
    }
}/* End custom CSS */