/* Tasarısoft — Hizmetlerimiz
   Separate stylesheet so the existing /css/style.css remains untouched.
*/

.services-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(21, 117, 103, 0.08), transparent 35rem),
    #f5f8f8;
}

.services-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.services-heading .eyebrow {
  margin-bottom: 0.75rem;
}

.services-heading h2 {
  margin: 0;
  color: #111820;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.services-heading > p:last-child {
  max-width: 680px;
  margin: 1rem auto 0;
  color: #607078;
  font-size: 1.05rem;
  line-height: 1.75;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  height: 100%;
  padding: 1.9rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card h3 {
  margin: 1.15rem 0 0.75rem;
  color: #111820;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.015em;
}

.service-card > p {
  min-height: 5.25rem;
  margin-bottom: 1.35rem;
  color: #68777e;
  line-height: 1.65;
}

.service-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  color: #0b665b;
  background: #e5f4ef;
  font-size: 1.35rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0.32rem 0.68rem;
  border: 1px solid rgba(11, 102, 91, 0.07);
  border-radius: 999px;
  background: #f0f7f5;
  color: #4c6664;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.15;
}

.services-cta {
  max-width: 880px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(8px);
}

.services-cta-kicker {
  margin: 0 0 0.55rem;
  color: #0b665b;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.services-cta h3 {
  margin: 0;
  color: #111820;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.services-cta-meta {
  margin: 0.8rem 0 1.4rem;
  color: #738087;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 102, 91, 0.22);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.085);
  }
}

@media (max-width: 1199.98px) {
  .service-card > p {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .services-section {
    padding: 4rem 0;
  }

  .service-card {
    padding: 1.45rem;
    border-radius: 18px;
  }

  .services-cta {
    padding: 1.6rem 1.25rem;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
  }

  .service-card:hover {
    transform: none;
  }
}
