.footer-container {
  width: 100%;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #ffffff;
  color: #444;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 25px 5%;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  padding-right: 20px;
  margin-bottom: 20px;
}

.footer-title {
  display: inline-block;
  color: #ff0080;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px !important;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff0080, #00a3ff);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  box-shadow: 0 2px 4px rgba(0, 163, 255, 0.2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: #ff0080;
  transform: translateX(3px);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-item {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background-color: #f8f8f8;
  color: #444;
  text-decoration: none;
  transition: all 0.2s;
}

.location-item:hover {
  background-color: #f0f0f0;
  transform: translateX(5px);
}

.location-item i {
  font-size: 16px;
  color: #ff0080;
  margin-right: 10px;
}

.location-item div {
  display: flex;
  flex-direction: column;
}

.location-name {
  font-size: 14px;
  font-weight: 500;
}

.location-link {
  font-size: 12px;
  color: #00a3ff;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #ff0080;
  font-size: 15px;
  transition: all 0.2s;
}

.social-links a:hover {
  background-color: #ff0080;
  color: white;
  transform: translateY(-3px);
}

.contact-info p {
  display: flex;
  align-items: center;
  margin: 8px 0;
  font-size: 14px;
  color: #555;
}

.contact-info i {
  color: #ff0080;
  margin-right: 8px;
  font-size: 14px;
  min-width: 16px;
}

.footer-bottom {
  background-color: #f8f8f8;
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #777;
}

.footer-bottom span {
  color: #ff0080;
}

@media screen and (max-width: 768px) {
  .footer-content {
    padding: 20px 4%;
  }

  .footer-column {
    flex: 1 0 45%;
    padding-right: 10px;
  }
}

@media screen and (max-width: 480px) {
  .footer-content {
    padding: 15px 4%;
  }

  .footer-column {
    flex: 1 0 100%;
  }
}

@media (max-width: 1030px) {
  .footer-container {
    margin-bottom: 5.5rem;
  }
}