/* =========================================================
   EK4Y – KLIMAANLAGEN / LEISTUNGEN
   Version: 2025-11 | Einheitlich mit WP & Badsanierung
========================================================= */

/* #############################################
   ## 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;
    object-position: center;
  }
  
  .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;
    color: #0a5c3e;
  }
  
  .leistungen-card p {
    flex: 1;
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }
  
  .leistungen-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  
  /* #############################################
     ## ICON-BOXEN (SMARTE TECHNIK)
  ############################################# */
  .icon-box {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
  }
  
  .icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
  }
  
  .icon-box i {
    color: #17d68f;
    transition: transform .3s ease, color .3s ease;
  }
  
  .icon-box:hover i {
    transform: scale(1.15);
    color: #13b97c;
  }
  
  .icon-box h5 {
    color: #000;
    font-weight: 600;
    margin-top: 1rem;
  }
  
  .icon-box:hover h5 {
    color: #17d68f;
  }
  
  /* #############################################
     ## VORTEILE
  ############################################# */
  .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;
  }
  
  .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 */
  .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;
  }
  
  @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 – KLIMA BLOCKS
  ############################################# */
  #klima-pv,
  #klima-ohne,
  #smarte-klima-technik {
    padding: 4rem 0;
    color: #333 !important;
  }
  
  /* Headlines */
  #klima-pv .headline-category,
  #klima-ohne .headline-category,
  #smarte-klima-technik .headline-category {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #0a5c3e;
    margin-bottom: 1.5rem;
  }
  
  /* Texte */
  #klima-pv p,
  #klima-ohne p,
  #smarte-klima-technik p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  /* Bilder */
  #klima-pv img,
  #klima-ohne 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;
  }
  
  #klima-pv img:hover,
  #klima-ohne img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  /* #############################################
     ## SMARTE TECHNIK – KLIMA
  ############################################# */
  #smarte-klima-technik {
    background-color: #fff;
    text-align: center;
  }
  
  #smarte-klima-technik p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 2.5rem;
  }
  
  /* Schmalere Breite */
  #smarte-klima-technik .row {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  #smarte-klima-technik .icon-box {
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    border-radius: 1rem;
    transition: all 0.3s ease;
    height: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
  
  #smarte-klima-technik .icon-box i {
    color: #17d68f;
    font-size: 2.3rem;
    transition: color 0.3s ease;
  }
  
  #smarte-klima-technik .icon-box h5 {
    font-weight: 600;
    color: #000;
    margin-top: 1rem;
  }
  
  /* Hover-Effekt */
  #smarte-klima-technik .icon-box:hover {
    transform: translateY(-6px);
    border-color: #17d68f;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  
  #smarte-klima-technik .icon-box:hover i {
    color: #13b97c;
  }
  
  /* #############################################
     ## RESPONSIVE
  ############################################# */
  @media (max-width: 991.98px) {
    #klima-pv, #klima-ohne, #smarte-klima-technik { text-align: center; }
  
    #klima-pv img, #klima-ohne img { margin-top: 2rem; }
  
    #smarte-klima-technik .icon-box { padding: 1.5rem; }
  }
  
  @media (max-width: 767.98px) {
    #smarte-klima-technik .icon-box i { font-size: 2rem; }
    #smarte-klima-technik .icon-box h5 { font-size: 1rem; }
  }
  
  /* ==========================================
     ICON-BOX – TEXTFARBE KORRIGIEREN
  ========================================== */
  .icon-box h5 {
    color: #000;
    font-weight: 600;
    margin-top: 1rem;
  }
  
  .icon-box p,
  .icon-box span {
    color: #333;
  }
  
  .icon-box:hover h5 {
    color: #17d68f;
  }
      