/* Footer — night sky with solar accents */
.footer {
  background: var(--grad-night);
  color: #cdd6e6;
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-sun);
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 90% -30%, rgba(247,169,0,.18), transparent 60%);
  pointer-events: none;
}

.footer .container { position: relative; z-index: 1; }

.footer h5 {
  color: #fff;
  margin-bottom: 1.4rem;
  font-weight: 800;
}

.footer p { color: #cdd6e6; margin-bottom: .9rem; }
.footer p i { color: var(--primary-color); }

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  margin-left: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--grad-solar);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: #cdd6e6;
  text-decoration: none;
  transition: color 0.3s ease, padding 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-right: 6px;
}

.footer hr { border-color: rgba(255,255,255,0.12) !important; }
