/* ================================
   FOOTER BASE
================================ */
.fb-footer {
  width: 100%;
  background: linear-gradient(180deg, #f8f9fb 0%, #eef1f6 100%);
  font-family: 'Fredoka', Arial, sans-serif;
  padding: 48px 20px 36px;
  box-sizing: border-box;
  color: #374151;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ================================
   TOP SECTION
================================ */
.fb-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 32px;
  text-align: center;
}

/* ================================
   LOGO
================================ */
.fb-footer-logo {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}

.fb-footer-logo img {
  width: 86px;
  margin-bottom: 10px;
  transition: transform 0.25s ease;
}

.fb-footer-logo img:hover {
  transform: scale(1.05);
}

.fb-footer-logo span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4b5563;
}

/* ================================
   LINK SECTIONS
================================ */
.fb-footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}

.fb-footer-links h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #6b7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fb-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fb-footer-links ul li {
  margin-bottom: 8px;
}

.fb-footer-links ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #374151;
  font-size: 15px;
  position: relative;
  transition: color 0.2s ease;
}

/* underline animation */
.fb-footer-links ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: #2563eb;
  transition: width 0.25s ease;
}

.fb-footer-links ul li a:hover {
  color: #2563eb;
}

.fb-footer-links ul li a:hover::after {
  width: 100%;
}

/* ================================
   DIVIDER
================================ */
.fb-footer-divider {
  width: 100%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.12),
    transparent
  );
  margin: 32px auto 24px;
}

/* ================================
   DISCLAIMER
================================ */
.fb-footer-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 920px;
  margin: 0 auto;
}

/* ================================
   MOBILE POLISH
================================ */
@media (max-width: 768px) {
  .fb-footer-top {
    gap: 36px;
  }

  .fb-footer-links h3 {
    font-size: 14px;
  }

  .fb-footer-links ul li a {
    font-size: 14px;
  }

  .fb-footer-logo img {
    width: 72px;
  }
}
