/* =========================
   GLOBAL FONT
========================= */

body,
button,
input,
select,
textarea,
a{
  font-family:"Poppins", Arial, Helvetica, sans-serif;
}


/* =========================
   HERO
========================= */

.fenster-hero{
  position:relative;
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:170px 0 80px;
  overflow:hidden;

  background-image:url("Foto/Fensterreinigung.png");
  background-repeat:no-repeat;
  background-size:auto 150%;
  background-position:center top;
}

.fenster-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(7,31,68,0.80) 0%,
    rgba(7,31,68,0.55) 45%,
    rgba(7,31,68,0.20) 100%
  );
  z-index:1;
}

.fenster-hero-content{
  width:88%;
  max-width:1250px;
  margin:0 auto;
  color:white;
  text-align:left;
  position:relative;
  z-index:2;
}

.fenster-hero-content h1{
  font-size:52px;
  line-height:1.08;
  font-weight:800;
  color:white;
  margin-bottom:22px;
  max-width:560px;
  letter-spacing:0;
}

.fenster-hero-content p{
  font-size:16px;
  line-height:1.7;
  color:white;
  max-width:560px;
  margin-bottom:28px;
}

.fenster-hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}


/* =========================
   INFO SECTION
========================= */

.fenster-info-section{
  padding:100px 0;
  background:#f6fbff;
}

.fenster-info-grid{
  display:grid;
  grid-template-columns:1.15fr 0.95fr;
  gap:60px;
  align-items:center;
}

.fenster-text h2{
  font-size:46px;
  line-height:1.2;
  color:#071f44;
  margin-bottom:24px;
}

.fenster-text p{
  font-size:18px;
  line-height:1.9;
  color:#4a5f7a;
  margin-bottom:20px;
}

.fenster-points{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.fenster-point{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:17px;
  font-weight:700;
  color:#082e63;
}

.fenster-point i{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#0b7cff;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}


/* =========================
   RIGHT IMAGES
========================= */

.fenster-images{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.image-card{
  width:100%;
  height: 400px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,35,80,0.16);
  background:white;
  transition:0.35s ease;
}

.image-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 55px rgba(0,35,80,0.22);
}

.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.image-top,
.image-bottom{
  margin:0;
}


/* =========================
   LEISTUNGEN SECTION
========================= */

.cleaning-list-section{
  padding:100px 0;
  background:#ffffff;
}

.section-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 56px;
}

.section-title span{
  display:inline-block;
  color:#005bea;
  font-size:14px;
  font-weight:900;
  letter-spacing:1px;
  margin-bottom:12px;
}

.section-title h2{
  font-size:44px;
  line-height:1.2;
  color:#071f44;
  margin-bottom:18px;
}

.section-title p{
  color:#526781;
  font-size:18px;
  line-height:1.8;
}

.cleaning-list-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.cleaning-item{
  background:#f7fbff;
  border:1px solid #e2eefc;
  border-radius:22px;
  padding:28px;
  box-shadow:0 10px 30px rgba(0,35,80,0.06);
  transition:0.35s ease;
}

.cleaning-item:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,35,80,0.13);
}

.cleaning-item i{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#0b7cff;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.cleaning-item h3{
  font-size:22px;
  color:#071f44;
  margin-bottom:12px;
}

.cleaning-item p{
  color:#526781;
  line-height:1.8;
  font-size:16px;
}


/* =========================
   CTA SECTION
========================= */

.service-cta-section{
  padding:90px 0 110px;
  background:#ffffff;
}

.service-cta-box{
  background:linear-gradient(135deg, #062c5f, #0b5ed7);
  color:white;
  border-radius:28px;
  padding:46px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  box-shadow:0 18px 45px rgba(0,35,80,0.18);
}

.service-cta-box span{
  display:inline-block;
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:14px;
  color:#bcdcff;
}

.service-cta-box h2{
  font-size:38px;
  line-height:1.2;
  margin-bottom:14px;
}

.service-cta-box p{
  font-size:17px;
  line-height:1.8;
  color:rgba(255,255,255,0.92);
  max-width:700px;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .fenster-info-grid{
    grid-template-columns:1fr;
  }

  .cleaning-list-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .fenster-text h2{
    font-size:38px;
  }

}


@media(max-width:768px){

  .fenster-hero{
    min-height:85vh;
    padding:140px 0 70px;
    background-size:cover;
    background-position:center center;
  }

  .fenster-hero-content h1{
    font-size:42px;
  }

  .fenster-hero-content p{
    font-size:16px;
  }

  .fenster-hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .fenster-info-section,
  .cleaning-list-section,
  .service-cta-section{
    padding:70px 0;
  }

  .fenster-text h2,
  .section-title h2,
  .service-cta-box h2{
    font-size:32px;
  }

  .fenster-text p,
  .section-title p{
    font-size:16px;
  }

  .image-card{
    height:240px;
  }

  .cleaning-list-grid{
    grid-template-columns:1fr;
  }

  .service-cta-box{
    padding:30px 24px;
    flex-direction:column;
    align-items:flex-start;
  }

}