.footer-section {
  background-color: #000000;
  color: #d1d5db;
  border-top: 1px solid rgba(107, 33, 168, 0.5);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #c084fc;
}

.footer-col h3.text-gray-100 { color: #f3f4f6; }

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

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a, .footer-col a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover, .footer-col a:hover { color: #c084fc; }

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

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

.footer-divider {
  height: 0.25rem;
  background: linear-gradient(to right, #7f1d1d, #581c87, #7f1d1d);
}
