/* Modern footer — matches MF sky/aqua theme */
.mf-footer {
  font-family: "Outfit", sans-serif;
  margin-top: 20px;
  color: rgba(255,255,255,0.86);
}

.mf-footer a { text-decoration: none; }

.mf-footer__main {
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(14,165,233,0.28), transparent 55%),
    radial-gradient(600px 280px at 95% 100%, rgba(20,184,166,0.22), transparent 50%),
    linear-gradient(145deg, #0c4a6e 0%, #0369a1 48%, #0f766e 100%);
  padding: 64px 0 48px;
}

.mf-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.2fr;
  gap: 28px;
}

.mf-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
}

.mf-footer__logo:hover { color: #fff; text-decoration: none; }

.mf-footer__mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.mf-footer__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mf-footer__logo strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.mf-footer__logo small {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.mf-footer__brand > p {
  margin: 0 0 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 34ch;
}

.mf-footer__social {
  display: flex;
  gap: 10px;
}

.mf-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #0c4a6e;
  background: linear-gradient(135deg, #fbbf24, #34d399);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mf-footer__social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  color: #0c4a6e;
}

.mf-footer__col h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 10px;
}

.mf-footer__col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbbf24, #34d399, #38bdf8);
}

.mf-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mf-footer__col li {
  margin-bottom: 10px;
}

.mf-footer__col li a {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.mf-footer__col li a:hover {
  color: #fde68a;
  padding-left: 4px;
  text-decoration: none;
}

.mf-footer__contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
}

.mf-footer__contact li i {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(255,255,255,0.12);
  color: #fde68a;
  font-size: 0.85rem;
}

.mf-footer__contact a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.mf-footer__contact a:hover {
  color: #fde68a;
  text-decoration: none;
}

.mf-footer__bottom {
  background: rgba(8, 35, 52, 0.95);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}

.mf-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
}

.mf-footer__bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.mf-footer__credit strong {
  color: #67e8f9;
  font-weight: 700;
}

#scrollUp {
  background: linear-gradient(135deg, #0ea5e9, #14b8a6) !important;
  border-radius: 12px !important;
}

@media (max-width: 991px) {
  .mf-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .mf-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .mf-footer__main { padding: 48px 0 36px; }
  .mf-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .mf-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
