@charset "UTF-8";
.footer-user {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  margin-top: 50px;
}
.footer-user .footer-main {
  padding: 60px 0 40px;
}
.footer-user .footer-section {
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease-out;
}
.footer-user .footer-logo {
  margin-bottom: 1rem;
}
.footer-user .footer-logo img {
  max-width: 200px;
  height: auto;
}
.footer-user .company-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 14px;
}
.footer-user .footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-user .footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #428aff;
  border-radius: 2px;
}
.footer-user .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-user .footer-links li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.footer-user .footer-links li:hover {
  transform: translateX(5px);
}
.footer-user .footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-block;
  position: relative;
}
.footer-user .footer-links a:hover {
  color: #428aff;
  transform: translateX(5px);
}
.footer-user .footer-links a::before {
  content: "→";
  margin-right: 8px;
  opacity: 0;
  transition: all 0.3s ease;
}
.footer-user .footer-links a:hover::before {
  opacity: 1;
}
.footer-user .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-user .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}
.footer-user .social-link:hover {
  background: #428aff;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(66, 138, 255, 0.3);
}
.footer-user .contact-info {
  margin-top: 15px;
}
.footer-user .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #cccccc;
  font-size: 14px;
  transition: transform 0.3s ease;
}
.footer-user .contact-item:hover {
  transform: translateX(5px);
}
.footer-user .contact-item i {
  width: 20px;
  margin-right: 12px;
  color: #428aff;
  font-size: 16px;
}
.footer-user .contact-item span {
  line-height: 1.4;
}
.footer-user .footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-user .copyright p {
  margin: 0;
  color: #999999;
  font-size: 14px;
}
.footer-user .footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.footer-user .footer-bottom-links a {
  color: #999999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-user .footer-bottom-links a:hover {
  color: #428aff;
}
.footer-user::-webkit-scrollbar {
  width: 6px;
}
.footer-user::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.footer-user::-webkit-scrollbar-thumb {
  background: #428aff;
  border-radius: 3px;
}
.footer-user::-webkit-scrollbar-thumb:hover {
  background: #3877db;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991.98px) {
  .footer-user .footer-main {
    padding: 40px 0 30px;
  }
  .footer-user .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
  .footer-user .copyright {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .footer-user .footer-main {
    padding: 30px 0 20px;
  }
  .footer-user .footer-section {
    text-align: center;
  }
  .footer-user .social-links {
    justify-content: center;
  }
  .footer-user .contact-item {
    justify-content: center;
  }
  .footer-user .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 575.98px) {
  .footer-user .footer-title {
    font-size: 16px;
  }
  .footer-user .company-description,
  .footer-user .footer-links a,
  .footer-user .contact-item span,
  .footer-user .copyright p,
  .footer-user .footer-bottom-links a {
    font-size: 13px;
  }
  .footer-user .social-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
