/* AMB Child-Theme — Seiten: Über-Uns (Stat-Tiles), Leistungen (Bild/Text)
   Quelle: zusammenhängender Abschnitt aus der urspr. style.css (Reihenfolge bewahrt) */

/* ============================================================
   ÜBER UNS — Stat Boxes & Hover
   ============================================================ */
/* Stat-Tiles (in et_pb_text, kein Blurb) */
.amb-stat-tile {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease,
              border-color 0.2s ease;
  cursor: default;
}
.amb-stat-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.4) !important;
}
.amb-stat-tile:hover > div:first-child {
  color: #EA6C0A !important;
}

.amb-promise-item {
  transition: transform 0.22s ease;
}
.amb-promise-item:hover {
  transform: translateX(4px);
}

/* ============================================================
   LEISTUNGEN — Abwechselnde Bild/Text Sektionen
   ============================================================ */
.amb-service-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,41,59,0.12);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease;
  cursor: default;
}
.amb-service-img-wrap:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(249,115,22,0.18);
}
.amb-service-img-bg {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.amb-service-img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(249,115,22,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.amb-service-emoji-large {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  display: block;
  text-align: center;
}
.amb-service-img-wrap:hover .amb-service-emoji-large {
  transform: scale(1.15) translateY(-4px);
}
.amb-service-img-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  margin: 0 !important;
  letter-spacing: 0.02em;
  text-align: center;
}
.amb-service-img-hint {
  font-size: 11.5px;
  color: #475569 !important;
  margin: 6px 0 0 !important;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .amb-service-img-bg { aspect-ratio: 16/9; }
  .amb-service-emoji-large { font-size: 52px; }
}

