/* APEs Footer Styles */
.apes-footer {
  background-color: #0f0f12;
  padding: 60px 0 30px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.apes-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.apes-footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.apes-footer-left {
  flex: 1;
  min-width: 300px;
}

.apes-footer-logo {
  margin-bottom: 20px;
}

.apes-footer-logo img {
  height: 80px;
  width: auto;
}

.apes-footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  max-width: 400px;
}

.apes-footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.apes-footer-links {
  min-width: 160px;
}

.apes-footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f25c05;
}

.apes-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.apes-footer-menu li {
  margin-bottom: 12px;
}

.apes-footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.apes-footer-menu a:hover {
  color: #f25c05;
}

.apes-social-links {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.apes-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.apes-social-links a:hover {
  background-color: #f25c05;
}

.apes-social-links svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.apes-footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.apes-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.apes-footer-bottom-links {
  display: flex;
  gap: 20px;
}

.apes-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.apes-footer-bottom-links a:hover {
  color: #f25c05;
}

@media (max-width: 768px) {
  .apes-footer-flex {
    flex-direction: column;
    gap: 30px;
  }
  
  .apes-footer-right {
    flex-direction: column;
    gap: 30px;
  }
  
  .apes-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
