/* #############################################
## NOX CARDS
############################################# */
.nox-card {
    background: #1A1A1A;
    padding: 1.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06) inset;
}

.nox-icon {
    font-size: 0;
    /* Icon-Texte unterdrücken */
}

.nox-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.nox-h {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem
}

.nox-p {
    margin: .25rem 0 0;
    color: #e6e6e6;
    opacity: .9;
    font-size: .95rem
}

/*#############################################
## SECTION - ENERGIEKONZEOT
############################################# */
#energiekonzept .ek-box {
    position: relative;
    min-height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    color: #fff;
}

#energiekonzept .ek-box.bg-success {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: #17d68f;
}

#energiekonzept .ek-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

#energiekonzept .ek-box>div {
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 0.5rem 0 0.5rem 2rem;
}

#energiekonzept h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem
}

#energiekonzept p {
    margin: 0;
    font-size: 1rem;
}

#energiekonzept .ek-link {
    margin: 0.5rem 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

#energiekonzept .ek-link:hover {
    text-decoration: underline;
}

/* #############################################
## METRIC CARDS
############################################# */
.metrics {
    display: flex;
    gap: 2rem;
    align-items: flex-end
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #17d68f, #7ff0c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.metric small {
    color: #ccc;
    font-size: .9rem
}

/* Versatz-Referenzen */
.ref-left {
    margin-left: -40px;
    /* nach Bedarf anpassen */
}

.ref-right {
    margin-right: -40px;
    /* nach Bedarf anpassen */
}

/* Auf Mobile / Tablets wieder neutralisieren */
@media (max-width: 991.98px) {

    .ref-left,
    .ref-right {
        margin: 0;
    }
}

/* #############################################
   ## LEISTUNGEN – CARDS
############################################# */

.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;
    cursor: pointer;
}


.leistungen-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.leistungen-card-top img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: 50% 20%;
}

.leistungen-card .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.leistungen-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.leistungen-card p {
    flex: 1;
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.leistungen-card a {
    font-weight: 600;
    color: #17d68f;
    text-decoration: none;
    transition: color .2s;
}

.leistungen-card a:hover {
    color: #14c27b;
}

/* Hover Effekt */
.leistungen-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.icon-box {
    background: #fff;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

/* =========================================================
   EK4Y – VORTEILE SEKTION (KLIMA / WÄRMEPUMPE)
   Version: 2025-11
    ========================================================= */
.vorteil-box {
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.vorteil-box h3 i {
    font-size: 2rem;
    color: #17d68f;
    /* EK4Y Mint */
}

.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;
}

/* Hover-Effekt */
.vorteil-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border-color: #17d68f;
}

/* Icon beim Hover einfärben */
.vorteil-box:hover i {
    color: #13b97c;
}

/* Mobile Anpassung */
@media (max-width: 767px) {
    .vorteil-box {
        padding: 1.5rem;
    }

    .vorteil-box h3 i {
        font-size: 1.8rem;
    }

    .vorteil-box .vorteil-title {
        font-size: 1rem;
    }
}
/* #############################################
   ## SECTIONS – WÄRMEPUMPE / HEIZUNG
############################################# */

#waermepumpe-konzept,
#foerderung,
#montage,
#finanzierung {
  padding: 4rem 0;
  color: #333 !important;
}

/* Headlines */
#waermepumpe-konzept .headline-category,
#foerderung .headline-category,
#montage .headline-category,
#finanzierung .headline-category {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0a5c3e; /* EK4Y Dunkelgrün */
  margin-bottom: 1.5rem;
}

/* Texte */
#waermepumpe-konzept p,
#foerderung p,
#montage p,
#finanzierung p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Listen (z. B. Finanzierung) */
#finanzierung ul {
  margin-top: 1.5rem;
}
#finanzierung li {
  line-height: 1.6;
}
#finanzierung i {
  color: #17d68f; /* EK4Y Mintgrün */
}

/* Bilder */
#waermepumpe-konzept img,
#foerderung img,
#montage img,
#finanzierung img {
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#waermepumpe-konzept img:hover,
#foerderung img:hover,
#montage img:hover,
#finanzierung img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* #############################################
   ## RESPONSIVE DESIGN
############################################# */
@media (max-width: 991.98px) {
  #waermepumpe-konzept,
  #foerderung,
  #montage,
  #finanzierung {
    text-align: center;
  }

  #waermepumpe-konzept img,
  #foerderung img,
  #montage img,
  #finanzierung img {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  #finanzierung li {
    font-size: 0.95rem;
  }
}

/* ==========================================
   ICON-BOX – TEXT FARBE KORRIGIEREN
========================================== */
.icon-box h5 {
    color: #000;              /* kräftiges Schwarz */
    font-weight: 600;
    margin-top: 1rem;
  }
  
  .icon-box p,
  .icon-box span {
    color: #333;              /* mittleres Grau für Untertexte */
  }
  .icon-box:hover h5 {
    color: #17d68f;           /* EK4Y-Mint beim Hover */
  }
    /* === Tooltip Farbe === */
    .tooltip-inner {
        background-color: #0a5c3e !important;
        color: #fff !important;
        font-size: .9rem;
        border-radius: .5rem;
        padding: .5rem .75rem;
      }
      .tooltip.bs-tooltip-top .tooltip-arrow::before {
        border-top-color: #0a5c3e !important;
      }
      