/* ===========================
   NEDEN ARMA BIGBAG (Yan Yana)
   =========================== */

#why-us {
  padding: 100px 0;
  background: #f9fbfd;
  font-family: "Poppins", sans-serif;
}

/* Ana container */
#why-us .why-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Sol metin - sağ kutular */
  align-items: start;
  gap: 60px;
}

/* Sol içerik */
#why-us .why-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #2D5A87;
  background: rgba(45, 90, 135, 0.1);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 8px;
  margin-bottom: 14px;
}

#why-us .why-content h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  color: #1f2b37;
  margin-bottom: 18px;
  line-height: 1.3;
}

#why-us .why-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 480px;
}

/* Sağ taraf 2x2 grid */
#why-us .icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Kart kutuları */
#why-us .icon-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

#why-us .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

/* Görsel ikon */
#why-us .icon-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

#why-us .icon-image img {
  width: 55%;
  height: 55%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover animasyon */
#why-us .icon-box:hover .icon-image {
  transform: scale(1.1) rotate(5deg);
  background: white;
}

#why-us .icon-box:hover .icon-image img {
  transform: scale(1.15);
}

/* Metin */
#why-us .icon-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2b37;
  margin-bottom: 10px;
}

#why-us .icon-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  #why-us .why-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  #why-us .why-content {
    text-align: center;
  }

  #why-us .icon-grid {
    grid-template-columns: 1fr;
  }
}
