.site-footer {
  background: linear-gradient(135deg,
    rgba(255,200,160,.35) 0%,
    rgba(255,160,180,.28) 50%,
    rgba(249,115,22,.22) 100%);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 24px 16px;
  font-size: 13px;
  color: #fff;
  margin-top: auto;
  text-align: center;
}


.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Зүүн → дээд, Баруун → дээд */
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Logo + tagline left align */
  gap: 6px;
}

.footer-logo {
  height: 24px;
  width: auto;
}

.footer-tagline {
  font-size: 13px;
  color: #64748b;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Social + copyright right align */
  gap: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-size: 16px;
  transition: all 0.25s ease;
}
.footer-social a:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer-copy {
  font-size: 12px;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center; /* бүгдийг төв рүү */
    gap: 12px;
    text-align: center;
  }

  .footer-left {
    align-items: center; /* logo + tagline center */
  }

  .footer-right {
    align-items: center; /* social + copyright center */
    gap: 8px;
  }

  .footer-copy {
    font-size: 12px;
    color: #94a3b8;
  }
}

