/* footer.css - Zeus Foundation */
.footer {
  background: #0a0a0c;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(157, 80, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Subtle Purple Glow behind footer */
.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  width: 300px;
  height: 300px;
  background: var(--primary-glow);
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* Brand Column */
.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-brand h3 span { color: var(--primary); }

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 300px;
}

/* Link Columns */
.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
}

.footer-column ul { list-style: none; }

.footer-column ul li { margin-bottom: 15px; }

.footer-column ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* Newsletter/Contact Area */
.footer-contact h4 { margin-bottom: 25px; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  border: 1px solid rgba(157, 80, 255, 0.1);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981; /* Success Green */
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

/* Bottom Copyright Bar */
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 30px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
