/* footer */
#footer {
  background: #fff;
  border-top: 1px solid var(--kd-border);
}

.footer-top {
  padding: 18px 0;
}

#footer .copyright p {
  font-size: 13px;
  color: #8ab2ce;
  margin: 0;
}

#footer .copyright span {
  color: #8ab2ce;
}

#footer .social-links {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

#footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #d0e3f0;
  color: #5a7fa0;
  font-size: 14px;
  transition: var(--t);
  text-decoration: none;
}

#footer .social-links a:hover {
  border-color: var(--kd-blue);
  color: var(--kd-blue);
  box-shadow: 0 2px 10px rgba(5, 174, 241, 0.18);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  #footer .social-links {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
