/* ================= FOOTER ================= */

.site-footer {
  background: #111;
  color: #ddd;
  margin-top: 50px;
  font-size: 14px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-col p {
  color: #bbb;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #f5c400;
}

.footer-bottom {
  text-align: center;
  padding: 14px 10px;
  background: #000;
  color: #aaa;
  font-size: 13px;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #f5c400;
  color: #000;
  transform: translateY(-2px);
}

/* MOBILE CENTER */
@media (max-width: 600px) {
  .footer-social {
    justify-content: center;
  }
}