/* 🔧 استعادة العناصر المفقودة */

/* التأكد من ظهور التنقل */
#main-navigation,
.header-nav,
.nav-link {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#main-navigation {
    display: flex !important;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-link {
    display: inline-block !important;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
}

/* التأكد من ظهور قسم العملاء */
.clients-section,
#clients {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.clients-grid {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* التأكد من ظهور محتوى الهيرو */
.hero-text,
.hero-content,
.hero-actions,
.hero-meta {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-actions {
    display: flex !important;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* التأكد من ظهور الأزرار */
.btn,
.cta-btn,
.action-button {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* التأكد من ظهور النصوص */
h1, h2, h3, h4, h5, h6, p, span, div {
    visibility: visible !important;
    opacity: 1 !important;
}

/* التأكد من ظهور الشعار */
.brand,
.brand-logo,
.brand-text {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* التأكد من ظهور اختيار اللغة */
.language-switcher,
.language-dropdown {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* إصلاح أي مشاكل في التخطيط */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

/* التأكد من ظهور الإحصائيات */
.stats-grid,
.stat {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* إصلاح الهيدر */
.header-layout {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-right {
    display: flex !important;
    align-items: center;
    gap: 1rem;
}

/* إصلاح التنقل */
.header-nav {
    display: block !important;
    width: 100%;
    margin-top: 1rem;
}

/* التأكد من ظهور جميع الأقسام */
.services-section,
.process-section,
.clients-section,
.contact-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}