/* ================= CLINIC INTRO ================= */

.clinic-intro{
  padding:120px 20px;
}

.intro-container{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

/* ================= SOL GÖRSELLER ================= */

.intro-images{
  position:relative;
  width:50%;
  min-height:520px;
}

/* Ortak görsel kutusu */
.intro-images .img{
  position:absolute;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  opacity:0;
  transform:translateY(60px);
  transition:.8s ease;
}

/* JS / scroll ile show olduğunda */
.img.show{
  opacity:1;
  transform:translateY(0);
}

.intro-images img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Sanatsal dizilim */
.img1{
  width:300px;
  height:380px;
  top:0;
  left:120px;
}

.img2{
  width:360px;
  height:250px;
  bottom:0;
  left:60px;
}

.img3{
  width:220px;
  height:260px;
  top:80px;
  left:-60px;
}

.img4{
  width:380px;
  height:260px;
  bottom:40px;
  right:-40px;
}

/* ================= SAĞ METİN ================= */

.intro-text{
  width:45%;
}

.intro-text h2{
  font-size:52px;
  color:#919191;
  margin-bottom:25px;
}

.intro-text p{
  font-size:18px;
  line-height:1.7;
  margin-bottom:35px;
}

.intro-btn{
  display:inline-block;
  padding:14px 36px;
  background:#919191;
  color:#fff;
  border-radius:40px;
  text-decoration:none;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .intro-container{
    flex-direction:column;
    gap:50px;
  }

  .intro-images{
    position:static;
    width:100%;
    min-height:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
  }

  .intro-images .img{
    position:relative;
    width:100% !important;
    height:180px !important;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    bottom:auto !important;
    transform:none !important;
    opacity:1 !important;
  }

  .intro-text{
    width:100%;
    text-align:center;
  }
}
