@charset "UTF-8";
/* ========================================
   Namaa Footer (ثيم نماء)
   خلفية كحلية دائمة + خط ذهبي علوي، حسب التصميم المرجعي.
   كل الألوان من Design Tokens:
   var(--navy) الخلفية | var(--gold) العناوين والـ hover | var(--primary-text) النصوص | var(--border) الفاصل
   By Fatehi for namae
   ======================================== */
.namaa-footer {
  width: 100%;
  margin-top: 64px;
  padding: 56px 0 24px;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  color: var(--primary-text);
  /* Mobile: كل الأعمدة تتوسط */
}
.namaa-footer__upper {
  padding-bottom: 40px;
}
.namaa-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .namaa-footer__col + .namaa-footer__col {
    padding-top: 8px;
  }
}
.namaa-footer__logo-box {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.namaa-footer__logo {
  max-width: 210px;
}
.namaa-footer__logo img {
  max-height: 44px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.namaa-footer__about {
  margin-top: 20px;
  max-width: 420px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--primary-text);
  opacity: 0.72;
}
.namaa-footer__title {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
}
.namaa-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.namaa-footer__links li {
  margin-bottom: 12px;
}
.namaa-footer__links li:last-child {
  margin-bottom: 0;
}
.namaa-footer__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-text);
  text-decoration: none;
  opacity: 0.72;
  transition: all 0.3s ease;
}
.namaa-footer__link:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateX(6px);
}
.namaa-footer__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.namaa-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.namaa-footer__contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-text);
  text-decoration: none;
  opacity: 0.72;
  transition: all 0.3s ease;
}
.namaa-footer__contact-row:hover {
  color: var(--gold);
  opacity: 1;
}
.namaa-footer__contact-row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.namaa-footer__contact-icon {
  flex-shrink: 0;
  color: var(--gold);
}
.namaa-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.namaa-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.namaa-footer__social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: all 0.3s ease;
}
.namaa-footer__social:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.namaa-footer__social:hover img {
  filter: brightness(0) invert(0.15);
  opacity: 1;
}
.namaa-footer__social:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.namaa-footer__divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}
.namaa-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  text-align: center;
}
@media (min-width: 992px) {
  .namaa-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.namaa-footer__bottom-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-text);
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.namaa-footer__bottom-link:hover {
  color: var(--gold);
  opacity: 1;
}
.namaa-footer__bottom-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.namaa-footer__copyright {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-text);
  opacity: 0.6;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .namaa-footer {
    padding-top: 48px;
  }
  .namaa-footer__col {
    align-items: center;
    text-align: center;
  }
  .namaa-footer__col + .namaa-footer__col {
    margin-top: 40px;
  }
  .namaa-footer__logo-box {
    margin-left: auto;
    margin-right: auto;
  }
  .namaa-footer__about {
    margin-left: auto;
    margin-right: auto;
  }
  .namaa-footer__contact {
    align-items: center;
  }
  .namaa-footer__socials {
    justify-content: center;
  }
}
