/* ================= FOOTER ================= */
.endee-footer {
  background: linear-gradient(135deg, #041b3d, #062a5c);
  color: #cfd8e3;
  padding: 70px 0 50px;
  font-size: 14px;
}

/* tighter but premium spacing */
.footer-container {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1400px) {
  .footer-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Logo */
.footer-logo img {
  height: 56px;
  margin-bottom: 16px;
}

/* About text */
.footer-desc {
  max-width: 290px;
  line-height: 1.75;
  color: #d7deea;
  text-align: justify;
}

/* Titles */
.footer-title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding-left: 30px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfd8e3;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #f7c948;
  transform: translateX(4px);
}

/* Contact blocks */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  line-height: 1.65;
}

.footer-contact i {
  color: #f7c948;
  margin-top: 4px;
  min-width: 16px;
  font-size: 14px;
}

.footer-contact span {
  display: block;
}

/* Subtle animation */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-desc {
    max-width: 100%;
  }

  .footer-container {
    padding-left: 18px;
    padding-right: 18px;
  }
}