/* Hizmetler / next-step section — content max-width 1440px */
.home-hizmet {
  position: relative;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 3vw, 40px);
  background-color: #fff;
  background-image: url("../img/about-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
  color: #1a1a1a;
}

.home-hizmet__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.home-hizmet__head {
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) minmax(280px, 1.35fr) auto;
  gap: clamp(24px, 3vw, 48px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.home-hizmet__eyebrow {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-style: italic;
  font-weight: 500;
  color: #9aa3ad;
  line-height: 1.2;
}

.home-hizmet__title {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1c2229;
}

.home-hizmet__intro {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5560;
  max-width: 54ch;
}

.home-hizmet__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  padding: 12px 26px;
  background: var(--hhiz-btn, #87a8c0);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s ease;
}

.home-hizmet__btn:hover {
  filter: brightness(1.06);
  color: #fff;
  text-decoration: none;
}

.home-hizmet__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.home-hizmet__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.home-hizmet__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #d8dde4;
}

.home-hizmet__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.home-hizmet__card:hover .home-hizmet__media img {
  transform: scale(1.04);
}

.home-hizmet__card-title {
  margin: 4px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1c2229;
}

.home-hizmet__card-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5a646e;
}

@media (max-width: 1100px) {
  .home-hizmet__head {
    grid-template-columns: 1fr 1.2fr;
  }

  .home-hizmet__btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .home-hizmet__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-hizmet__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-hizmet__grid {
    grid-template-columns: 1fr;
  }

  .home-hizmet__media {
    aspect-ratio: 4 / 3;
  }
}
