/* ================= FOOTER — Green Theme ================= */

.site-footer {
  max-width: 1300px;
  margin: 40px auto 0;
  background: radial-gradient(
    120% 140% at 50% 0%,
    #134e4a 0%,
    #042f2e 50%,
    #022c22 100%
  );
  color: #e5e7eb;
  border-radius: 28px;
  box-shadow: 0 -16px 50px rgba(7,181,168,0.1);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #07b5a8, #22c55e, #07b5a8);
}

/* Layout */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 42px 40px;
}

/* Columns */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 12px;
  color: #f8fafc;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

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

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

.footer-col a {
  color: #a7f3d0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #22c55e;
}

/* Brand */
.footer-col.brand p {
  max-width: 280px;
}

.muted {
  color: #94a3b8;
}

/* Socials */
.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.socials a {
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.2s;
}
.socials a:hover {
  transform: scale(1.15);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7,181,168,0.3), transparent);
  margin: 0 40px;
}

/* Legal */
.footer-legal {
  padding: 26px 40px 34px;
  text-align: center;
}

.footer-legal p {
  font-size: 13px;
  margin: 6px 0;
}

.footer-legal .small {
  font-size: 12px;
}

.footer-legal a {
  color: #6ee7b7;
  text-decoration: underline;
}
.footer-legal a:hover {
  text-decoration: none;
}

.powered {
  margin-top: 12px;
  color: #6ee7b7;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .footer-col.brand p {
    margin: 0 auto;
  }
  .socials {
    justify-content: center;
  }
}
