:root {
    /* ألوان الخلفية الداكنة المتطابقة مع هُوية اللوجو */
    --bg-dark: #0b0d12;
    --bg-card: rgba(18, 20, 29, 0.85);
    
    /* درجات الأصفر الذهبي العسلي من اللوجو */
    --accent-yellow: #f5b000;
    --accent-gold: #ffc107;
    --accent-light: #ffd54f;
    
    /* ألوان النصوص */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* الحدود الزجاجية والإضاءة */
    --glass-border: rgba(245, 176, 0, 0.12);
    --glow-shadow: 0 8px 32px 0 rgba(245, 176, 0, 0.2);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

.navbar {
    background: rgba(11, 13, 18, 0.9) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.text-accent {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-yellow) !important;
}

.page-header {
    background: rgba(18, 20, 29, 0.6);
    border-bottom: 1px solid var(--glass-border);
}

.page-header h2 {
    font-size: clamp(1.4rem, 5vw, 2.5rem);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white !important;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transition: var(--transition-fast);
}

/* ==========================================
   تنسيقات كروت وقوائم الخدمات البرمجية
   ========================================== */
.service-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(10px);
    border-radius: 16px !important;
    transition: var(--transition-fast) !important;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 176, 0, 0.45) !important;
    box-shadow: var(--glow-shadow);
}

.service-list {
    list-style: none;
    padding-right: 0;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(245, 176, 0, 0.08);
    color: var(--text-main);
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
}

.service-list li:last-child {
    border-bottom: none;
}

/* إعطاء أيقونات قائمة الخدمات اللون الأصفر العسلي */
.service-list i {
    color: var(--accent-yellow);
    margin-left: 10px;
}

footer {
    background: #06070a !important;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}


html.light-mode .service-card {
    border-color: rgba(180, 150, 90, 0.14) !important;
    box-shadow: 0 12px 32px -14px rgba(43, 38, 32, 0.1);
}

html.light-mode .service-card:hover {
    box-shadow: 0 20px 40px -16px rgba(50, 45, 35, 0.14);
}

html.light-mode .service-list li {
    border-bottom-color: rgba(245, 176, 0, 0.14);
}
