/* =========================================================
   EK4Y – WARTUNG & REPARATUREN
   Version: 2025-11
========================================================= */
/* ========== KARTEN ========== */
.leistungen-card {
  border: none;
  border-radius: .75rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.leistungen-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.leistungen-card .card-body {
  padding: 1.5rem;
  flex: 1;
}
.leistungen-card h5 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #0a5c3e;
  margin-bottom: 1rem;
}
.leistungen-card p {
  color: #555;
  line-height: 1.6;
}
.leistungen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* ========== VORTEILE ========== */
.vorteil-box {
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.vorteil-box h3 i {
  font-size: 2rem;
  color: #17d68f;
}
.vorteil-box .vorteil-title {
  font-weight: 600;
  color: #000;
  margin: 1rem 0 0.5rem;
}
.vorteil-box p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.vorteil-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border-color: #17d68f;
}
.vorteil-box:hover i {
  color: #13b97c;
}

/* Tooltip Styling */
.tooltip-inner {
  background-color: #111 !important;
  color: #fff !important;
  font-size: .9rem;
  border-radius: .5rem;
  padding: .5rem .75rem;
  max-width: 280px !important;
  white-space: normal;
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #111 !important;
}

/* ========== SERVICE ========== */
#wartung-service p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
  #wartung-vorteile {
    text-align: center;
  }
}
#maincontent .lead {
    color: #222;               /* kräftiges Schwarz-Grau für gute Lesbarkeit */
    font-size: 1.05rem;        /* leicht größer als Standard */
    line-height: 1.7;          /* angenehmes Zeilenbild */
    font-weight: 400;
    margin-top: 1rem;
  }
  @media (max-width: 768px) {
    #maincontent .lead {
      font-size: 1rem;
      line-height: 1.6;
      padding: 0 1rem;
    }
  }