/* --- SERVICES PAGE EXTRAS --- */
.page-hero-services{ height: 220px; }

.h2{
  margin:0 0 10px;
  font-size: 28px;
  letter-spacing:.2px;
}
.lead{
  margin:0 0 14px;
  color: var(--muted);
  font-weight: 650;
  max-width: 720px;
}

.about-wrap{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}
.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-weight: 800;
}
.bullets li{ margin: 6px 0; }

.about-photo{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.about-photo img{
  width:100%;
  height:100%;
  min-height: 180px;
  object-fit: cover;
}

/* Cards grid */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.service-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: .18s ease;
  display:flex;
  flex-direction:column;
}
.service-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-img{
  width:100%;
  height: 150px;
  object-fit: cover;
}

.service-body{
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  height:100%;
}
.service-title{
  display:flex;
  align-items:center;
  gap: 10px;
}
.service-title h3{
  margin:0;
  font-size: 16px;
  letter-spacing:.2px;
}
.svc-ico{
  width:34px; height:34px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(244,162,97,.14);
  border: 1px solid rgba(244,162,97,.30);
  color: var(--accent);
  font-weight: 900;
}

.svc-desc{
  margin:0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.4;
}

.svc-btn{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(244,162,97,.18);
  border: 1px solid rgba(244,162,97,.35);
  font-weight: 900;
}
.svc-btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* CTA strip */
.cta-strip{
  margin-top: 18px;
  background: rgba(20,23,27,.90);
  color:#fff;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px 16px;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items:center;
}
.cta-strip strong{ font-size: 16px; }
.cta-strip span{
  display:block;
  color: rgba(255,255,255,.78);
  font-weight: 650;
  font-size: 13px;
  margin-top: 2px;
}
.cta-strip-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--accent);
  color: #101316;
  font-weight: 950;
  white-space: nowrap;
}
.cta-strip-btn:hover{ transform: translateY(-1px); }

/* Responsive */
@media (max-width: 980px){
  .about-wrap{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .services-grid{ grid-template-columns: 1fr; }
  .page-hero-services{ height: 200px; }
}
