footer {
  background: linear-gradient(135deg, #0a0f1f, #141b2d);
  color: var(--text-light);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.08;
  z-index: 0;
}
footer h5 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
}
footer p,
footer li,
footer a {
  color: var(--text-light);
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.6;
}
footer a {
  text-decoration: none;
  transition: all 0.3s ease;
}
footer a:hover {
  color: var(--primary-color);
  opacity: 1;
  transform: translateX(4px);
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
}
footer ul li i {
  margin-right: 0.6rem;
  color: white;
  font-size: 1rem;
}
.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-light);
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-4px);
}
footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}
.footer-bottom-text {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-bottom-text a {
  color: white;
  text-decoration: none;
}
.footer-bottom-text a:hover {
  text-decoration: underline;
}
.verification-section {
  gap: 2rem;
}
.verification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: transform 0.3s ease;
}
.verification-item:hover {
  transform: scale(1.05);
  opacity: 1;
}
@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
    margin-top: 1rem;
  }
  .footer-bottom-text {
    text-align: center;
  }
}