:root {
  --trevo-forest: #41603c;
  --trevo-forest-deep: #2d452a;
  --trevo-leaf: #5db54f;
  --trevo-leaf-light: #80cf66;
  --trevo-paper: #f8faf6;
}

.trevo-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.trevo-service-card {
  overflow: hidden;
  border: 1px solid rgba(65, 96, 60, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(45, 69, 42, 0.08);
}

.trevo-service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trevo-service-card__body {
  padding: 1.25rem;
}

.trevo-service-card__body h3 {
  margin: 0 0 1rem;
  color: var(--trevo-forest-deep);
  font-size: 1.05rem;
  line-height: 1.35;
}

.trevo-service-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--trevo-forest);
}

.trevo-service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--trevo-forest);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.trevo-service-card__button:hover,
.trevo-service-card__button:focus {
  background: var(--trevo-forest-deep);
  color: #fff;
}

.trevo-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: var(--trevo-forest);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.trevo-action-button:hover,
.trevo-action-button:focus {
  background: var(--trevo-forest-deep);
  color: #fff;
}

.trevo-contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.trevo-contact-details > div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 14px;
  background: var(--trevo-paper);
}

.trevo-contact-details span {
  color: var(--trevo-forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trevo-floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  gap: 0.65rem;
}

.trevo-action-button--whatsapp {
  background: #1f8f4e;
}

@media (max-width: 680px) {
  .trevo-floating-actions {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .trevo-floating-actions .trevo-action-button {
    flex: 1;
    padding-inline: 0.75rem;
  }
}
