/* Bossify Academy — Footer (very dark, reference) */

.footer {
  padding: 72px 0 0;
  background: linear-gradient(180deg, #140818 0%, var(--black-soft) 100%) !important;
}

.footer .navbar__logo-text {
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 32px 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  color: var(--text-white70);
  font-size: 13px;
  line-height: 1.85;
  margin: 16px 0 0;
  max-width: 300px;
}

.footer__col h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13.5px;
  transition: color var(--transition);
}

.footer__col ul a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 22px 0 28px;
}

.footer__bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  justify-self: start;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  transition: var(--transition);
}

.footer__socials a:hover {
  background: var(--gold);
  color: var(--purple);
}

.footer__copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  justify-self: center;
}

.footer__admin {
  justify-self: end;
}

.footer__admin a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer__admin a:hover {
  color: var(--gold);
}
