/* =========================
   Footer
   ========================= */

.site-footer {
  margin: 0px 0px;
  padding: 0px 0px;
}

/* Main blue section */
.footer-main {
  background: #124577;
  color: #fff;
  padding: 20px 24px;
}

.footer-wrap {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  gap: 40px;
}

/* 3 columns on desktop */
@media (min-width: 900px) {
  .footer-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h3 {
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.footer-col p {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.95;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.45;
}

.footer-links a:hover {
  opacity: 0.85;
}

/* Social links inline */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-social a {
  text-decoration: none;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  width: 34px;
  height: 34px;
  border-radius: 999px;

  background: rgba(255,255,255,0.15);
  color: #fff;

  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.footer-social a:hover .social-icon {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* Bottom copyright bar */
.footer-bottom {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 12px;
}
