.services-section {
  width: 100%;
  /* background: #efefef; */
  /* padding: 60px 5%; */
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

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

.service-text {
  flex: 1 1 500px;
  max-width: 550px;
}

.service-text h2 {
  font-size: 54px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.1;
}

.service-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  max-width: 100%;
}

.service-image-card {
  flex: 1 1 500px;
  max-width: 550px;
  background: #e7e7ed;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 300px;
}

.service-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Truck card with vertical text */
.truck-card {
  padding: 0;
  background: #dfe2e8;
}

.vertical-label {
  width: 90px;
  background: #d9dde5;
  color: #3f78bd;
  font-size: 28px;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 4px;
  padding: 20px 0;
  flex-shrink: 0;
}

.truck-card img {
  width: calc(100% - 90px);
  height: auto;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 760px) {
  .services-section {
    /* padding: 40px 20px; */
  }

  .service-row {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
  }

  .service-text,
  .service-image-card {
    max-width: 100%;
    flex: 1 1 100%;
  }

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

  .service-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .service-image-card {
    min-height: auto;
  }

  .truck-card {
    flex-direction: row;
  }

  .vertical-label {
    width: 65px;
    font-size: 20px;
    letter-spacing: 2px;
  }

  .truck-card img {
    width: calc(100% - 65px);
  }
}