/* Shared “book / contact” CTA (views/partials/section-service-cta.ejs) */
.service-page-cta {
  padding-block: 5rem;
  color: var(--white);
}

.service-cta__inner {
  text-align: center;
  max-width: 64rem;
}

.service-cta__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  color: var(--white);
}

.service-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem;
}

.service-cta__text {
  margin: 0 auto 2rem;
  max-width: 45rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
}

.service-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.service-cta__actions .btn {
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
  line-height: 1;
  min-width: 14.5rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.service-cta__actions .btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .service-cta__actions {
    flex-direction: row;
  }
}

/* Default buttons on emerald/rose gradients (most service pages) */
.service-page-cta .btn--cta {
  background: var(--white);
  color: var(--emerald-600);
  border-color: var(--white);
}

.service-page-cta .btn--cta:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

.service-page-cta .btn--cta-outline {
  background: var(--emerald-700);
  color: var(--white);
  border-color: var(--emerald-700);
}

.service-page-cta .btn--cta-outline:hover {
  background: rgba(4, 120, 87, 0.92);
  border-color: rgba(4, 120, 87, 0.92);
}

/* Alternate outline hover (pages that used the rose accent on outline hover) */
.service-page-cta--rose .btn--cta-outline:hover {
  background: rgba(190, 18, 60, 0.92);
  border-color: rgba(190, 18, 60, 0.92);
}

@media (max-width: 767px) {
  .service-page-cta .service-cta__actions {
    width: 100%;
  }

  .service-page-cta .service-cta__actions .btn {
    width: 100%;
    max-width: 28rem;
    min-width: 0;
  }
}
