/* ========================================
   Footer Section Styles
   ======================================== */

.footer {
  padding: 80px 24px;
  background: var(--color-dark);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  background-size: 200% 100%;
  animation: gradientShift 8s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.footer-content h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 16px;
}

.footer-content > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  color: white;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.footer-btn svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.footer-divider {
  width: 96px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 32px;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
