/* ألوان الهوية (مطابقة للهيدر) */
:root{
  --edu-green: #2e7d32;
  --edu-blue:  #1976d2;
  --edu-orange:#ef6c00;
  --footer-bg: #0b1a2f;      /* أزرق داكن أنيق */
  --footer-text:#e6ecf5;     /* نص فاتح */
  --footer-muted:#a9b8cf;
}

.mx-container{
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* الشريط العلوي الأخضر الرقيق */
.mx-footer-topline{
  height: 4px;
  background: var(--edu-green);
}

/* منطقة الودجات */
.mx-footer{
  color: var(--footer-text);
  background: var(--footer-bg);
}
.mx-footer-widgets{
  padding-block: 32px 8px;
}
.mx-footer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mx-footer-col{ min-width: 0; }

.mx-footer-title{
  font-size: 1.05rem;
  margin: 0 0 12px 0;
  color: #ffffff;
  border-inline-start: 4px solid var(--edu-orange);
  padding-inline-start: 10px;
}
.mx-footer-widget,
.mx-footer-widget p,
.mx-footer-widget li{ line-height: 1.8; }

.mx-footer-widget a{
  color: var(--footer-text);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: color .2s ease, border-color .2s ease;
}
.mx-footer-widget a:hover{
  color: var(--edu-orange);
  border-bottom-color: var(--edu-orange);
}

/* القائمة السفلية + السوشيال */
.mx-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 12px;
}
.mx-footer-bottom__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mx-footer-menu{
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 16px;
}
.mx-footer-menu li a{
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 700;
}
.mx-footer-menu li a:hover{ color: var(--edu-orange); }

.mx-social{
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 12px;
}
.mx-social__link{
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  color: var(--footer-text);
  border-radius: 8px;
  transition: background .2s, color .2s, transform .15s;
}
.mx-social__link:hover{
  background: rgba(239,108,0,.12);
  color: var(--edu-orange);
  transform: translateY(-2px);
}

/* سطر الحقوق + زر للأعلى */
.mx-footer-legal{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 14px;
}
.mx-footer-legal__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.mx-copy{
  margin: 0;
  color: var(--footer-muted);
  font-size: .95rem;
}
.mx-copy .mx-site-name{
  color: #ffffff;
  text-decoration: none;
}
.mx-copy .mx-site-name:hover{ color: var(--edu-orange); }

/* زر Back-to-top (سهم مقلوب) */
.mx-backtotop{
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 0;
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transform: rotate(180deg); /* يجعل السهم لأعلى */
  transition: background .2s, transform .2s;
}
.mx-backtotop:hover{
  background: rgba(239,108,0,.25);
}
.mx-backtotop:active{ transform: rotate(180deg) scale(.96); }

/* تجاوب */
@media (max-width: 992px){
  .mx-footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .mx-footer-grid{ grid-template-columns: 1fr; }
  .mx-footer-bottom__inner,
  .mx-footer-legal__inner{
    flex-direction: column;
    align-items: stretch;
  }
  .mx-footer-menu{ flex-wrap: wrap; }
}

/* ====== قوائم الأعمدة (2/3/4) في الفوتر ====== */
.mx-footer-menu--col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block !important;   /* عمودي بدل أفقي */
}

.mx-footer-menu--col li {
  margin: 6px 0;
}

.mx-footer-menu--col li a {
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.8;
  transition: color .2s ease;
}

.mx-footer-menu--col li a:hover {
  color: var(--edu-orange);
}