/* --- Services Header --- */
.services-header {
  width: 100% !important;
  height: 0 !important;
  min-height: auto !important;
  padding-top: 80px !important;
  padding-bottom: 26vw !important;
  background: #103025 url('../assets/services-hero.jpg') bottom center / contain no-repeat !important;
}

.services-header h1 {
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.services-intro .highlight-text {
  font-size: 1.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.service-content h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.service-content p {
  color: inherit;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* --- Services List --- */
.services-section {
  padding: 0;
}

.service-block {
  padding: 35px 0;
}

/* Zig-Zag Logic */
.service-block:nth-child(even) {
  background-color: var(--bg-secondary);
  color: var(--bg-color);
}

.service-block:nth-child(odd) {
  background-color: var(--bg-color);
  color: var(--bg-secondary);
}

.service-block:nth-child(even) .service-flex-container {
  flex-direction: row-reverse;
}

.service-flex-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.service-content {
  flex: 1;
}

.service-image {
  flex: 1.2;
}

.service-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-block:nth-child(even) .service-image img {
  box-shadow: 0 30px 60px rgba(17, 48, 37, 0.12);
}

.service-block:hover .service-image img {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 40px 90px rgba(17, 48, 37, 0.25);
}

.service-number {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 200;
  opacity: 0.2;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .service-flex-container {
    flex-direction: column !important;
    gap: 40px;
  }
  .service-image, .service-content {
    width: 100%;
  }
  .service-block {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .services-header {
    padding-top: 70px !important;
    padding-bottom: 26vw !important;
  }
  .services-header h1 {
    font-size: 2.8rem !important;
  }
}
