/* ================================
   MU ONLINE FOOTER - FINAL VERSION
================================ */

.mu-footer {
  background: #2f458f;   
  color: #dbe5ff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  padding: 70px 0 0;
  font-weight: 400;
}

/* Container width control */
.mu-footer .container {
  max-width: 1200px;
}

/* ================= COLUMN ================= */

.mu-footer-col {
  position: relative;
  padding-right: 50px;
  margin-bottom: 20px;
}

/* Vertical Divider Line */
.mu-footer-col.border-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.25);
}

/* ================= LOGO ================= */

.mu-footer-logo img {
  max-height: 75px;
  margin-bottom: 25px;
}

/* ================= TITLES ================= */

.mu-footer-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}

.mu-footer-title.mt-4 {
  margin-top: 30px;
}

/* ================= CONTACT ================= */

.mu-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.mu-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 15.5px;
}

.mu-contact i {
  color: #ffffff;
  margin-top: 4px;
  min-width: 18px;
}

.mu-contact a {
  color: #dbe5ff;
  text-decoration: none;
  transition: 0.3s ease;
}

.mu-contact a:hover {
  color: #ffffff;
}

/* ================= LINKS ================= */

.mu-links {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.mu-links li {
  margin-bottom: 10px;
}

.mu-links a {
  color: #dbe5ff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.mu-links a:hover {
  color: #ffffff;
}

/* ================= SOCIAL ================= */

.mu-social-title {
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.mu-social {
  display: flex;
  gap: 15px;
}

.mu-social a {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #2f458f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s ease;
}

.mu-social a:hover {
  background: #ff7a00;
  color: #ffffff;
}

/* ================= BOTTOM BAR ================= */

.mu-footer-bottom {
  background: #1e3475;   /* Darker blue bottom */
  padding: 18px 0;
  margin-top: 60px;
}

.mu-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.mu-footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #cfd9ff;
}

.mu-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mu-footer-bottom-links a {
  font-size: 14px;
  color: #cfd9ff;
  text-decoration: none;
  transition: 0.3s ease;
}

.mu-footer-bottom-links a:hover {
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

  .mu-footer {
    padding: 50px 0 0;
  }

  .mu-footer-col {
    padding-right: 0;
    margin-bottom: 35px;
  }

  .mu-footer-col.border-right::after {
    display: none;
  }

  .mu-footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 576px) {

  .mu-social a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}



/* ================= WHATSAPP FLOAT ================= */

.mu-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 170px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: all 0.3s ease;
}

.mu-whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-4px);
}

@media (max-width: 576px) {
  .mu-whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 22px;
    right: 16px;
    bottom: 20px;
  }
}