/* css/services-improvements.css */

.services-hero .hero-content { position: relative; z-index: 2; }
.services-hero .hero-overlay { opacity: 0.35; }

.services-hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-hero-note {
  margin-top: 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.services-controls-wrap {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0 10px;
}

.services-controls {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
}

@media (max-width: 992px) {
  .services-controls {
    grid-template-columns: 1fr;
  }
}

.services-search { position: relative; }
.services-search .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}
.services-search input {
  padding-left: 38px;
  border-radius: 12px;
  height: 44px;
}

.services-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.svc-chip {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #0f172a;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: transform .06s, box-shadow .2s, border-color .2s;
}

.svc-chip:hover { border-color: #cbd5e1; box-shadow: 0 10px 28px rgba(0,0,0,.07); }
.svc-chip:active { transform: translateY(1px); }
.svc-chip.active { border-color: #dc2626; box-shadow: 0 10px 28px rgba(220,38,38,.14); }

.services-actions .btn { border-radius: 12px; height: 44px; }

.services-counter {
  margin-top: 10px;
  color: #64748b;
  font-size: 13px;
  text-align: left;
}

.services-section {
  padding: 44px 0 62px;
  background: #fff;
}

.services-grid { margin-top: 10px; }

.service-card2 {
  height: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(2,6,23,.06);
  display: flex;
  flex-direction: column;
  transition: transform .10s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card2:hover {
  border-color: #cbd5e1;
  box-shadow: 0 20px 44px rgba(2,6,23,.10);
  transform: translateY(-2px);
}

.service-card2__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px 0 16px;
}

.service-icon i {
  font-size: 34px;
  color: #dc2626;
}

.service-badges { display: flex; gap: 6px; flex-wrap: wrap; }

.service-card2__body { padding: 14px 16px 12px 16px; }

.service-title {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 18px;
}

.service-desc {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.service-card2__footer {
  padding: 14px 16px 16px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.service-card2__footer .btn {
  border-radius: 12px;
  font-weight: 700;
}

.btn-copy-link { white-space: nowrap; }

.services-no-results {
  margin: 18px auto 0;
  max-width: 780px;
  text-align: center;
  padding: 18px;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  background: #f8fafc;
}

.services-no-results__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, .92);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9999;
}

.services-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}
