/* ================================
   ANADOLU DERMO KIMYA - ABOUT SECTION (FINAL)
================================ */

#about {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px;
  background: #ffffff; /* Arka plan tertemiz beyaz */
}

/* --- Görsel Alanı ve Rozet --- */
#about .about-image-wrap {
  order: 2;
  position: sticky;
  top: 100px;
  z-index: 2;
}

#about .about-image-wrap p {
  margin: 0;
  position: relative;
  line-height: 0;
  border-radius: 24px;
  overflow: hidden; /* Rozetin resim köşelerine uyması için */
}

#about .about-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 550px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(1, 47, 82, 0.1);
}

/* Sol Alta Yapışık Rozet */
#about .about-float-card {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 120px;
  padding: 15px 20px;
  background: #012f52;
  border-radius: 0 24px 0 0; /* Sadece sağ üst yuvarlak, diğerleri resme yapışık */
  text-align: center;
  z-index: 5;
}

#about .about-float-card .num {
  display: block;
  color: #ffffff !important;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px !important;
  font-weight: 700;
  line-height: 1;
  background: none !important;
}

#about .about-float-card .lbl {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* --- Metin ve Başlıklar --- */
#about .about-text {
  order: 1;
}

#about .section-label {
  margin-bottom: 10px;
  color: #0a6bb5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

#about .section-title {
  margin-bottom: 20px;
  color: #0d1f2d !important;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
}

#about .section-desc {
  margin-bottom: 25px;
  color: #31495c !important;
  font-size: 17px;
  line-height: 1.6;
}

#about .about-long-copy p {
  margin-bottom: 14px;
  color: #4a6b85;
  font-size: 15px;
  line-height: 1.7;
}

/* --- Özellik Kutuları (Tek Sütun Odaklı) --- */
#about .about-features {
  display: flex;
  flex-direction: column; /* Kutular her zaman tek sütun başlar */
  gap: 16px;
  margin-top: 30px;
}

#about .about-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px;
  background: #f8fbff;
  border-left: 4px solid #4db8ff;
  border-radius: 12px;
  transition: 0.3s ease;
}

#about .feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  font-size: 20px;
}

#about .feature-title {
  color: #012f52 !important;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

#about .feature-desc {
  color: #4a6b85 !important;
  font-size: 13.5px;
  line-height: 1.5;
}

/* --- Responsive Ayarlar --- */

/* Büyük ekranlarda istersen 2'li yapabilirsin ama "tek satır" dediğin için alt sınırı yüksek tutuyorum */
@media (min-width: 1201px) {
  #about .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Sadece çok geniş ekranda 2'li kalsın */
  }
}

/* 1200px ve Altı: Her Şey Tek Sütun */
@media (max-width: 1200px) {
  #about {
    grid-template-columns: 1fr; /* Resim ve metin alt alta */
    padding: 60px 24px;
    gap: 40px;
  }

  #about .about-image-wrap {
    order: 1;
    position: relative;
    top: 0;
    max-width: 700px;
    margin: 0 auto;
  }

  #about .about-text {
    order: 2;
  }

  #about .about-features {
    grid-template-columns: 1fr !important; /* Kutular kesinlikle tek sütun */
  }
}

@media (max-width: 600px) {
  #about .section-title {
    font-size: 28px;
  }
  
  #about .about-image-wrap img {
    min-height: auto;
  }

  #about .about-float-card {
    min-width: 100px;
    padding: 12px;
    border-radius: 0 20px 0 0;
  }

  #about .about-float-card .num {
    font-size: 32px !important;
  }
}