/* uslugi.css */
body.dark { background: #111; color: #ddd; }

.category-card {
  background: var(--bs-body-bg, #fff);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  height: 100%;
  text-align: center;
}
.category-card:hover { transform: translateY(-6px); }
.category-card img {
  height: 160px;
  object-fit: contain;
  background-color: #fff;
  padding: 12px;
  display: block;
  margin: 0 auto;
}
.category-card .card-body {
  padding: 16px;
}
.dark .category-card { background: #1e1e1e; }

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 14px;
  background: var(--bs-body-bg, #fff);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
  transition: 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.dark .service-card { background: #1e1e1e; }

.icon-wrapper {
  width: 48px;
  height: 48px;
  background: #eee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #7c3aed;
  margin-bottom: 12px;
}
.dark .icon-wrapper { background: #333; }

.service-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
}
.dark .service-content p { color: #bbb; }

.badges .badge {
  font-size: 0.75rem;
  margin-right: 6px;
  margin-bottom: 4px;
  padding: 4px 8px;
  border-radius: 6px;
}
.badge.hit {
  background: #dc3545;
  color: #fff;
}
.badge.price {
  background: #198754;
  color: #fff;
}

.btn-more {
  display: inline-block;
  font-size: 0.85rem;
  color: #7c3aed;
  border: 1px solid #7c3aed;
  padding: 6px 14px;
  border-radius: 8px;
  transition: 0.2s;
  text-decoration: none;
}
.btn-more:hover {
  background: #7c3aed;
  color: #fff;
}

.help-box {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.dark .help-box {
  background: #222;
  color: #eee;
}
