/* ===== Services ===== */
.services {
  background: linear-gradient(160deg, var(--green-pale) 0%, var(--cream) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(165,194,58,0.06);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(165,194,58,0.15);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-icon-1 { background: var(--green-light); }
.service-icon-1 svg { stroke: var(--green); }
.service-icon-2 { background: var(--orange-light); }
.service-icon-2 svg { stroke: var(--orange); }
.service-icon-3 { background: var(--brown-light); }
.service-icon-3 svg { stroke: var(--brown); }

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}
