/* ===== MATRIX FOOTER ===== */
.matrix-footer {
  background: #020202;
  padding: 60px 70px;
  font-family: 'Share Tech Mono', monospace;
  color: #00ff99;
  text-shadow: 0 0 6px rgba(0,255,136,0.45);
  border-top: 1px solid rgba(0,255,136,0.25);
  position: relative;
  z-index: 2;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px #00ff99);
}

.footer-title {
  font-size: 2rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.matrix-footer p,
.matrix-footer a,
.matrix-footer li {
  font-size: 15px;
  line-height: 1.8;
  color: #a8ffcf;
  text-decoration: none;
}

.footer-middle h3,
.footer-right h3 {
  color: #00ffaa;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #00ff99;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle li {
  margin: 8px 0;
}

.matrix-footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px #00ff99;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin-right: 15px;
  font-size: 24px;
  color: #00ff99;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  text-shadow: 0 0 12px #00ff99;
}

.matrix-footer hr {
  margin: 40px 0 20px;
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, #00ff99, transparent);
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #00cc88;
  text-shadow: 0 0 8px #00ff99;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 768px) {
  .matrix-footer {
    padding: 50px 25px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    display: flex;
    justify-content: center;
  }
}
