/* ═══════════════════════════════════════════
   BF ENGINEERING — footer.css
   Universal footer
═══════════════════════════════════════════ */

.site-footer {
  background: #091929;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 48px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Sol hissə */

.footer-left {
  display: flex;
  align-items: center;
}

.footer-copy {
  white-space: nowrap;
}

/* Sağ hissə */

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hüquqi linklər */

.footer-policies {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.footer-policy {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-policy:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  line-height: 1;
  user-select: none;
}

.footer-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.22);
}

/* MONARX logo link */

.footer-monarx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-monarx:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-monarx img {
  width: 145px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
  display: block;
}

/* ── Tablet ── */

@media (max-width: 912px) {
  .site-footer {
    padding: 0 32px;
    min-height: 56px;
  }

  .footer-rights {
    display: none;
  }

  .footer-right {
    gap: 16px;
  }

  .footer-monarx img {
    width: 130px;
    max-height: 36px;
  }
}

/* ── Mobil ── */

@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: auto;
    min-height: auto;
    padding: 16px 20px;
    text-align: center;
  }

  .footer-left {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-copy {
    white-space: normal;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-policies {
    justify-content: center;
    gap: 10px;
  }

  .footer-policy {
    font-size: 11px;
  }

  .footer-divider {
    display: none;
  }

  .footer-monarx img {
    width: 125px;
    max-height: 34px;
  }
}

/* ── Çox kiçik ekranlar ── */

@media (max-width: 380px) {
  .footer-policies {
    flex-wrap: wrap;
  }

  .footer-monarx img {
    width: 115px;
    max-height: 32px;
  }
}