/* ========================================
   DROPDOWN STYLES - Fixed Positioning
   ======================================== */

   .dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    width: 280px; /* عرض ثابت */
    background: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    border-radius: 16px;
    box-shadow: var(--dropdown-shadow);
    padding: 0.8rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
    backdrop-filter: blur(20px);
  }
  
  .has-dropdown.open > .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  /* إلغاء جميع التعديلات - موضع واحد ثابت للجميع */
  [dir="rtl"] .dropdown-panel,
  [dir="ltr"] .dropdown-panel,
  [dir="rtl"] .has-dropdown.open > .dropdown-panel,
  [dir="ltr"] .has-dropdown.open > .dropdown-panel,
  .has-dropdown:first-child .dropdown-panel,
  .has-dropdown:last-child .dropdown-panel,
  .has-dropdown:first-child.open .dropdown-panel,
  .has-dropdown:last-child.open .dropdown-panel,
  [dir="rtl"] .has-dropdown:first-child .dropdown-panel,
  [dir="rtl"] .has-dropdown:last-child .dropdown-panel,
  [dir="rtl"] .has-dropdown:first-child.open .dropdown-panel,
  [dir="rtl"] .has-dropdown:last-child.open .dropdown-panel {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }/* ========================================
     Modern Professional Header & Footer Styles
     ======================================== */
  
  :root {
    /* Primary Colors */
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --primary-light: #6ea8fe;
    
    /* Header Colors */
    --hdr-bg: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    --hdr-fg: #ffffff;
    --hdr-shadow: 0 8px 32px rgba(13, 110, 253, 0.15);
    
    /* Dropdown Colors */
    --dropdown-bg: #ffffff;
    --dropdown-fg: #1a1a1a;
    --dropdown-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    --dropdown-border: rgba(13, 110, 253, 0.08);
    
    /* Interactive States */
    --hover-bg: rgba(255, 255, 255, 0.12);
    --active-bg: rgba(255, 255, 255, 0.2);
    --ring: rgba(255, 255, 255, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  /* ========================================
     HEADER STYLES
     ======================================== */
  
  .dt-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1200 !important;
    background: var(--hdr-bg);
    backdrop-filter: blur(20px);
    box-shadow: var(--hdr-shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .dt-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
      rgba(255,255,255,0.05) 0%, 
      transparent 50%, 
      rgba(255,255,255,0.05) 100%);
    pointer-events: none;
  }
  
  .dt-header-wrap {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    padding: 0 2rem;
    min-height: 75px;
  }
  
  /* تثبيت مواضع الأقسام الثلاثة */
  .dt-logo {
    flex: 0 0 auto;
    min-width: 200px;
  }
  
  .dt-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
  }
  
  .dt-actions {
    flex: 0 0 auto;
    min-width: 250px;
    display: flex;
    justify-content: flex-end;
  }
  
  /* ========================================
     LOGO STYLES
     ======================================== */
  
  .dt-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--hdr-fg);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
  }
  
  .dt-logo:hover {
    transform: translateY(-2px);
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
  }
  
  .dt-logo:hover .logo-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(5deg);
  }
  
  .logo-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    animation: pulse 3s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }
  
  .logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
  }
  
  .logo-main {
    font-size: 1.4rem;
    font-weight: 800;
  }
  
  .logo-dot {
    color: #fff;
    font-size: 1.4rem;
    animation: blink 2s ease-in-out infinite;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  
  .logo-sub {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.95;
  }
  
  /* ========================================
     NAVIGATION STYLES - Fixed Center Layout
     ======================================== */
  
  .dt-nav {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .dt-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 600px; /* عرض أصغر للقائمة الكاملة */
    gap: 0;
  }
  
  /* كل عنصر له عرض ثابت أصغر */
  .has-dropdown {
    position: relative;
    flex: 0 0 120px; /* عرض ثابت 120px لكل عنصر - أصغر */
    display: flex;
    justify-content: center;
  }
  
  .nav-link {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--hdr-fg);
    font-weight: 600;
    padding: 0.5rem 0.4rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
  }
  
  .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hover-bg);
    opacity: 0;
    transition: var(--transition-fast);
    border-radius: 12px;
  }
  
  .nav-link:hover::before,
  .has-dropdown.open > .nav-link::before {
    opacity: 1;
  }
  
  .nav-link:hover {
    transform: translateY(-2px);
  }
  
  .nav-icon {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.1rem;
    transition: var(--transition-smooth);
  }
  
  .nav-link:hover .nav-icon {
    transform: scale(1.1);
  }
  
  .nav-label {
    font-size: 0.8rem;
    display: block;
    position: relative;
  }
  
  .nav-arrow {
    display: none; /* مخفي للتبسيط */
  }
  
  /* Menu Indicator */
  .menu-indicator {
    display: none; /* مخفي للتبسيط */
  }
  
  /* الشاشات المتوسطة */
  @media (max-width: 1200px) {
    .dt-menu {
      width: 550px;
    }
    
    .has-dropdown {
      flex: 0 0 110px;
    }
  }
  
  @media (max-width: 1024px) {
    .dt-menu {
      width: 500px;
    }
    
    .has-dropdown {
      flex: 0 0 100px;
    }
    
    .nav-icon {
      font-size: 1.1rem;
    }
    
    .nav-label {
      font-size: 0.75rem;
    }
  }
  
  /* ========================================
     DROPDOWN STYLES - Fixed Positioning
     ======================================== */
  
  .has-dropdown {
    position: relative;
    width: 160px; /* عرض ثابت لكل عنصر */
    display: flex;
    justify-content: center;
  }
  
  .dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    width: 300px; /* عرض ثابت للقائمة المنسدلة */
    background: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    border-radius: 16px;
    box-shadow: var(--dropdown-shadow);
    padding: 0.8rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(20px);
  }
  
  .has-dropdown.open > .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 12px;
  }
  
  /* إزالة التعديلات الخاصة بـ RTL/LTR - نفس الموضع للجميع */
  [dir="rtl"] .dropdown-panel,
  [dir="ltr"] .dropdown-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  
  [dir="rtl"] .has-dropdown.open > .dropdown-panel,
  [dir="ltr"] .has-dropdown.open > .dropdown-panel {
    transform: translateX(-50%);
  }
  
  /* إزالة التعديلات الخاصة بالعنصر الأول والأخير */
  .has-dropdown:first-child .dropdown-panel,
  .has-dropdown:last-child .dropdown-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  
  .has-dropdown:first-child.open .dropdown-panel,
  .has-dropdown:last-child.open .dropdown-panel {
    transform: translateX(-50%);
  }
  
  [dir="rtl"] .has-dropdown:first-child .dropdown-panel,
  [dir="rtl"] .has-dropdown:last-child .dropdown-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  
  [dir="rtl"] .has-dropdown:first-child.open .dropdown-panel,
  [dir="rtl"] .has-dropdown:last-child.open .dropdown-panel {
    transform: translateX(-50%);
  }
  
  .dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
  }
  
  .dropdown-header i {
    font-size: 1.2rem;
  }
  
  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: var(--dropdown-fg);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
  }
  
  .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: var(--transition-smooth);
    border-radius: 0 3px 3px 0;
  }
  
  .dropdown-item:hover {
    background: linear-gradient(90deg, 
      rgba(13, 110, 253, 0.08) 0%, 
      rgba(13, 110, 253, 0.03) 100%);
    color: var(--primary);
    transform: translateX(5px);
  }
  
  .dropdown-item:hover::before {
    height: 60%;
  }
  
  .dropdown-item i {
    font-size: 1.1rem;
    opacity: 0.8;
    transition: var(--transition-fast);
  }
  
  .dropdown-item:hover i {
    opacity: 1;
    transform: scale(1.1);
  }
  
  /* ========================================
     ACTION BUTTONS
     ======================================== */
  
  .dt-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .action-btn {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    border: 1px solid var(--ring);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--hdr-fg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
  }
  
  .action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .action-btn i {
    font-size: 1.1rem;
  }
  
  .lang-btn {
    min-width: 120px;
  }
  
  .logout-btn {
    padding: 0 0.8rem;
  }
  
  .logout-btn:hover {
    background: rgba(220, 53, 69, 0.9);
    border-color: rgba(220, 53, 69, 1);
  }
  
  /* ========================================
     USER PROFILE - مع لوجو الشركة
     ======================================== */
  
  .user-profile {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--ring);
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
  }
  
  .user-profile:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 4px;
    overflow: hidden;
  }
  
  /* لوجو الشركة بدلاً من الأيقونة */
  .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* إذا لم يكن هناك صورة - استخدم أيقونة */
  .user-avatar i {
    font-size: 1.3rem;
    color: var(--primary);
  }
  
  .user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  /* ========================================
     MOBILE MENU
     ======================================== */
  
  .burger {
    display: none;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--ring);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  
  .burger:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .burger span {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition-smooth);
  }
  
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* ========================================
     LOADING BAR
     ======================================== */
  
  .loading-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .loading-bar.active {
    animation: loadingProgress 2s ease-in-out;
  }
  
  @keyframes loadingProgress {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(0.7); }
    100% { transform: scaleX(1); opacity: 0; }
  }
  
  /* ========================================
     FOOTER STYLES
     ======================================== */
  
  .dt-footer {
    background: var(--hdr-bg);
    color: var(--hdr-fg);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
  }
  
  .footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    color: white;
    transform: translateY(-100%);
  }
  
  .footer-wave svg {
    width: 100%;
    height: 100%;
  }
  
  .footer-content {
    padding: 3rem 2rem 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  /* Footer Main Section */
  .footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Brand Section */
  .footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 250px;
  }
  
  .brand-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
  }
  
  .brand-logo svg {
    width: 30px;
    height: 30px;
    color: white;
  }
  
  .brand-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.3rem 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  
  .brand-text .dot {
    color: white;
  }
  
  .brand-tagline {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
  }
  
  /* Footer Links */
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    min-width: 500px;
  }
  
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    color: white;
    position: relative;
    padding-bottom: 0.6rem;
    line-height: 1.2;
    min-height: 24px;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
  }
  
  /* في RTL - الخط على اليمين */
  [dir="rtl"] .footer-title::after {
    left: auto;
    right: 0;
  }
  
  /* في LTR - الخط على اليسار */
  [dir="ltr"] .footer-title::after {
    left: 0;
    right: auto;
  }
  
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .footer-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.45rem 0.7rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .footer-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: translateX(5px);
  }
  
  [dir="rtl"] .footer-menu a:hover {
    transform: translateX(-5px);
  }
  
  .footer-menu a i {
    font-size: 0.95rem;
    opacity: 0.8;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
  }
  
  /* Footer Status */
  .footer-status {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 200px;
  }
  
  .status-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28a745;
    box-shadow: 0 0 10px #28a745;
    animation: statusPulse 2s ease-in-out infinite;
    flex-shrink: 0;
  }
  
  @keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
  }
  
  .system-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.3;
  }
  
  .info-item i {
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    padding-top: 1.5rem;
  }
  
  .footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.85;
    line-height: 1.4;
    min-width: 250px;
  }
  
  .copyright i {
    font-size: 0.95rem;
    flex-shrink: 0;
  }
  
  .footer-tech {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 200px;
  }
  
  .tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
  }
  
  .tech-badge i {
    font-size: 0.95rem;
    animation: lightning 2s ease-in-out infinite;
    flex-shrink: 0;
  }
  
  @keyframes lightning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; transform: scale(1.2); }
  }
  
  /* Social Links */
  .footer-social {
    display: flex;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: flex-end;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
    flex-shrink: 0;
  }
  
  .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  /* Animated Background Particles */
  .footer-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.3;
  }
  
  .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
  }
  
  .particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
  }
  
  .particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 15s;
  }
  
  .particle:nth-child(3) {
    left: 60%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 18s;
  }
  
  .particle:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 6s;
    animation-duration: 14s;
  }
  
  .particle:nth-child(5) {
    left: 50%;
    top: 90%;
    animation-delay: 8s;
    animation-duration: 16s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0) translateX(0);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    50% {
      transform: translateY(-100px) translateX(50px);
    }
  }
  
  /* ========================================
     RESPONSIVE DESIGN
     ======================================== */
  
  @media (max-width: 1200px) {
    .footer-main {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .footer-links {
      grid-template-columns: repeat(3, 1fr);
      min-width: auto;
    }
    
    .footer-brand,
    .footer-status {
      min-width: auto;
    }
  }
  
  @media (max-width: 992px) {
    /* Header Mobile */
    .dt-header-wrap {
      padding: 0 1rem;
      gap: 1rem;
    }
  
    /* إخفاء القائمة الرئيسية */
    .dt-menu {
      display: none;
      width: 100%;
    }
  
    /* عند الفتح */
    .dt-menu.open {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0.5rem;
      position: absolute;
      left: 0;
      right: 0;
      top: 75px;
      background: var(--hdr-bg);
      padding: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      max-height: calc(100vh - 75px);
      overflow-y: auto;
      z-index: 999;
    }
  
    .has-dropdown {
      flex: 0 0 auto;
      width: 100%;
    }
  
    .nav-link {
      flex-direction: row;
      justify-content: flex-start;
      padding: 0.8rem 1rem;
      width: 100%;
      text-align: start;
    }
  
    .nav-icon {
      margin-bottom: 0;
      margin-inline-end: 0.7rem;
      font-size: 1.3rem;
    }
  
    .nav-label {
      font-size: 0.95rem;
      text-align: start;
    }
  
    .nav-arrow {
      display: block;
      margin-inline-start: auto;
      font-size: 0.9rem;
      opacity: 0.7;
      transition: var(--transition-smooth);
    }
  
    .has-dropdown.open > .nav-link .nav-arrow {
      transform: rotate(180deg);
    }
  
    /* في الموبايل - القائمة تنزل بشكل طبيعي */
    .dropdown-panel {
      position: static !important;
      transform: none !important;
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
      width: 100% !important;
      left: auto !important;
      right: auto !important;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }
  
    .has-dropdown.open > .dropdown-panel {
      transform: none !important;
    }
  
    .dropdown-header {
      color: white;
      border-bottom-color: rgba(255, 255, 255, 0.2);
    }
  
    .dropdown-item {
      color: rgba(255, 255, 255, 0.95);
    }
  
    .dropdown-item:hover {
      background: rgba(255, 255, 255, 0.1);
      color: white;
    }
  
    /* إظهار الـ Burger */
    .burger {
      display: flex !important;
    }
  
    .menu-indicator {
      display: none;
    }
  
    /* إخفاء User Profile في الشاشات الصغيرة جداً */
    .user-profile {
      display: flex;
    }
  
    /* Footer Mobile */
    .footer-links {
      grid-template-columns: 1fr;
    }
  
    .footer-bottom-content {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    
    .copyright,
    .footer-tech,
    .footer-social {
      min-width: auto;
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .dt-header-wrap {
      height: 65px;
    }
  
    .logo-text {
      font-size: 0.9rem;
    }
  
    .logo-icon {
      width: 35px;
      height: 35px;
    }
  
    .action-btn {
      height: 38px;
      padding: 0 0.8rem;
      font-size: 0.85rem;
    }
  
    .lang-btn {
      min-width: auto;
    }
  
    .lang-current {
      display: none;
    }
  
    .footer-content {
      padding: 2rem 1rem 1rem;
    }
  
    .footer-main {
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .dt-actions {
      gap: 0.5rem;
    }
  
    .action-btn {
      padding: 0 0.6rem;
    }
  
    .logout-btn span {
      display: none;
    }
  }
  
  /* ========================================
     UTILITY CLASSES
     ======================================== */
  
  .dt-header.scrolled {
    box-shadow: 0 10px 40px rgba(13, 110, 253, 0.25);
  }
  
  .dt-header.scrolled .loading-bar {
    height: 2px;
  }
  
  /* Hide old Bootstrap navbar */
  .navbar.navbar-expand-lg.navbar-dark.bg-primary {
    display: none !important;
  }
  
  /* Smooth Scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Selection Colors */
  ::selection {
    background: var(--primary-light);
    color: white;
  }
  /* Contact Button Styling */
  .action-btn.contact-btn {
      background: linear-gradient(135deg, #00bfa5 0%, #00897b 100%);
      color: white !important;
      transition: all 0.3s ease;
  }
  
  .action-btn.contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 191, 165, 0.4);
  }
  
  .action-btn.contact-btn i {
      margin-left: 8px;
  }
  
  
  /* ====================================
     إصلاح قائمة البرجر للشاشات الصغيرة
     ==================================== */
  
  /* تحسين القائمة المنسدلة على الموبايل */
  @media (max-width: 768px) {
      .dt-header {
          padding: 12px 15px;
      }
      
      .dt-menu {
          position: fixed;
          top: 70px;
          left: 0;
          right: 0;
          background: linear-gradient(135deg, #0a0f14 0%, #08121a 100%);
          backdrop-filter: blur(20px);
          padding: 20px;
          margin: 0;
          max-height: calc(100vh - 70px);
          overflow-y: auto;
          transform: translateX(100%);
          transition: transform 0.3s ease;
          box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
          z-index: 999;
      }
      
      .dt-menu.active {
          transform: translateX(0);
      }
      
      .dt-menu li {
          margin-bottom: 15px;
          width: 100%;
      }
      
      .nav-link {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 15px 20px;
          background: rgba(0, 191, 165, 0.08);
          border: 1px solid rgba(0, 191, 165, 0.22);
          border-radius: 12px;
          color: #f5f5f5;
          font-size: 1.1rem;
          width: 100%;
          text-align: right;
          transition: all 0.3s ease;
      }
      
      .nav-link:hover,
      .nav-link:active {
          background: rgba(0, 191, 165, 0.15);
          border-color: rgba(0, 191, 165, 0.5);
      }
      
      .nav-icon {
          font-size: 1.3rem;
          margin-left: 12px;
      }
      
      .nav-label {
          flex: 1;
          text-align: right;
      }
      
      /* القائمة المنسدلة الداخلية */
      .dropdown-panel {
          position: static;
          transform: none;
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
          box-shadow: none;
          margin-top: 10px;
          background: rgba(0, 191, 165, 0.05);
          border-radius: 8px;
          padding: 10px;
          display: none;
      }
      
      .has-dropdown.active .dropdown-panel {
          display: block;
      }
      
      .dropdown-item {
          padding: 12px 15px;
          margin-bottom: 8px;
          border-radius: 8px;
          background: rgba(255, 255, 255, 0.05);
          display: flex;
          align-items: center;
          gap: 12px;
          color: #f5f5f5;
          text-decoration: none;
          transition: all 0.3s ease;
      }
      
      .dropdown-item:hover {
          background: rgba(0, 191, 165, 0.2);
          transform: translateX(-5px);
      }
      
      .dropdown-item i {
          font-size: 1.2rem;
          color: #00bfa5;
      }
      
      /* زر البرجر */
      .burger {
          display: block;
          width: 30px;
          height: 24px;
          background: transparent;
          border: none;
          cursor: pointer;
          padding: 0;
          z-index: 1000;
          position: relative;
      }
      
      .burger span {
          display: block;
          width: 100%;
          height: 3px;
          background: #00bfa5;
          border-radius: 3px;
          transition: all 0.3s ease;
          position: absolute;
          right: 0;
      }
      
      .burger span:nth-child(1) {
          top: 0;
      }
      
      .burger span:nth-child(2) {
          top: 50%;
          transform: translateY(-50%);
      }
      
      .burger span:nth-child(3) {
          bottom: 0;
      }
      
      .burger.active span:nth-child(1) {
          top: 50%;
          transform: translateY(-50%) rotate(45deg);
      }
      
      .burger.active span:nth-child(2) {
          opacity: 0;
      }
      
      .burger.active span:nth-child(3) {
          bottom: 50%;
          transform: translateY(50%) rotate(-45deg);
      }
      
      /* إخفاء زر التواصل على الموبايل */
      .action-btn.contact-btn {
          display: none;
      }
      
      /* خلفية عند فتح القائمة */
      body.menu-open::before {
          content: '';
          position: fixed;
          inset: 0;
          background: rgba(0, 0, 0, 0.7);
          backdrop-filter: blur(5px);
          z-index: 998;
      }
  }
  
  /* للشاشات الكبيرة - إخفاء البرجر */
  @media (min-width: 769px) {
      .burger {
          display: none;
      }
  }
  
  
  
  /* ====================================================================
     MOBILE BURGER MENU - ENHANCED VERSION
     ==================================================================== */
 /* إخفاء القائمة الأساسية على الشاشات الصغيرة */
@media (max-width: 992px) {
  /* إخفاء القائمة الأصلية */
  .dt-nav {
      display: none;
  }
  
  /* إظهار زر البرجر */
  .burger {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 22px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001;
      position: relative;
  }
  
  .burger span {
      display: block;
      width: 100%;
      height: 3px;
      background: linear-gradient(135deg, #00bfa5, #00d4b8);
      border-radius: 3px;
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      transform-origin: center;
  }
  
  /* تحريك البرجر عند الفتح */
  .burger.active span:nth-child(1) {
      transform: translateY(9.5px) rotate(45deg);
  }
  
  .burger.active span:nth-child(2) {
      opacity: 0;
      transform: scale(0);
  }
  
  .burger.active span:nth-child(3) {
      transform: translateY(-9.5px) rotate(-45deg);
  }
  
/* القائمة المنسدلة للموبايل */
.mobile-menu {
    list-style: none;
    padding: 80px 20px 30px 20px;
    margin: 0;
}
  
  /* خلفية شفافة */
  .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }
  
  .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
  }
  
  /* عناصر القائمة */
  .mobile-menu-item {
      margin-bottom: 12px;
  }
  
  .mobile-menu-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      background: rgba(0, 191, 165, 0.08);
      border: 1px solid rgba(0, 191, 165, 0.2);
      border-radius: 14px;
      color: #f5f5f5;
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 500;
      transition: all 0.3s ease;
      cursor: pointer;
  }
  
  .mobile-menu-link:active {
      transform: scale(0.98);
  }
  
  .mobile-menu-link:hover,
  .mobile-menu-link.active {
      background: rgba(0, 191, 165, 0.15);
      border-color: rgba(0, 191, 165, 0.5);
      box-shadow: 0 5px 15px rgba(0, 191, 165, 0.2);
  }
  
  .mobile-menu-text {
      display: flex;
      align-items: center;
      gap: 12px;
  }
  
  .mobile-menu-icon {
      font-size: 1.3rem;
      color: #00bfa5;
  }
  
  .mobile-menu-arrow {
      font-size: 0.9rem;
      transition: transform 0.3s ease;
  }
  
  .mobile-menu-link.active .mobile-menu-arrow {
      transform: rotate(180deg);
  }
  
  /* القائمة الفرعية */
  .mobile-submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      margin-top: 8px;
  }
  
  .mobile-submenu.active {
      max-height: 500px;
  }
  
  .mobile-submenu-item {
      margin-bottom: 8px;
  }
  
  .mobile-submenu-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      color: rgba(245, 245, 245, 0.9);
      text-decoration: none;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
  }
  
  .mobile-submenu-link:hover,
  .mobile-submenu-link:active {
      background: rgba(0, 191, 165, 0.1);
      border-left-color: #00bfa5;
      transform: translateX(-5px);
  }
  
  .mobile-submenu-icon {
      font-size: 1.1rem;
      color: #00bfa5;
  }
  
  /* إخفاء زر التواصل الأصلي */
  .action-btn.contact-btn {
      display: none;
  }
  
  /* زر إغلاق القائمة */
  .mobile-menu-close {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 40px;
      height: 40px;
      background: rgba(0, 191, 165, 0.1);
      border: 1px solid rgba(0, 191, 165, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00bfa5;
      font-size: 1.3rem;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .mobile-menu-close:hover {
      background: rgba(0, 191, 165, 0.2);
      transform: rotate(90deg);
  }
}

/* للشاشات الكبيرة - إخفاء عناصر الموبايل */
@media (min-width: 993px) {
  .burger {
      display: none !important;
  }
  
  .mobile-menu,
  .mobile-overlay {
      display: none !important;
  }
}


/* ============================================
 MOBILE MENU - SIMPLE & WORKING VERSION
 ============================================ */

@media (max-width: 992px) {
  /* إخفاء القائمة الأساسية */
  .dt-nav {
      display: none !important;
  }
  
  .action-btn.contact-btn {
      display: none !important;
  }
  
  /* زر البرجر */
  .burger {
      display: flex !important;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 2000;
  }
  
  .burger span {
      width: 100%;
      height: 3px;
      background: #00bfa5;
      border-radius: 3px;
      transition: 0.3s;
  }
  
  .burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
  }
  
  .burger.active span:nth-child(2) {
      opacity: 0;
  }
  
  .burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
  }
  
  /* الخلفية */
  .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(5px);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
      z-index: 1998;
  }
  
  .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
  }
  
  /* القائمة الجانبية */
  .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 85%;
      max-width: 380px;
      height: 100vh;
      background: linear-gradient(180deg, #0a0f14 0%, #0d1419 100%);
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
      z-index: 1999;
      transition: right 0.4s ease;
      overflow-y: auto;
  }
  
  .mobile-nav.active {
      right: 0;
  }
  
  /* رأس القائمة */
  .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid rgba(0, 191, 165, 0.2);
  }
  
  .mobile-nav-header h3 {
      color: #00bfa5;
      font-size: 1.4rem;
      margin: 0;
  }
  
  .mobile-close {
      width: 40px;
      height: 40px;
      background: rgba(0, 191, 165, 0.1);
      border: 1px solid rgba(0, 191, 165, 0.3);
      border-radius: 50%;
      color: #00bfa5;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
  }
  
  .mobile-close:hover {
      background: rgba(0, 191, 165, 0.2);
      transform: rotate(90deg);
  }
  
  /* قائمة العناصر */
.mobile-nav-list,
.mobile-menu {
      list-style: none;
      padding: 20px;
      margin: 0;
  }
  
.mobile-nav-list > li,
.mobile-menu > li {
      margin-bottom: 10px;
  }
  
  .mobile-nav-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 16px 20px;
      background: rgba(0, 191, 165, 0.08);
      border: 1px solid rgba(0, 191, 165, 0.15);
      border-radius: 12px;
      color: #f5f5f5;
      text-decoration: none;
      font-size: 1.05rem;
      transition: 0.3s;
      cursor: pointer;
  }
  
  .mobile-nav-item:hover,
  .mobile-nav-item:active {
      background: rgba(0, 191, 165, 0.15);
      border-color: rgba(0, 191, 165, 0.4);
  }
  
  .mobile-nav-item i {
      margin-left: 12px;
      color: #00bfa5;
      font-size: 1.2rem;
  }
  
  .mobile-nav-item .arrow {
      margin: 0;
      font-size: 0.9rem;
      transition: 0.3s;
  }
  
  .mobile-nav-item.active .arrow {
      transform: rotate(180deg);
  }
  
  /* القائمة الفرعية */
  .mobile-submenu {
      list-style: none;
      padding: 0;
      margin: 10px 0 0 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
  }
  
  .mobile-submenu.active {
      max-height: 400px;
  }
  
  .mobile-submenu li {
      margin-bottom: 8px;
  }
  
  .mobile-submenu a {
      display: flex;
      align-items: center;
      padding: 14px 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      color: rgba(245, 245, 245, 0.9);
      text-decoration: none;
      font-size: 0.95rem;
      transition: 0.3s;
      border-right: 3px solid transparent;
  }
  
  .mobile-submenu a:hover {
      background: rgba(0, 191, 165, 0.1);
      border-right-color: #00bfa5;
      transform: translateX(-5px);
  }
  
  .mobile-submenu a i {
      margin-left: 12px;
      color: #00bfa5;
  }
}

@media (min-width: 993px) {
  .burger {
      display: none !important;
  }
  
  .mobile-overlay,
  .mobile-nav {
      display: none !important;
  }
}


/* ========================================
 FIX: Submenu & Text Alignment
 ======================================== */

@media (max-width: 992px) {
  /* إصلاح محاذاة النصوص */
  .mobile-nav-item {
      text-align: right !important;
      direction: rtl !important;
  }
  
  .mobile-nav-item span {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
  }
  
  /* التأكد من أن السهم في اليسار */
  .mobile-nav-item .arrow {
      margin-right: auto;
      margin-left: 0;
  }
  
  /* إصلاح القائمة الفرعية */
  .mobile-submenu {
      list-style: none;
      padding: 0;
      margin: 10px 0 0 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.3s ease;
      opacity: 0;
  }
  
  .mobile-submenu.active {
      max-height: 500px;
      opacity: 1;
  }
  
  .mobile-submenu li {
      margin-bottom: 8px;
      animation: slideIn 0.3s ease forwards;
      opacity: 0;
  }
  
  .mobile-submenu.active li {
      opacity: 1;
  }
  
  .mobile-submenu.active li:nth-child(1) { animation-delay: 0.1s; }
  .mobile-submenu.active li:nth-child(2) { animation-delay: 0.15s; }
  .mobile-submenu.active li:nth-child(3) { animation-delay: 0.2s; }
  .mobile-submenu.active li:nth-child(4) { animation-delay: 0.25s; }
  
  @keyframes slideIn {
      from {
          opacity: 0;
          transform: translateX(20px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }
  
  .mobile-submenu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      color: rgba(245, 245, 245, 0.9);
      text-decoration: none;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      border-right: 3px solid transparent;
      text-align: right;
      direction: rtl;
  }
  
  .mobile-submenu a:hover,
  .mobile-submenu a:active {
      background: rgba(0, 191, 165, 0.15);
      border-right-color: #00bfa5;
      transform: translateX(-5px);
  }
  
  .mobile-submenu a i {
      color: #00bfa5;
      font-size: 1.1rem;
  }
}
/* ========================================
   SUBMENU FIX - Direct selectors
   ======================================== */

@media (max-width: 992px) {
    /* القائمة الفرعية */
    .mobile-submenu {
        list-style: none;
        padding: 0;
        margin: 10px 0 0 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.4s ease;
        opacity: 0;
    }
    
    .mobile-submenu.active {
        max-height: 600px !important;
        opacity: 1 !important;
    }
    
    /* عناصر القائمة الفرعية */
    .mobile-submenu li {
        margin-bottom: 8px;
        list-style: none;
    }
    
    /* روابط القائمة الفرعية */
    .mobile-submenu a {
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 10px;
        color: rgba(245, 245, 245, 0.95) !important;
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.3s ease;
        border-right: 3px solid transparent;
        text-align: right;
        direction: rtl;
    }
    
    .mobile-submenu a:hover,
    .mobile-submenu a:active {
        background: rgba(0, 191, 165, 0.2) !important;
        border-right-color: #00bfa5;
        transform: translateX(-5px);
    }
    
    .mobile-submenu a i {
        color: #00bfa5 !important;
        font-size: 1.2rem;
        margin-left: 10px;
    }
}
/* ===========================================
   FINAL FIX: White Menu Text + Logo Size
   =========================================== */

/* Desktop Menu Text - WHITE */
.dt-header .nav-link,
.dt-header .nav-link:hover,
.dt-header .nav-link:focus,
.dt-header .has-dropdown.open > .nav-link {
  color: #ffffff !important;
}

.nav-label {
    color: #ffffff !important;
}

.nav-icon,
.nav-icon i {
    color: #ffffff !important;
}

.nav-arrow {
    color: #ffffff !important;
}

/* Logo Image - Fixed Size (Same as Before) */
.logo-img {
    height: 40px !important;
    width: auto !important;
    max-height: 40px !important;
    max-width: 180px !important;
    object-fit: contain !important;
}

/* ===========================================
   RTL FIX: Close Button & Arrows Position
   =========================================== */

/* Modal close button في RTL - أقصى اليسار */
[dir="rtl"] .modal-header .btn-close {
    margin-right: auto !important;
    margin-left: 0 !important;
}

[dir="ltr"] .modal-header .btn-close {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Dropdown arrows في RTL */
[dir="rtl"] .nav-arrow,
[dir="rtl"] .mobile-nav-item .arrow {
    margin-right: auto !important;
    margin-left: 0 !important;
}

[dir="ltr"] .nav-arrow,
[dir="ltr"] .mobile-nav-item .arrow {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Mobile menu close button في RTL - أقصى اليسار */
[dir="rtl"] .mobile-close,
[dir="rtl"] .mobile-menu-close {
    left: 20px !important;
    right: auto !important;
}

[dir="ltr"] .mobile-close,
[dir="ltr"] .mobile-menu-close {
    right: 20px !important;
    left: auto !important;
}

/* =========================================== */