.home-treatments{
  background: #f3f5f8;
  padding:90px 20px 110px;
  text-align:center;
  position: relative;
  overflow: hidden;
}

/* Ortak container */
.container{
  max-width:1300px;
  margin:auto;
}

/* Başlık */
.section-title{
  font-size:48px;
  font-weight:700;
  color:#919191;
  margin-bottom:70px;
}

/* Grid yapı */
.treatments-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:40px;
}

/* Tek tedavi kartı */
.treatment-item h3{
  font-size:18px;
  color:#919191;
  font-weight:600;
}

/* İkon alanı */
.icon-box{
  width:120px;
  height:120px;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-box img{
  width:100px;
}

/* Buton */
.treatments-btn{
  display:inline-block;
  margin-top:70px;
  padding:16px 45px;
  background:#919191;
  color:#fff;
  border-radius:40px;
  text-decoration:none;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .treatments-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media(max-width:600px){
  .treatments-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .section-title{
    font-size:30px;
  }
}
/* Başta gizle */
.lazy-img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Görününce */
.lazy-img.show {
  opacity: 1;
  transform: translateY(0);
}


/* ÜST DALGA */
.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
}

/* ALT DALGA */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  transform: rotate(180deg);
  background: white;
}

.container {
  position: relative;
  z-index: 2;
}
