/* =========================
   FOOTER BASE
========================= */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 20px 0;
  border-top: 1px solid #d4af37;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* =========================
   BRAND
========================= */
.footer-brand img {
  height: 90px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   LINKS
========================= */
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #d4af37;
}

/* =========================
   CONTACT
========================= */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: #d4af37;
  margin-right: 10px;
}

/* =========================
   SOCIAL ICONS
========================= */
.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #d4af37;
  color: #0f172a;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  text-align: center;
  background: #020617;
  font-size: 13px;
  color: #94a3b8;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* =========================
   MOBILE RESPONSIVE (KEY FIX)
========================= */
@media (max-width: 600px) {
  .site-footer {
    padding: 40px 15px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 10px;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .footer-socials a {
    margin-right: 0;
  }

  .footer-links ul li {
    margin-bottom: 12px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 12px 10px;
  }
}
