/* ===== UPM FOOTER ===== */
.upm-footer {
  position: relative;
  padding: 200px 0 24px;
  margin-top: -120px;
  background: linear-gradient(180deg, #3a7d8e 0%, #224E7E 100%);
  clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
}

/* Top Row: Logo + Social */
.upm-footer-top {
  padding-bottom: 24px;
}

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

/* Social icons */
.upm-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.upm-footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.upm-footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Divider */
.upm-footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0;
  opacity: 1;
}

/* Content Row */
.upm-footer-content {
  padding: 48px 0;
}

/* About column */
.upm-footer-about {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.upm-footer-partner-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.upm-partner-vision {
  height: 70px;
  width: auto;
}

.upm-partner-elearning {
  height: 62px;
  width: auto;
}

.upm-footer-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  opacity: 0.7;
  margin: 0;
}

/* Links columns */
.upm-footer-links {
  text-align: right;
}

.upm-footer-links-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
}

.upm-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upm-footer-links ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.upm-footer-links ul li a:hover {
  opacity: 1;
}

/* Copyright */
.upm-footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 24px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .upm-footer {
    padding: 160px 0 24px;
    margin-top: -80px;
    clip-path: polygon(0 14%, 100% 0%, 100% 100%, 0% 100%);
  }

  .upm-footer-top {
    flex-direction: column;
    gap: 24px;
    align-items: center !important;
  }

  .upm-footer-logo img {
    height: 60px;
  }

  .upm-footer-content {
    padding: 40px 0;
  }

  .upm-footer-about {
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
  }

  .upm-footer-partner-logos {
    justify-content: center;
  }

  .upm-footer-links {
    text-align: center;
    margin-bottom: 32px;
  }
}

@media (max-width: 576px) {
  .upm-footer {
    padding: 100px 0 20px;
    margin-top: -40px;
    clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
  }

  .upm-footer-logo img {
    height: 50px;
  }

  .upm-footer-social a {
    width: 40px;
    height: 40px;
  }

  .upm-partner-vision {
    height: 50px;
  }

  .upm-partner-elearning {
    height: 45px;
  }

  .upm-footer-desc {
    font-size: 15px;
  }

  .upm-footer-content {
    padding: 32px 0;
  }

  .upm-footer-links-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .upm-footer-copyright {
    font-size: 13px;
  }
}
