/* ================================
   2026 MODERN FOOTER SPACING
================================ */

.footer {
  position: relative;

  /* 👇 Modern section spacing */
  margin-top: 120px;
  /* bigger separation from content */
  padding: 20px 40px 60px;
  /* more top breathing */

  font-size: 15px;
  color: #0f172a;

  /* background:
    radial-gradient(1000px 500px at 5% -10%, #eef2ff, transparent),
    radial-gradient(1000px 500px at 95% 0%, #ecfeff, transparent),
    linear-gradient(180deg, #ffffff, #f8fafc); */

  /* border-top: 1px solid rgba(15, 23, 42, 0.06); */
}

/* footer-home */
.footer-context {
  display: flex;
  flex-flow: row;
}

.policy-context {
  display: flex;
  flex-flow: row;
}

/*  */

/* Subtle animated glow */
.footer::before {
  content: "";
  position: absolute;
  width: 600px;
  /* height: 600px; */
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
  /* top: -200px; */
  top: -360px;
  right: -150px;
  filter: blur(80px);
  animation: glowMove 12s ease-in-out infinite alternate;
  z-index: 0;
}



@keyframes glowMove {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(40px);
  }
}

/* Ensure content above glow */
.footer .container {
  position: relative;
  z-index: 2;
}

/* =========================================
   PERFECT RIGHT EDGE ALIGNMENT
========================================= */

/* .footer .row>.col-md-6:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
} */

/* =========================================
   LOGO + TEXT
========================================= */

.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer__logo img {
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.footer .text-muted {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b !important;
  max-width: 380px;
  margin-bottom: 24px;
}

/* =========================================
   NAVIGATION (Top Right)
========================================= */

.footer__navi {
  display: flex;
  gap: 33px;
  margin: 0;
  padding: 0;

  flex-wrap: wrap;
  margin-bottom: 2rem;
  position: absolute;
  right: 5%;
  padding-top: 20px;
}

.footer__navi li a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.footer__navi li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  transition: width 0.3s ease;
}

.footer__navi li a:hover {
  color: #6366f1;
}

.footer__navi li a:hover::after {
  width: 100%;
}

/* =========================================
   DIVIDER
========================================= */

.footer hr {
  /* margin: 80px 0; */
  margin: 20px 0;
  border: none;
  height: 1px;
  width: 100%;
  opacity: 1;

  background: linear-gradient(90deg,
      transparent,
      #6366f1,
      #22d3ee,
      transparent);

  box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}


/* =========================================
   COPYRIGHT
========================================= */

.copyright {
  font-size: 0.85rem !important;
  color: #64748b;
  margin: 0;
  letter-spacing: 0.2px;
}

.copyright a {
  font-weight: 700;
  color: #6366f1 !important;
  text-decoration: none;
  transition: 0.25s ease;
}

.copyright a:hover {
  opacity: 0.7;
}

/* =========================================
   POLICY LINKS (Bottom Right)
========================================= */

.privacy-policy {
  margin-top: -4px;
  position: absolute;
  right: 5%;

  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.privacy-policy li a {
  font-size: 0.85rem;
  color: #475569;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.privacy-policy li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  transition: width 0.3s ease;
}

.privacy-policy li a:hover {
  color: #6366f1;
}

.privacy-policy li a:hover::after {
  width: 100%;
}

/* =========================================
   FACEBOOK BUTTON
========================================= */

.facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;
  border-radius: 16px;

  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: white;
  font-size: 12px;

  transition: 0.35s ease;
}

.facebook:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.35);
}

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

@media (max-width: 878px) {

  .footer {
    padding: 70px 24px 40px;
  }

  .footer .row>.col-md-6:last-child {
    align-items: center;
    margin-top: 30px;
  }

  .footer__navi,
  .privacy-policy {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer__navi {
    padding-top: 0px;
  }

  .footer .text-muted {
    max-width: 100%;
  }

  .policy-context {
    display: flex;
    flex-flow: column;
  }

  .footer-context {
    display: flex;
    flex-flow: column;
  }
}