/* =========================================================
   SERVICE HELP / CUSTOM REQUEST SECTION
   ========================================================= */

.service-help-section {
  padding: 4rem 1rem;
}

.service-help-section > .services-reviews__header {
  display: grid;
  justify-items: center;
  row-gap: 0;
}

.service-help-section > .services-reviews__header .services-reviews__eyebrow {
  margin-bottom: 0.45rem;
}

.service-help-section > .services-reviews__header h2 {
  margin: 0 0 0.6rem;
  max-width: 28ch;
  min-height: 2em;
  align-content: center;
}

.service-help-section__inner {
  width: min(1180px, 100%);
  margin: 2.75rem auto auto auto;
  padding: 2.5rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(200, 210, 220, 0.055), transparent 35%),
    radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.045), transparent 40%),
    linear-gradient(180deg, rgba(200, 210, 220, 0.038) 0%, rgba(0, 0, 0, 0.015) 100%),
    rgba(8, 9, 11, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 52px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.service-help-section__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-help-card {
  min-height: 100%;
  padding: 1.4rem 1.5rem;
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(200, 210, 220, 0.042), transparent 40%),
    rgba(8, 9, 11, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.service-help-card:hover,
.service-help-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(200, 210, 220, 0.058), transparent 40%),
    rgba(12, 13, 16, 0.99);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  outline: none;
}

.service-help-card--primary {
  background:
    linear-gradient(160deg, rgba(225, 48, 42, 0.16), rgba(225, 48, 42, 0.05)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(225, 48, 42, 0.3);
  border-top: 2px solid rgba(225, 48, 42, 0.65);
}

.service-help-card--primary:hover,
.service-help-card--primary:focus-visible {
  border-color: rgba(225, 48, 42, 0.55);
  border-top-color: rgba(225, 48, 42, 0.85);
}

.service-help-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: 0.6rem;
  background: rgba(225, 48, 42, 0.12);
  border: 1px solid rgba(225, 48, 42, 0.22);
  color: #ff5f59;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.service-help-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.service-help-card__title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-help-card__text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.5;
}

.service-help-card__action {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 200ms ease;
}

.service-help-card--primary .service-help-card__action {
  color: #ff7a75;
  border-top-color: rgba(225, 48, 42, 0.2);
}

.service-help-card__action i {
  font-size: 0.7rem;
  transition: transform 200ms ease;
}

.service-help-card:hover .service-help-card__action,
.service-help-card:focus-visible .service-help-card__action {
  color: #fff;
}

.service-help-card:hover .service-help-card__action i,
.service-help-card:focus-visible .service-help-card__action i {
  transform: translateX(3px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  .service-help-section__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-help-section {
    padding: 3rem 1rem;
  }

  .service-help-section__inner {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
