/* AMB Child-Theme — Footer: Dark-Footer, Spalten, Bottom-Bar
   Quelle: zusammenhängender Abschnitt aus der urspr. style.css (Reihenfolge bewahrt) */

/* ============================================================
   FOOTER — Professional Dark
   ============================================================ */
#main-footer {
  background-color: #0F172A;
  font-family: 'Poppins', sans-serif;
}

#footer-widgets {
  padding: 64px 0 52px;
}

.amb-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 52px;
}

@media (max-width: 980px) {
  .amb-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .amb-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Spalten-Titel */
.amb-footer-col h4 {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.90) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  margin: 0 0 18px 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* Fliesstext */
.amb-footer-col p {
  font-size: 14px !important;
  color: rgba(255,255,255,0.50) !important;
  line-height: 1.8 !important;
  margin: 0 0 22px 0 !important;
}

/* CTA-Button in Spalte 1 */
.amb-footer-cta {
  display: inline-block;
  background-color: var(--amb-orange);
  color: #fff !important;
  padding: 11px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.amb-footer-cta:hover {
  background-color: var(--amb-orange-dark) !important;
  transform: translateY(-1px);
}

/* Leistungs-Liste */
.amb-footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.amb-footer-col ul li {
  padding: 7px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.amb-footer-col ul li:last-child {
  border-bottom: none !important;
}

.amb-footer-col ul a {
  color: rgba(255,255,255,0.50) !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.amb-footer-col ul a:hover {
  color: var(--amb-orange) !important;
}

/* Kontakt-Liste */
.amb-footer-contact li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  color: rgba(255,255,255,0.50) !important;
  font-size: 14px !important;
}

.amb-footer-contact .ico {
  flex-shrink: 0;
  width: 18px;
}

.amb-footer-contact a {
  color: rgba(255,255,255,0.50) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.amb-footer-contact a:hover {
  color: var(--amb-orange) !important;
}

/* Bottom Bar */
#footer-bottom {
  background-color: #060D18 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 18px 0 !important;
}

.amb-footer-bottom-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.amb-footer-bottom-inner p {
  color: rgba(255,255,255,0.30) !important;
  font-size: 12.5px !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.amb-footer-legal {
  display: flex;
  gap: 20px;
}

.amb-footer-legal a {
  color: rgba(255,255,255,0.30) !important;
  font-size: 12.5px !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.amb-footer-legal a:hover {
  color: var(--amb-orange) !important;
}

/* Divi Credit ausblenden */
#footer-info, .et_footer_links { display: none !important; }

