/* --- ستايل الفوتر --- */
.site-footer {
  border-top: 1px solid var(--border-color);
  margin-top: 50px;
}

.site-footer h5 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.site-footer .footer-links li a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-footer .footer-links li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.site-footer .social-icons a {
  font-size: 1.5rem;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.site-footer .social-icons a:hover {
  color: var(--primary-glow) !important;
}

/* --- ستايل قائمة التنقل السفلية (Bottom Nav) --- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none; /* هنا الكود بيخفيه بشكل افتراضي */
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-color);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.bottom-nav-item i {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--primary-glow);
}

/* هنا الكود بيظهر شريط التنقل فقط على شاشات الموبايل */
@media (max-width: 992px) {
  body {
    padding-bottom: 80px; /* لإعطاء مساحة فارغة في أسفل الصفحة */
  }
  .bottom-nav {
    display: flex; /* هنا الكود بيظهره لما تكون الشاشة أصغر من 992 بكسل */
  }
}