/* ============================   BLOG DETAY STİLLERİ ============================ */

.blog-content {
  padding-top: 120px;
}

.blog-cover {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 30px auto;
}

.blog-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 28px;
  margin: 40px auto;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff9600;
  margin: 10px auto 0;
}

/* ============================   MADDE LİSTELERİ (BLOG İÇİ) ============================ */
.check-list {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
  margin: 30px auto;
}

.check-list li {
  font-size: 17px;
  color: #444;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.check-list li i {
  color: #28a745;
  min-width: 20px;
  margin-top: 4px;
}

/* ============================   BLOG KARTLARI ============================ */

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 220px;
  height: 220px;
  background-color: #ffffff;
  border: 2px solid #ff9600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}

.icon-circle img {
  width: 168px;
  height: 168px;
  object-fit: contain;
  display: block;
}

.service-item h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.cta-button {
  background-color: #ff9600;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.cta-button:hover {
  background-color: #000;
  color: #fff;
}

/* ============================   SOSYAL MEDYA İKONLARI ============================ */
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
}
.social-icons img {
  width: 28px;
  height: 28px;
  transition: opacity 0.3s;
}
.social-icons img:hover {
  opacity: 0.75;
}

/* ============================   WHATSAPP SABİT BUTON ============================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}
.whatsapp-float:hover {
  background-color: #1ebe57;
}

/* ============================   MOBİL UYUMLULUK ============================ */
@media screen and (max-width: 768px) {
  .blog-content p {
    font-size: 16px;
    padding: 0 15px;
  }

  .blog-cover {
    max-width: 100%;
    margin: 20px auto;
  }

  .section-title {
    font-size: 24px;
  }

  .service-grid {
    flex-direction: column;
    align-items: center;
  }

  .icon-circle {
    width: 160px;
    height: 160px;
  }

  .icon-circle img {
    width: 120px;
    height: 120px;
  }

  .social-icons {
    justify-content: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .check-list li {
    font-size: 15px;
    padding: 0 15px;
    flex-direction: row;
  }
}
