:root {
  --footer-bg-grad: linear-gradient(145deg, #0e1c35, #091120);
  --footer-text: #e2ebf6;
  --footer-muted: #9db4c8;
  --footer-hover: #60f5d2;
  --footer-border: rgba(255,255,255,0.08);
}

/* ================= FOOTER ================= */

.site-footer {
  background: var(--footer-bg-grad);
  color: var(--footer-text);
  padding: 56px 0 18px;
  margin-top: 24px;
  border-top: 1px solid var(--footer-border);
  box-shadow: 0 -14px 42px rgba(0,0,0,0.5);
}

/* GRID */
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* BRAND */
.footer-brand .logo {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #60f5d2;
  text-decoration: none;
  display: inline-block;
}

.footer-brand p {
  margin-top: 10px;
  max-width: 320px;
  color: var(--footer-muted);
  line-height: 1.6;
}

/* HEADINGS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
}

/* subtle accent underline */
.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #60f5d2, transparent);
}

/* LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--footer-hover);
  transform: translateX(6px);
}

/* CONTACT */
.footer-contact p {
  margin: 6px 0;
  color: var(--footer-muted);
  font-size: 0.95rem;
}

/* COPYRIGHT */
.copyright {
  border-top: 1px solid var(--footer-border);
  padding: 16px 0;
  text-align: center;
  color: var(--footer-muted);
  font-size: 0.9rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer-logo {
  height: 48px;          /* perfect for footer */
  width: auto;
  margin-bottom: 10px;
  opacity: 0.95;         /* softer than header */
}

.footer-logo-link {
  display: inline-block;
}
/* ===== Sticky Social (FORCE FIX) ===== */
.sticky-social {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;

  z-index: 99999; /* MOST IMPORTANT */
}

.sticky-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.sticky-wa {
  background: #25D366;
}

.sticky-ig {
  background: linear-gradient(45deg, #f09433, #bc1888);
}
