.elementor-2133 .elementor-element.elementor-element-b4499b2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8c73d9c *//* Services cards - aligned to existing site theme */
.services-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.services-cards .service-card{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.services-cards .service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(47,111,62,.35);
  box-shadow:0 18px 30px rgba(20,40,24,.16);
}

.service-card__top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}

.service-card h3{
  margin:0;
  font-size:1.1rem;
  color:var(--green-dark);
}

.service-card p{
  color:var(--muted);
  margin:0;
}

.service-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-size:18px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,77,43,.14);
  color:var(--green-dark);
}

.service-toggle{
  margin-top:12px;
  border:none;
  background:transparent;
  color:var(--green-dark);
  font-weight:800;
  cursor:pointer;
  padding:0;
  text-decoration:underline;
  text-underline-offset:2px;
}

.service-extra{
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed rgba(31,77,43,.2);
  animation:serviceReveal .2s ease;
}

.service-extra ul{
  margin:0 0 10px 18px;
  color:var(--muted);
}

.service-cta{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  background:linear-gradient(135deg,var(--green),var(--green-soft));
  color:#fff;
  font-weight:700;
  border-radius:999px;
  padding:8px 14px;
  box-shadow:0 10px 20px rgba(47,111,62,.22);
}

@keyframes serviceReveal{
  from{opacity:0;transform:translateY(-4px)}
  to{opacity:1;transform:translateY(0)}
}

/* Per-card themed backgrounds using your green palette */
.service-card--surgery{
  background:
    radial-gradient(circle at 85% 12%, rgba(141,207,83,.22), transparent 42%),
    #f4fbf1;
}
.service-card--topping{
  background:
    radial-gradient(circle at 85% 12%, rgba(47,111,62,.16), transparent 42%),
    #f1f7ec;
}
.service-card--hedge{
  background:
    radial-gradient(circle at 12% 12%, rgba(141,207,83,.24), transparent 40%),
    #eff8ef;
}
.service-card--clearance{
  background:
    radial-gradient(circle at 85% 88%, rgba(47,111,62,.12), transparent 42%),
    #f6f9f2;
}
.service-card--patio{
  background:
    radial-gradient(circle at 12% 88%, rgba(31,77,43,.08), transparent 42%),
    #f4f6f3;
}
.service-card--fencing{
  background:
    radial-gradient(circle at 88% 18%, rgba(141,207,83,.18), transparent 44%),
    #f7faf4;
}

/* Responsive behavior consistent with your layout */
@media (max-width:980px){
  .services-cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:700px){
  .services-cards{
    grid-template-columns:1fr;
  }
}/* End custom CSS */