/* ============================================================
   FLEAMA FOOTER STYLES
   ============================================================ */

.fl-footer {
  background-color: var(--fl-bg-sidebar);
  border-top: 1px solid var(--fl-border);
  padding: var(--fl-space-10) 0 var(--fl-space-6);
  margin-top: auto;
}

.fl-footer-brand {
  font-size: var(--fl-text-xl);
  font-weight: var(--fl-fw-bold);
  color: var(--fl-text-heading);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--fl-space-3);
}

.fl-footer-tagline {
  font-size: var(--fl-text-sm);
  color: var(--fl-text-muted);
  line-height: 1.5;
  max-width: 240px;
}

.fl-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--fl-space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.fl-footer-links a {
  font-size: var(--fl-text-sm);
  font-weight: var(--fl-fw-medium);
  color: var(--fl-primary);
  text-decoration: none;
  transition: var(--fl-transition);
  white-space: nowrap;
}

.fl-footer-links a:hover {
  color: var(--fl-primary-hover);
  text-decoration: underline;
}

.fl-footer-copy {
  font-size: var(--fl-text-sm);
  color: var(--fl-text-muted);
  margin-top: var(--fl-space-4);
  line-height: 1.5;
}

.fl-footer-copy a {
  color: var(--fl-primary);
  font-weight: var(--fl-fw-medium);
}

.fl-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--fl-space-4);
  padding-top: var(--fl-space-6);
  border-top: 1px solid var(--fl-border);
  margin-top: var(--fl-space-6);
}

@media (max-width: 767.98px) {
  .fl-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .fl-footer-links {
    gap: var(--fl-space-4);
  }
}
