/* مخطط ألوان محسن للوضع الليلي */
:root {
    /* الألوان الرئيسية - الوضع النهاري */
    --primary-color: #d4af37;
    --primary-dark: #b3941f;
    --primary-light: #e6c44d;
    --secondary-color: #1a1a1a;
    --secondary-light: #333333;
    --accent-color: #8b0000;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-color: #dee2e6;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --footer-bg: #1a1a1a;
    --hero-bg: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    --section-bg: #f9f9f9;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --text-muted: #6c757d;
}

/* الوضع الليلي المحسن */
[data-theme="dark"] {
    /* الألوان الرئيسية - الوضع الليلي */
    --primary-color: #e6c44d; /* زيادة طفيفة في السطوع للتباين الأفضل */
    --primary-dark: #d4af37;
    --primary-light: #f0d575;
    --secondary-color: #1e1e1e; /* رمادي داكن بدلاً من الأسود الخالص */
    --secondary-light: #2a2a2a;
    --accent-color: #c74545; /* أقل تشبعاً وأكثر سطوعاً */
    --text-color: #e0e0e0; /* أبيض مخفف بدلاً من الأبيض الخالص */
    --light-color: #cccccc;
    --dark-color: #e0e0e0;
    --border-color: #444;
    --bg-color: #1e1e1e; /* رمادي داكن بدلاً من الأسود الخالص */
    --card-bg: #2a2a2a; /* أفتح قليلاً من الخلفية الرئيسية */
    --footer-bg: #171717;
    --hero-bg: linear-gradient(135deg, #171717 0%, #2a2a2a 100%);
    --section-bg: #252525;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --text-muted: #a0a0a0;
}

/* تحسينات إضافية للوضع الليلي */
[data-theme="dark"] .navbar {
    background-color: rgba(30, 30, 30, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .service-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .accordion-item {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] img {
    filter: brightness(0.9);
}

[data-theme="dark"] .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #1e1e1e; /* نص داكن على خلفية فاتحة للتباين */
}

[data-theme="dark"] .btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: #1e1e1e;
}

[data-theme="dark"] .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

[data-theme="dark"] .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #1e1e1e;
}

/* تحسين قراءة النصوص في الوضع الليلي */
[data-theme="dark"] p, 
[data-theme="dark"] li, 
[data-theme="dark"] span {
    font-weight: 400; /* وزن خط متوسط لتحسين القراءة */
    letter-spacing: 0.01em; /* زيادة طفيفة في المسافة بين الحروف */
}

/* تحسين التباين للعناصر المهمة */
[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] h4, 
[data-theme="dark"] h5, 
[data-theme="dark"] h6 {
    color: #f0f0f0; /* أكثر سطوعاً للعناوين */
}

/* تحسين مظهر الروابط */
[data-theme="dark"] a:not(.btn):not(.nav-link) {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="dark"] a:not(.btn):not(.nav-link):hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* تحسين مظهر الحقول والنماذج */
[data-theme="dark"] .form-control, 
[data-theme="dark"] .form-select {
    background-color: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

[data-theme="dark"] .form-control:focus, 
[data-theme="dark"] .form-select:focus {
    background-color: #333;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(230, 196, 77, 0.25);
}

/* تحسين مظهر الجداول */
[data-theme="dark"] table {
    border-color: #444;
}

[data-theme="dark"] th {
    background-color: #2a2a2a;
}

[data-theme="dark"] tr:nth-child(even) {
    background-color: #252525;
}

/* تحسين مظهر الأيقونات */
[data-theme="dark"] .service-icon,
[data-theme="dark"] .stat-icon {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* تحسين مظهر الظلال */
[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .about-image,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .contact-info {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* تحسين مظهر زر تبديل الوضع */
[data-theme="dark"] .theme-toggle {
    border-color: rgba(230, 196, 77, 0.5);
    color: var(--primary-color);
}

[data-theme="dark"] .theme-toggle:hover {
    background-color: rgba(230, 196, 77, 0.1);
}

/* تحسين مظهر الشريط العلوي */
[data-theme="dark"] .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .navbar-dark .navbar-nav .nav-link:hover,
[data-theme="dark"] .navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* تحسين مظهر الأقسام */
[data-theme="dark"] section:nth-child(even) {
    background-color: #1e1e1e;
}

[data-theme="dark"] section:nth-child(odd) {
    background-color: #252525;
}
