/* ═══════════════════════════════════════════════════════════════════════════
   MAXZEETON.NG — FOOTER STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
  position: relative;
  z-index: 1;
  background: var(--text-primary);
  border-top: none;
  padding: 60px 0 32px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-brand .ng {
  color: var(--red);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--red);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-links-bottom {
  display: flex;
  gap: 24px;
}

.footer-links-bottom a {
  transition: color 0.3s;
}

.footer-links-bottom a:hover {
  color: var(--red);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links-bottom {
    flex-direction: column;
    gap: 12px;
  }
}
