.elementor-3805 .elementor-element.elementor-element-fced7cb{--display:flex;}/* Nekit custom element styles *//* --- إعدادات عامة للهيدر --- */
.smart-header {
    font-family: 'tajawal', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--primary); /* أزرق داكن */
    z-index: 1000;
    transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

/* حالة السكرول لأعلى (الهيدر الثابت) */
.smart-header.is-sticky {
    background-color: rgba(10, 17, 40, 0.95); /* شفافية بسيطة */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 1rem 5%; /* تقليل الحجم قليلاً عند النزول */
}

/* حالة السكرول لأسفل (إخفاء الهيدر) */
.smart-header.is-hidden {
    transform: translateY(-100%);
}

/* --- اللوجو النصي --- */
.site-logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    background: linear-gradient(to left, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- القائمة العلوية والفواصل --- */
.site-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem; /* زيادة المسافة قليلاً لإبراز الفواصل */
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

/* الفاصل بين الكلمات (|) تم توضيحه وتكبيره */
.nav-links li:not(:last-child)::after {
    content: '|';
    position: absolute;
    left: -1rem; /* في منتصف المسافة (2rem) تماماً */
    color: var(--gold); /* لون ذهبي صريح */
    opacity: 1; /* إزالة الشفافية لتوضيحه */
    font-weight: 700; /* خط سميك */
    font-size: 1.2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* --- أيقونة اللغة الذهبية بتقنية الـ Mask --- */
.lang-switch {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.lang-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: var(--gold); /* اللون الذهبي الذي ستأخذه الأيقونة */
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: transform 0.3s ease;
}

.lang-switch:hover .lang-icon {
    transform: scale(1.1);
}

/* --- تعديل بسيط على الهيرو ليستوعب الهيدر الثابت --- */
main {
    margin-top: 100px; /* لتجنب اختفاء جزء من الهيرو تحت الهيدر */
}/* Nekit custom element styles ends here */