/* =========================
   LPNH Footer (Apple-style)
   ========================= */

.lpnh-footer {
  margin-top: 30px;
  position: relative;
  background: radial-gradient(
      circle at 15% 10%,
      rgba(37, 99, 235, 0.1),
      rgba(255, 255, 255, 0) 40%
    ),
    radial-gradient(
      circle at 90% 30%,
      rgba(16, 185, 129, 0.1),
      rgba(255, 255, 255, 0) 45%
    ),
    linear-gradient(to left, #ffffff, #ece9e6);
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

/* Card glass */
.footer-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 18px 18px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.footer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
}

/* Logo */
.footer-logo-wrap {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Brand text */
.footer-brand {
  font-weight: 900;
  font-size: 1.05rem;
  color: #0f172a;
  line-height: 1.3;
}

.footer-sub {
  color: #64748b;
  font-size: 0.92rem;
  margin-top: 2px;
}

/* Titles */
.footer-title {
  font-weight: 900;
  font-size: 1.02rem;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Pills */
.footer-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  text-decoration: none;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.88rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.footer-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
  border-color: rgba(249, 115, 22, 0.25);
}

/* List */
.footer-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 0.92rem;
}

.footer-list li i {
  width: 18px;
  color: #2563eb;
}

.footer-list li span {
  color: #64748b;
  min-width: 92px;
}

.footer-list a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 900;
}

.footer-list a:hover {
  text-decoration: underline;
}

/* Social */
.footer-social-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.22);
}

/* Bottom line */
.footer-bottom {
  border-top: 1px dashed rgba(15, 23, 42, 0.18);
  padding-top: 14px;
  color: #64748b;
  font-size: 0.9rem;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .footer-logo-wrap {
    width: 74px;
    height: 74px;
    border-radius: 16px;
  }
  .footer-list li span {
    min-width: 76px;
  }
}
