/* CTA & Footer - Fully Responsive */

/* Footer */
footer {
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  background: white;
}

footer .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

footer .nav-link {
  padding: 8px 16px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

footer .nav-link:hover {
  color: var(--brand-primary);
}

footer .small {
  font-size: 0.875rem;
}

/* Responsive Footer */
@media (max-width: 767.98px) {
  footer {
    padding: 24px 0;
  }

  footer .d-flex {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center;
  }

  footer .nav {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  footer .d-flex {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
}
