/* ==========================================
   ملف التنسيق المشترك لخدمات دهانات وديكورات الشرقية
   (نسخة محسنة بالكامل ومطورة لتصفح الجوال واللمس)
   ========================================== */

:root {
    --brand-blue: #1e3a8a;
    --brand-gold: #d97706;
    --brand-green: #25d366;
    --brand-dark: #0f172a;
    --bg-light: #f8fafc;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-light);
    color: #334155;
    line-height: 1.6;
    -webkit-tap-highlight-color: transparent; /* إزالة اللون الأزرق عند الضغط على الروابط في الجوال */
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px; /* مسافة أمان مريحة على الجوانب في الجوال */
}

/* كلاس مساعد لعرض اللون الذهبي للبراند في أي نص */
.text-brand-gold {
    color: var(--brand-gold) !important;
}

/* ==========================================
   1. شريط الإعلان والخصم العلوي
   ========================================== */
.announcement {
    background-color: var(--brand-gold);
    color: #fff;
    text-align: center;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: bold;
}

/* ==========================================
   2. الهيدر الرئيسي والقائمة الثابتة
   ========================================== */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* حجز مساحة الهيدر مسبقاً لمنع اهتزاز التصميم (CLS) قبل تحميل السكربت */
#globalHeader {
    display: block;
    min-height: 135px; 
    background: #fff;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-badge {
    background: var(--brand-blue);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 18px;
}

.logo-text h1 {
    font-size: 15px;
    color: var(--brand-blue);
    font-weight: 700;
    line-height: 1.2;
}

.logo-text p {
    font-size: 10px;
    color: #64748b;
}

.header-btn {
    background: var(--brand-blue);
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 6px rgba(30, 58, 138, 0.15);
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    cursor: pointer;
}

.header-btn svg {
    width: 14px;
    height: 14px;
}

.header-btn:hover {
    transform: scale(1.03);
    background: #172554;
}

/* ==========================================
   تنسيقات شريط التنقل المتجاوب للجوال
   ========================================== */
.nav-bar {
    display: flex;
    justify-content: space-around; /* توزيع الروابط الأربعة بمسافات متناسقة للجوال تلقائياً */
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #f1f5f9;
    background: #fff;
}

.nav-bar a {
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    transition: background-color 0.2s, color 0.2s;
}

.nav-bar a:hover {
    background-color: rgba(30, 58, 138, 0.05);
}

/* بنية القائمة المنسدلة العائمة التفاعلية المتوافقة 100% مع شاشات اللمس للجوال */
/* إجبار المتصفح بـ !important على تثبيت المرجع لمنع تمدد أو طيران القائمة للأعلى نهائياً */
.dropdown {
    position: relative !important;
    display: inline-block !important;
}

/* إلغاء وتصفير تنسيقات الأزرار الافتراضية للمتصفحات لزر المنسدلة ليتطابق مع القائمة */
.dropdown-trigger {
    background: none;
    border: none;
    font-family: inherit;
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 50px;
    user-select: none;
    outline: none;
    transition: background-color 0.2s, color 0.2s;
    -webkit-appearance: none;
}

.dropdown-trigger:hover, .dropdown-trigger.active {
    background-color: rgba(30, 58, 138, 0.05);
    color: var(--brand-gold);
}

/* تصميم المنسدلة العائمة الفخمة (تطفو فوق المحتوى ولا تدفع الروابط المجاورة لأسفل) */
.dropdown-content {
    display: none; /* يتم التحكم بالظهور برمجياً بالضغط عبر السكربت */
    position: absolute !important;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
    z-index: 101;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    /* ضبط التموضع لليمين لتستفيد القائمة من مساحة الأمان بالوسط ولا تلامس حواف الشاشة اليسرى */
    right: 0 !important;
    left: auto !important;
    top: 100% !important;
    margin-top: 8px !important;
}

.dropdown-content a {
    color: #475569;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 12px;
    border-bottom: 1px solid #f8fafc;
    text-align: right;
    border-radius: 0;
}

.dropdown-content a:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-content a:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.dropdown-content a:hover {
    background-color: rgba(30, 58, 138, 0.05);
    color: var(--brand-blue);
}

/* تأكيد الوضعية المطلقة العائمة لمنع أي اهتزاز أو انزياح بمحتوى الصفحة ومواقع الروابط المجاورة */
@media (max-width: 767px) {
    .dropdown-content {
        position: absolute !important; /* إبقائها عائمة كـ طبقة علوية فوق البانر دون حجب أو إزاحة */
        right: 0 !important;
        left: auto !important;
        box-shadow: 0px 8px 24px rgba(0,0,0,0.12);
        border: 1px solid #f1f5f9;
        background: #fff;
        min-width: 150px;
        top: 100% !important;
        margin-top: 8px !important;
    }
}

/* ==========================================
   3. سيكشن الهيرو (البانر الرئيسي)
   ========================================== */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 40px 15px;
    text-align: center;
    position: relative;
}

.hero-tag {
    background: var(--brand-gold);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

.hero h2 {
    font-size: 24px;
    margin-top: 15px;
    font-weight: 900;
    line-height: 1.4;
}

.hero p {
    color: #cbd5e1;
    font-size: 14px;
    max-width: 600px;
    margin: 12px auto 0;
}

.hero-banner {
    background: rgba(255,255,255,0.08);
    border: 1px rgba(255,255,255,0.15) solid;
    backdrop-filter: blur(8px);
    padding: 18px;
    border-radius: 16px;
    max-width: 480px;
    margin: 25px auto 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-banner span {
    color: var(--brand-gold);
    font-weight: bold;
    font-size: 12px;
    display: block;
}

.hero-banner h3 {
    font-size: 16px;
    margin: 5px 0 15px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-call, .btn-wa {
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background-color 0.2s;
    width: 100%; /* جعل الأزرار تأخذ العرض الكامل في الجوال لسهولة الضغط */
    justify-content: center;
}

@media (min-width: 480px) {
    .btn-call, .btn-wa {
        width: auto; /* عودة الحجم الطبيعي للأزرار في الشاشات الأكبر */
    }
}

.btn-call svg, .btn-wa svg {
    width: 16px;
    height: 16px;
}

.btn-call {
    background: var(--brand-gold);
    color: #fff;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.btn-wa {
    background: var(--brand-green);
    color: #fff;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-call:hover, .btn-wa:hover {
    transform: translateY(-2px);
}

/* ==========================================
   4. قسم المميزات السريعة
   ========================================== */
.features {
    background: #fff;
    padding: 30px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .hero h2 { font-size: 38px; }
    .hero p { font-size: 16px; }
}

.feature-card {
    background: var(--bg-light);
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.feature-card svg {
    fill: var(--brand-gold);
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
}

.feature-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-dark);
}

.feature-card p {
    font-size: 10px;
    color: #64748b;
    margin-top: 2px;
}

/* ==========================================
   تنسيق قسم من نحن (About Section)
   ========================================== */
.about-sec {
    padding: 40px 0;
    background: #fff;
}

.about-wrapper {
    background: var(--bg-light);
    border: 1px solid #f1f5f9;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.about-wrapper h3 {
    font-size: 21px;
    color: var(--brand-blue);
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.about-wrapper h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--brand-gold);
    margin: 6px auto 0;
    border-radius: 2px;
}

.about-wrapper p {
    font-size: 13px;
    color: #475569;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   5. قسم الخدمات الرئيسية
   ========================================== */
.services {
    padding: 40px 0;
}

.sec-title {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 10px;
}

.sec-title h3 {
    font-size: 21px;
    color: var(--brand-blue);
    font-weight: 900;
}

.sec-title p {
    font-size: 12px;
    color: #64748b;
    margin-top: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.04) rotate(0);
}

.service-icon {
    background: rgba(30, 58, 138, 0.06);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.service-icon svg {
    fill: var(--brand-blue);
    width: 22px;
    height: 22px;
}

.service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 6px;
}

.service-card p {
    font-size: 12px;
    color: #475569;
    line-height: 1.6;
}

/* ==========================================
   6. قسم طيف الألوان المودرن
   ========================================== */
.colors-spec {
    background: #fff;
    padding: 40px 0;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .colors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.color-item {
    border: 1px solid #f1f5f9;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.color-circle {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    margin: 0 auto 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.color-item span {
    font-size: 12px;
    font-weight: 700;
    display: block;
}

.color-item p {
    font-size: 9px;
    color: #94a3b8;
}

/* ==========================================
   7. قسم معرض الصور ( aspect-ratio محسن للجوال)
   ========================================== */
.gallery {
    padding: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    /* تصحيح خطأ الكسور العشرية span 1.5 إلى القيمة الصحيحة المعتمدة span 2 */
    .img-wide {
        grid-column: span 2;
    }
}

.gallery-card {
    background: #fff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}

.img-wrapper {
    width: 100%;
    /* تفعيل نسبة العرض للارتفاع الذكية بدلاً من الارتفاع الثابت لعدم تشويه الصور */
    aspect-ratio: 4 / 3; 
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-wrapper img:hover {
    transform: scale(1.04);
}

.gallery-card p {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--brand-blue);
    margin-top: 8px;
}

/* ==========================================
   8. قسم آراء وتجارب العملاء
   ========================================== */
.testimonials-sec {
    padding: 40px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-light);
    border: 1px solid #f1f5f9;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-box {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.stars-box svg {
    width: 16px;
    height: 16px;
    fill: var(--brand-gold);
}

.t-comment {
    font-size: 12px;
    color: #475569;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
}

.t-author {
    font-size: 12px;
    font-weight: bold;
    color: var(--brand-blue);
    display: block;
}

/* ==========================================
   9. قسم نموذج الاتصال (الرصاصي) والزر المصحح
   ========================================== */
.lead-form-sec {
    padding: 40px 0;
    background: var(--bg-light);
}

.form-wrapper {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h3 {
    text-align: center;
    font-size: 20px;
    color: var(--brand-blue);
    font-weight: 900;
    margin-bottom: 8px;
}

.form-wrapper p {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 18px;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#contactForm input, #contactForm select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    background-color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none; /* توحيد شكل القائمة في أجهزة آبل (iOS) */
}

#contactForm input:focus, #contactForm select:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

/* تصحيح نقص تنسيقات الألوان وتفعيل display: flex للزر */
#contactForm button {
    border: none;
    cursor: pointer;
    padding: 14px;
    font-size: 14px;
    width: 100%;
    background-color: var(--brand-blue);
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(30, 58, 138, 0.15);
    transition: background-color 0.2s, transform 0.2s;
}

#contactForm button:hover {
    background-color: #172554;
    transform: scale(1.02);
}

/* ==========================================
   10. قسم الأسئلة الشائعة
   ========================================== */
.faq {
    background: #fff;
    padding: 40px 0;
}

.faq-box {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #f1f5f9;
}

.faq-item h4 {
    font-size: 14px;
    font-weight: bold;
    color: var(--brand-dark);
}

.faq-item p {
    font-size: 12px;
    color: #475569;
    margin-top: 5px;
    line-height: 1.5;
}

/* ==========================================
   11. الفوتر وتذييل الصفحة
   ========================================== */
footer {
    background-color: var(--brand-dark);
    color: #94a3b8;
    padding: 40px 15px;
    text-align: center;
    border-top: 1px solid #1e293b;
}

footer h3 {
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 6px;
}

footer p {
    font-size: 12px;
    max-width: 400px;
    margin: 0 auto 12px;
    line-height: 1.5;
}

.footer-regions {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 10px;
    margin-bottom: 20px;
}

.footer-regions span {
    color: #fff;
}

.footer-cta {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px;
    border-radius: 16px;
    max-width: 350px;
    margin: 0 auto;
}

.footer-cta span {
    font-size: 10px;
    color: var(--brand-gold);
    font-weight: bold;
    display: block;
}

.footer-cta a {
    font-size: 18px;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    display: block;
    margin-top: 2px;
}

/* تنسيقات شبكة روابط الفوتر الجديدة (Footer Links Grid) */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* انقسام الروابط لصفين متناسقين لليمين على الجوال */
    gap: 15px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.footer-col {
    text-align: right; /* محاذاة لليمين متناسقة تماشياً مع الـ RTL */
}

.footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

/* تصحيح تباين ألوان النصوص للمطور لتتخطى اختبارات قوقل بنجاح (Accessibility 100) */
.developer-text {
    margin-top: 25px;
    font-size: 12px;
    color: #cbd5e1; /* درجة رمادية واضحة فوق الخلفية الداكنة */
}

.developer-text a {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: bold;
}

.copy-text {
    font-size: 9px;
    color: #475569;
    margin-top: 25px;
}

/* ==========================================
   12. الأزرار العائمة وزر الصعود للأعلى (محسنة للجوال الصغير)
   ========================================== */
.floating-actions {
    position: fixed;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}

.float-btn {
    width: 48px; /* تقليص الأبعاد قليلاً 48px بدلاً من 52px لعدم حجب مساحة كبيرة في الهواتف الصغيرة */
    height: 48px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.05);
}

.f-call {
    background-color: var(--brand-blue);
}

.f-wa {
    background-color: var(--brand-green);
}

.float-btn svg {
    width: 22px;
    height: 22px;
}

#scrollToTop {
    position: fixed;
    bottom: 16px;
    left: 16px;
    width: 40px; /* تقليص الحجم ليناسب اليد وتصفح الهواتف بيد واحدة */
    height: 40px;
    border-radius: 50px;
    background-color: var(--brand-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
}

#scrollToTop.show {
    opacity: 1;
    transform: translateY(0);
}

#scrollToTop svg {
    width: 16px;
    height: 16px;
}

/* تحسين قراءة النصوص الطويلة والفقرات القانونية على الجوال */
main p {
    line-height: 1.8 !important;
}

/* ==========================================
   أكواد التنسيق الإضافية والمحدثة (لمنع التضارب البصري)
   ========================================== */

/* 1. تنسيقات بطاقات الاتصال المتجاوبة بصفحة تواصل معنا */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr); /* تظهر بجانب بعضها على الشاشات الكبيرة */
    }
}

.contact-card-item {
    background: var(--bg-light);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right;
}

.contact-card-icon {
    background: rgba(30, 58, 138, 0.06);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--brand-blue);
}

.contact-card-icon.c-wa-icon {
    background: rgba(37, 211, 102, 0.06);
}

.contact-card-icon.c-wa-icon svg {
    fill: var(--brand-green);
}

.contact-card-item h2 {
    font-size: 15px;
    font-weight: bold;
    color: var(--brand-dark);
    margin: 0;
}

.contact-card-item p {
    font-size: 13px;
    color: #475569;
    margin-top: 2px;
}

.contact-card-item p a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: bold;
}

/* 2. تنسيقات صفحة من نحن التفصيلية المحدثة */
.about-page-content h1 {
    font-size: 28px;
    color: var(--brand-blue);
    font-weight: 900;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--brand-gold);
    padding-bottom: 10px;
}

.about-page-content h2 {
    font-size: 18px;
    color: var(--brand-blue);
    font-weight: 700;
    margin-top: 30px; /* مسافة علوية كافية لفصل الفقرات بصرياً على الجوال */
    margin-bottom: 10px;
}

.about-page-content p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.8 !important; /* تفعيل التباعد المريح للعين تلقائياً */
}

.about-list {
    margin-right: 20px; /* إزاحة لليمين تماشياً مع الـ RTL */
    margin-bottom: 25px;
    font-size: 14px;
    color: #475569;
    list-style-type: square;
    line-height: 1.8 !important;
}

.about-list li {
    margin-bottom: 8px;
    padding-right: 5px;
}
