.site-footer {
  width: 100%;
  padding: 18px 40px;
  background: #f8f9fa;
  border-top: 1px solid #ddd;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  font-family: "Cardo", serif;
  color: #444;
}

/* SOL TARAF */
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  white-space: nowrap;
}

.footer-logo {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

/* SAĞ TARAF */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

/* LEGAL LINKLER */
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.footer-links a {
  font-size: 14px;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #000;
}

/* YARDIM & DESTEK */
.footer-support {
  text-align: right;
  margin-top: 4px;
}

.footer-support h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-support p {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 6px;
}

/* BUTON */
.footer-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 16px;
  border-radius: 999px;
  background: #c9a752;
  color: #000;

  font-size: 13px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;
}

.footer-support-btn:hover {
  opacity: 0.9;
  transform: translateX(3px);
}

/* MOBİL */
@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }

  .footer-support {
    text-align: center;
  }
}
