
/* Footer */
.footer {
  background: hsl(var(--card-bg));
  border-top: none;
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
  text-align: left;
}

.footer-grid .footer-brand {
  grid-column: 1;
  max-width: 400px;
  text-align: left;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column-title {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--text-primary));
  margin: 0;
}

/* Brand Section (First Column) */
.footer-brand {
  gap: 1.5rem;
  justify-content: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
}

.footer-logo-img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--text-primary));
  margin: 0;
}

.footer-logo-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--text-muted));
  margin: 0;
}

.footer-description {
  color: hsl(var(--text-muted));
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

/* Links Lists */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-link {
  color: hsl(var(--text-muted));
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-base);
}

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

/* Footer Bottom */
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border) / 0.2);
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}

.footer-copyright {
  color: hsl(var(--text-muted));
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-link {
  color: hsl(var(--text-muted));
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.footer-bottom-link:hover {
  color: hsl(var(--primary));
}

.footer-divider {
  color: hsl(var(--text-muted) / 0.5);
  font-size: 0.875rem;
}