/* Page Hero (Header ile Main arası) */
.page-hero {
  background: #18ccff;
  padding: 40px 20px;
  width: 100%;
  display: block;
}

.page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.page-hero-back {
  display: inline-block;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 30px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.page-hero-back:hover {
  opacity: 1;
}

.page-hero-title {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 800;
  color: #111;
  text-align: center;
}

.page-hero-breadcrumb {
  text-align: center;
  color: #111;
  font-size: 14px;
  opacity: 0.8;
}

/* Hizmetlerimiz sayfası */
.services {
  background: #fff;
  padding: 30px 0;
  min-height: calc(100vh - 80px - 180px);
  min-height: calc(100svh - 80px - 180px);
  display: flex;
  align-items: center;
}

.services-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 20px 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.service-sep {
  height: 1px;
  background: rgba(0,0,0,0.18);
  margin: 0 0 60px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
}

.service-image {
  flex: 0 0 50%;
  max-width: 50%;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.service-content {
  flex: 1;
}

.service-title {
  margin: 0 0 8px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #111;
}

.service-subtitle {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: #18ccff;
}

.service-description {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.service-advantages-title {
  margin: 20px 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.service-list {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.service-list li {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* 2. kısım: sağ fotoğraf, sol yazı */
.service-item-right {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 60px 14px 80px;
  }

  .page-hero-title {
    font-size: 32px;
  }

  .page-hero-back {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .page-hero-breadcrumb {
    font-size: 13px;
  }

  .services {
    padding: 40px 0;
  }

  .services-inner {
    padding: 30px 14px 0;
  }

  .service-item {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
  }

  .service-item-right {
    flex-direction: column;
  }

  .service-sep {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 50px;
  }
}