 /* ---------- NAVBAR ---------- */
  .navbar{
    background: rgba(15,15,15,.8) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.15);
    transition: .3s all ease;
    direction: ltr; /* نخلي الترتيب LTR حتى يبقى اللوغو يسار */
  }

  .navbar-brand{
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff !important;
    margin: 0 !important;              /* إزالة أي دفع لليمين/اليسار */
  }
  .navbar-brand .text-primary{ color:#fff !important; }

  /* حزمة يمين: الروابط + زر اللغة */
  .nav-wrap{
    margin-left: auto;                 /* تدفش الحزمة لأقصى اليمين */
    display: flex;
    align-items: center;
    gap: .5rem;
  }

  .navbar-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: .25rem;
  }

  .navbar .nav-link{
    color:#fff !important;
    font-weight:600;
    transition: color .3s ease;
    padding: .5rem .9rem;
  }
  .navbar .nav-link:hover{ color:#ccc !important; }

  /* زر اللغة (يكون آخر عنصر داخل nav-wrap = أقصى اليمين على الديسكتوب) */
  .lang-btn{
    border-radius:.5rem;
    padding:.4rem 1rem;
    font-size:.9rem;
    font-weight:700;
    display: inline-flex;
    align-items:center;
  }


  /* Footer */
  .footer{ background:#000; padding:3rem 0 1rem; border-top:1px solid rgba(255,255,255,.15); }
  .footer h5{ color:#fff; font-weight:700; margin-bottom:1rem; }
  .footer ul{ list-style:none; padding:0; }
  .footer ul li{ margin-bottom:.5rem; }
  .footer ul li a{ color:#bbb; text-decoration:none; transition: color .3s ease; }
  .footer ul li a:hover{ color:#fff; }
  .footer .social-icons a{ color:#bbb; font-size:1.5rem; margin:0 .7rem; transition: color .3s ease; }
  .footer .social-icons a:hover{ color:#fff; }
