/* =========================================================
   SZOLGÁLTATÁSOK OLDAL / ALAP ELRENDEZÉS
========================================================= */

.services-list {
  margin-top: 0;
  margin-bottom: 0;
}

.services-layout {
  display: block;
}

.services-left {
  width: 100%;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

/* =========================================================
   GRADIENT (INNERHEZ IGAZÍTVA)
========================================================= */

.services-left::before {
  content: "";
  position: absolute;

  top: -40px;
  bottom: -40px;
  left: 18%;
  right: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.01) 50%,
    rgba(0, 0, 0, 0.03) 100%
  );

  z-index: -1;
}


/* =========================================================
   LISTA
========================================================= */

.services-items {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-1);
}

.service-item {
  padding: var(--space-4) 0;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.service-title {
  display: inline-block;
  font-weight: 600;
  color: var(--text-dark);
}

.service-note {
  display: block;
  max-width: 560px;
  margin-top: var(--space-2);
  color: var(--text-muted);
}


/* =========================================================
   KAPCSOLAT OLDAL / ELRENDEZÉS
========================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: var(--space-6);
  align-items: end;
}

.contact-text {
  max-width: 520px;
}

.contact-side {
  position: relative;
  z-index: 1;
}

/* =========================================================
   CONTACT GRADIENT
========================================================= */

.contact-side::before {
  content: "";
  position: absolute;

  top: -40px;
  bottom: -40px;
  left: -40px;
  right: -40px;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.015) 70%,
    rgba(0, 0, 0, 0.03) 100%
  );

  z-index: -1;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  max-width: 520px;
}

.contact-row {
  margin-bottom: var(--space-3);
  padding: var(--space-2) 0;
}

.contact-label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: var(--fs-body);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

.contact-details a {
  display: inline-block;
  font-size: var(--fs-lead);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  text-decoration: none;
}

.contact-details a:hover {
  opacity: 0.6;
}


/* =========================================================
   TABLET (1024px alatt)
========================================================= */

@media (max-width: 1024px) {

  .services-left {
    max-width: 100%;
  }

  .service-title {
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.1;
}

  .service-note {
    max-width: 100%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  /* 👉 GRADIENT OFF, MERT NINCS GRID */
  .contact-side::before {
    display: none;
  }

  .contact-text {
  max-width: 720px;
}
}


/* =========================================================
   MOBIL (768px alatt)
========================================================= */

@media (max-width: 768px) {

  .service-item {
    padding: var(--space-3) 0;
  }

  .service-title {
    font-size: clamp(20px, 5.5vw, 28px);
    line-height: 1.1;
  }

  .service-note {
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.6;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .contact-text {
    max-width: 100%;
  }

  .contact-details {
    margin-top: var(--space-1);
    max-width: 100%;
  }

  /* 👉 GRADIENT OFF MOBILON */
  .services-left::before {
    display: none;
  }
}