/* ===============================
   FA COMPANY FOOTER
   Full width minimal tünd footer
   Dizayn: qara fon + yuxarı sarı xətt + sadə linklər
================================ */

.site-footer {
  width: 100%;
  background: #111314;
  padding: 0;
  margin: 0;
}

/* ===============================
   FOOTER ƏSAS CONTAINER
================================ */

.footer-container {
  width: 100%;
  min-height: 82px;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  /* Yazıların sağ-sol boşluğu */
  padding: 0 10%;

  background:
    linear-gradient(135deg, #111314 0%, #1b1b1b 52%, #0f1011 100%);

  border-top: 3px solid #F8B216;
  border-radius: 0;

  box-shadow:
    0 -8px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ===============================
   COPYRIGHT MƏTNİ
================================ */

.footer-copy {
  margin: 0;
  color: rgba(254, 254, 254, 0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-copy span {
  color: #F8B216;
  font-weight: 800;
}

/* ===============================
   FOOTER LİNKLƏRİ
================================ */

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  color: rgba(254, 254, 254, 0.86);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
  white-space: nowrap;
}

/* Linklər arasındakı sarı ayırıcı xətt */
.footer-links span {
  width: 1px;
  height: 20px;
  background: rgba(248, 178, 22, 0.75);
  display: block;
}

/* Hover effekti */
.footer-links a:hover {
  color: #F8B216;
}

/* ===============================
   FOOTER RESPONSIVE
================================ */

@media (max-width: 992px) {
  .footer-container {
    padding: 0 6%;
  }
}

@media (max-width: 768px) {
  .footer-container {
    min-height: auto;
    padding: 22px 20px;

    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .footer-copy {
    white-space: normal;
    font-size: 13px;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-links span {
    height: 16px;
  }
}

@media (max-width: 420px) {
  .footer-container {
    padding: 20px 8px;
  }

  .footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px;
    width: 100%;
  }

  .footer-links a {
    font-size: 9px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .footer-links span {
    display: block;
    width: 3px;
    min-width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(248, 178, 22, 0.75);
  }
}

/* ===============================
   iPHONE FOOTER FINAL FIX
================================ */
@media (max-width: 768px) {
  .footer-container {
    padding: 18px 6px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-align: center !important;
  }

  .footer-copy {
    font-size: 12px !important;
    white-space: normal !important;
  }

  .footer-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-links a {
    display: inline-flex !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
  }

  .footer-links span {
    display: block !important;
    width: 3px !important;
    min-width: 3px !important;
    height: 3px !important;
    border-radius: 50% !important;
    background: rgba(248, 178, 22, 0.75) !important;
    flex: 0 0 auto !important;
  }
}