/* تعريف الألوان الأساسية */
:root { 
    --primary: #00468b; 
    --secondary: #e63946; 
    --text: #333; 
    --light: #f8f9fa; 
}

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

body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; }

.container { width: 90%; max-width: 1200px; margin: auto; }

/* تنسيق الهيدر */
header { padding: 20px 0; border-bottom: 1px solid #eee; background: #fff; position: sticky; top: 0; z-index: 100; }
header .container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 24px; font-weight: bold; color: var(--primary); }
.logo span { color: var(--secondary); }

nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-inline-start: 20px; } /* دي خاصية بتفهم الاتجاه لوحدها */
nav ul li a { text-decoration: none; color: var(--text); font-weight: 500; }

/* تنسيق القسم الرئيسي */
.hero { 
    background: linear-gradient(rgba(0,70,139,0.8), rgba(0,70,139,0.8)), 
    url('https://images.unsplash.com/photo-1516549655169-df83a0774514?auto=format&fit=crop&w=1350&q=80'); 
    background-size: cover; 
    background-position: center;
    color: #fff; 
    padding: 120px 0; 
    text-align: center; 
}

.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; }

.btn { 
    background: var(--secondary); 
    color: #fff; 
    padding: 12px 35px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
    display: inline-block; 
    margin-top: 20px; 
    transition: 0.3s; 
}
.btn:hover { transform: scale(1.05); }

/* تنسيق الخدمات */
.services { padding: 60px 0; background: var(--light); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); text-align: center; }
.card h3 { color: var(--primary); margin-bottom: 15px; }

/* تنسيق الفوتر */
footer { text-align: center; padding: 30px 0; background: #1a1a1a; color: #999; font-size: 14px; }

/* تنسيق قائمة اللغات */
select { padding: 5px; border-radius: 4px; border: 1px solid #ccc; cursor: pointer; }