.footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer h5 {
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer h6 {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer p {
  font-size: 0.88rem;
  line-height: 1.6;
}

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

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

.footer ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer .social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer .social-links a:hover {
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 32px 0 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: #fff;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto;
}
