/* Footer link fixes */
footer a {
  position: relative;
  z-index: 10;
  cursor: pointer !important;
  text-decoration: none;
  color: #fff !important;
  display: inline-block;
  padding: 5px;
  margin: 0;
}

footer a:hover {
  color: #fff !important;
  text-decoration: underline !important;
  transform: none !important;
}

/* Special styling for footer links at bottom */
.footer-link {
  padding: 8px 12px !important;
  margin: 0 5px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.footer-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Fix for footer links being covered by other elements */
footer .col-md-6 {
  position: relative;
  z-index: 5;
}

/* Ensure proper pointer cursor */
footer a, 
footer .btn,
footer input[type="submit"] {
  cursor: pointer !important;
}

/* Override any transform animations that might interfere */
footer a:hover,
footer a:active,
footer a:focus {
  transform: none !important;
}

/* Fix for links in lists */
footer ul li a {
  display: block;
  width: 100%;
  padding: 5px 10px;
}

/* Fix for mobile */
@media (max-width: 767px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-link {
    margin: 5px 0;
    padding: 10px 15px !important;
  }
}
