 

.footer{
  position: relative;
  padding: 54px 0 26px;
  background: var(--navy-950);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img{ height: 40px; }

.footer-brand-text .ar{
  font-family: var(--font-heading-ar);
  font-size: 19px;
  color: var(--sand-50);
}
.footer-brand-text .en{
  font-family: var(--font-display-en);
  font-size: 9.5px;
  letter-spacing: .26em;
  color: var(--gold-600);
  text-transform: uppercase;
}

.footer-social{
  display: flex;
  gap: 10px;
}

.footer-social a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--glass-border);
  color: var(--gold-600);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.footer-social a svg{ width: 18px; height: 18px; }

.footer-social a:hover{
  transform: translateY(-4px);
  background: var(--grad-gold);
  color: var(--white);
}

.footer-bottom{
  padding-top: 24px;
  display: flex;
  justify-content: center;
}

.footer-credit{
  font-family: var(--font-display-en);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--sand-200);
  text-align: center;
}

.footer-credit a{
  color: var(--gold-600);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.footer-credit a:hover{
  color: var(--gold-500);
  border-color: var(--gold-500);
}

@media (max-width: 620px){
  .footer-top{ flex-direction: column; text-align: center; }
}
