/* services-redesign.css - Exact Our Services Section Redesign with site colors */

#services {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-accent-dark) 100%
  );
  color: var(--color-bg-section);
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

#services .services-container {
  background-color: var(--color-bg-section);
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 3rem 3rem 4rem 3rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

#services h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

#services p.section-intro {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.5;
}

/* Vertical curved line container */
#services .services-list {
  position: relative;
  padding-left: 3rem;
  border-left: 4px solid var(--color-accent);
  max-width: 600px;
  margin: 0 auto;
}

/* Curved line using SVG positioned absolutely */
#services .curved-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60px;
  pointer-events: none;
  z-index: 1;
}

/* Service item */
#services .service-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3rem;
  z-index: 2;
}

#services .service-item:last-child {
  margin-bottom: 0;
}

/* Number circle */
#services .service-number {
  position: absolute;
  left: -3.25rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-accent);
  color: var(--color-bg-section);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px var(--color-accent);
}

/* Service title */
#services .service-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

/* Service description */
#services .service-description {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  max-width: 480px;
}

/* Responsive */
@media (max-width: 768px) {
  #services .services-container {
    padding: 2rem 1.5rem 3rem 1.5rem;
  }

  #services .services-list {
    padding-left: 2rem;
    border-left-width: 3px;
    max-width: 100%;
  }

  #services .service-number {
    left: -2.5rem;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  #services .service-description {
    max-width: 100%;
  }
}
