/* ----------------------------------------------------------
   Services – Card-Polish
   Weiße Cards, türkis getönter Icon-Kreis, Link statt Button.
   ---------------------------------------------------------- */

.service-card {
  background: #fff;
  border: 1px solid var(--border-subtle, #e6e6e6);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  border-color: rgba(var(--brand-secondary-rgb), .35);
}

.service-card .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(var(--brand-secondary-rgb), .12);
  color: var(--brand-secondary);
  font-size: 1.5rem;
  flex: 0 0 auto;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--text-heading);
}

.service-card p {
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.service-card .service-link {
  align-self: flex-start;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: .9375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: gap .2s ease, color .2s ease;
}

.service-card .service-link:hover {
  color: var(--brand-primary-dark);
  gap: .5rem;
}

/* Notfall-Variante: dezente Akzentlinie links */
.service-card.service-card--emergency {
  border-left: 3px solid var(--brand-primary);
}

.service-card.service-card--emergency .service-icon {
  background: rgba(var(--brand-primary-rgb), .12);
  color: var(--brand-primary);
}
