/* ================= SERVICES INTRO ================= */
.services-intro {
  position: relative;
  background-image: url("new-images/Strategic Consulting Services.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 40px 80px;
  text-align: center;
  color: #ffffff;
  margin-top: 80px;
}

.services-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 84, 168, 0.85) 0%, rgba(39, 125, 225, 0.85) 50%, rgba(77, 184, 217, 0.75) 100%);
  z-index: 1;
}

.services-intro-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.services-intro h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.intro-description {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 850px;
  margin: 0 auto;
}

/* ================= SERVICES CONTENT ================= */
.services-content {
  background: linear-gradient(135deg, #f0f9fc 0%, #ffffff 100%);
  padding: 100px 40px;
}

.service-row {
  max-width: 1300px;
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(39, 125, 225, 0.2);
  border: 1px solid #c0dce8;
}

.service-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-text h2 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #277de1 0%, #5fd7eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
  line-height: 1.3;
}

/* ================= PERFECTLY ALIGNED LIST ================= */
.service-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-text ul li {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 14px;
  align-items: start;
  font-size: 17px;
  line-height: 1.8;
  color: #3a5a7e;
  margin-bottom: 16px;
}

.service-text ul li::before {
  content: "→";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  background: linear-gradient(135deg, #277de1 0%, #5fd7eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

/* ================= CTA SECTION ================= */
.services-cta {
  background: linear-gradient(135deg, #eaf4ff 0%, #f3fbff 100%);
  padding: 100px 40px;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #277de1 0%, #5fd7eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.services-cta p {
  font-size: 19px;
  color: #3a5a7e;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .hero-btn.primary {
  background: linear-gradient(135deg, #277de1, #5fd7eb);
  color: #ffffff;
  border: none;
}

.cta-buttons .hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 125, 225, 0.4);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .service-row {
    gap: 60px;
    margin-bottom: 100px;
  }

  .service-image img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .services-intro {
    padding: 120px 20px 60px;
    background-attachment: scroll;
    background-position: center top;
    background-size: cover;
    min-height: 60vh;
  }

  .services-intro h1 {
    font-size: 36px;
  }

  .intro-description {
    font-size: 16px;
  }

  .services-content {
    padding: 80px 20px;
  }

  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    direction: ltr;
  }

  .service-image img {
    height: 300px;
  }

  .service-text h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .service-text ul li {
    font-size: 16px;
  }

  .services-cta {
    padding: 80px 20px;
  }

  .services-cta h2 {
    font-size: 28px;
  }

  .services-cta p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-intro {
    padding: 100px 15px 50px;
    background-attachment: scroll;
    background-position: center top;
    background-size: cover;
    min-height: 50vh;
  }

  .services-intro h1 {
    font-size: 28px;
  }

  .intro-description {
    font-size: 15px;
  }

  .service-image img {
    height: 250px;
  }

  .service-text h2 {
    font-size: 24px;
  }

  .services-cta h2 {
    font-size: 24px;
  }
}
