:root {
  --service-businesses-teal: #1eb9b4;
  --service-businesses-light-grey: #ebebeb;
}

.service-businesses-section {
  width: 100%;
  background: #ffffff;
  padding: 84px 0;
}

.service-businesses-wrapper {
  position: relative;
  width: min(95%, 1200px);
  margin: 0 auto;
  background-color: var(--service-businesses-light-grey);
  border-radius: 20px;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: visible;
}

/* ── Photo card (left) ── */
.service-businesses-photo-card {
  position: absolute;
  left: 0;
  top: -20px;
  bottom: -20px;
  width: 52%;
  background-image: url('/assets/images/sections/service-businesses.jpeg');
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.service-businesses-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 95, 102, 0.05) 0%,
    rgba(8, 95, 102, 0.10) 100%
  );
}



.service-businesses-badge {
  position: absolute;
  bottom: 24px;
  left: 20px;
  background: #ffffff;
  border-left: 4px solid var(--service-businesses-teal);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.service-businesses-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #0d2b2b;
  line-height: 1.2;
}

.service-businesses-badge span {
  font-size: 0.8rem;
  color: #5a7a7a;
  margin-top: 2px;
  display: block;
}

/* ── Content (right) ── */
.service-businesses-content-right {
  width: 48%;
  margin-left: 52%;
  padding: 40px 48px 40px 40px;
  z-index: 1;
  box-sizing: border-box;
}

.service-businesses-heading {
  margin: 0 0 20px 0;
  color: #111111;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.service-businesses-highlight {
  color: var(--service-businesses-teal);
}

.service-businesses-description {
  max-width: 440px;
  margin: 0 0 28px 0;
  color: #444444;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ── Feature list ── */
.service-businesses-features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-businesses-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c4a4a;
  line-height: 1.4;
}

.service-businesses-features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background-color: #e0f7f7;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231eb9b4'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Actions ── */
.service-businesses-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.service-businesses-actions .button {
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-businesses-actions .button-primary {
  background: var(--service-businesses-teal);
  border: 1.5px solid var(--service-businesses-teal);
  color: #ffffff;
}

.service-businesses-actions .button-primary:hover {
  background: #18a9a4;
  border-color: #18a9a4;
}

.service-businesses-button-secondary {
  border: 1px solid rgba(35, 72, 91, 0.22);
  background-color: transparent;
  color: #0a2e36;
}

.service-businesses-button-secondary:hover {
  border-color: rgba(35, 72, 91, 0.34);
  background-color: rgba(35, 72, 91, 0.04);
  color: #0a2e36;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .service-businesses-content-right {
    width: 50%;
    margin-left: 50%;
    padding: 40px 44px 40px 36px;
  }

  .service-businesses-photo-card {
    width: 50%;
  }

  .service-businesses-heading {
    font-size: 1.6rem;
    white-space: nowrap;
  }
}

@media (max-width: 991px) {
  .service-businesses-section {
    padding: 48px 0;
  }

  .service-businesses-wrapper {
    width: min(94%, 1200px);
    min-height: 440px;
  }

  .service-businesses-content-right {
    width: 52%;
    margin-left: 48%;
    padding: 40px 32px 40px 32px;
  }

  .service-businesses-photo-card {
    width: 48%;
    top: -14px;
    bottom: -14px;
  }

  .service-businesses-heading {
    font-size: 1.35rem;
    white-space: nowrap;
  }

  .service-businesses-description {
    font-size: 0.96rem;
  }
}

@media (max-width: 767px) {
  .service-businesses-section {
    padding: 36px 0;
  }

  .service-businesses-wrapper {
    width: calc(100% - 32px);
    min-height: auto;
    flex-direction: column;
    overflow: hidden;
  }

  .service-businesses-photo-card {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 280px;
    border-radius: 20px 20px 0 0;
    box-shadow: none;
  }

  .service-businesses-content-right {
    width: 100%;
    margin-left: 0;
    padding: 30px 22px 28px 22px;
  }

  .service-businesses-heading {
    font-size: 1.55rem;
    white-space: normal;
    margin-bottom: 16px;
  }

  .service-businesses-description {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .service-businesses-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .service-businesses-actions .button,
  .service-businesses-button-secondary {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .service-businesses-badge {
    bottom: 16px;
    left: 16px;
    padding: 10px 14px;
  }

  .service-businesses-badge strong {
    font-size: 0.9rem;
  }

  .service-businesses-badge span {
    font-size: 0.75rem;
  }
}

@media (max-width: 575px) {
  .service-businesses-wrapper {
    width: calc(100% - 24px);
  }

  .service-businesses-content-right {
    padding: 26px 18px 24px 18px;
  }

  .service-businesses-heading {
    font-size: 1.4rem;
    white-space: normal;
  }

  .service-businesses-photo-card {
    min-height: 240px;
  }
}
