/* ═══════════════════════════════════════
   Footer – Pflegehilfe Hameln
   Einbinden: <link rel="stylesheet" href="inc/footer.css">
   Subseiten:  <link rel="stylesheet" href="../inc/footer.css">
════════════════════════════════════════ */

#siteFooter {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 4rem 0 2rem;
}
#siteFooter .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#siteFooter .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
#siteFooter .footer-logo {
  height: 50px;
  margin-bottom: 1.25rem;
  display: block;
}
#siteFooter .footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.25rem 0;
}
#siteFooter .footer-phone {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
}
#siteFooter .footer-badges {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#siteFooter .footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(86,208,138,0.1);
  border: 1px solid rgba(86,208,138,0.3);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
}
#siteFooter .footer-badge:hover {
  background: rgba(86,208,138,0.2);
}
#siteFooter .footer-badge img {
  height: 20px;
  width: auto;
  flex-shrink: 0;
}
#siteFooter .footer-col h4 {
  color: #f1f5f9;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#siteFooter .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#siteFooter .footer-col ul li {
  margin-bottom: 0.5rem;
}
#siteFooter .footer-col ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
#siteFooter .footer-col ul a:hover {
  color: #fff;
}
#siteFooter .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
#siteFooter .footer-copy {
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-size: 0.875rem;
}
#siteFooter .footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
#siteFooter .footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
#siteFooter .footer-legal a:hover {
  color: rgba(255,255,255,0.8);
}

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
  #siteFooter { padding: 3rem 0 2rem; }
  #siteFooter .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  #siteFooter .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  #siteFooter .footer-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #siteFooter .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #siteFooter .footer-legal {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  #siteFooter .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  #siteFooter .footer-badges {
    flex-direction: column;
  }
}
