/* ── Services Hub CSS ─────────────────────────────── */

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}

.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 10px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.srv-card:active { transform: scale(0.95); box-shadow: none; }

.srv-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 2px;
}

.srv-card h4 { font-size: 13px; font-weight: 700; color: var(--text); margin: 0; }
.srv-card p  { font-size: 11px; color: var(--text3); margin: 0; }

/* Also import feature banners from dashboard */
.feature-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.feat-banner {
  border-radius: 16px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  box-shadow: 0 6px 20px rgba(11,110,79,0.22);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.feat-banner::after {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
}

.feat-banner:active { transform: scale(0.97); }
.feat-banner h4  { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.feat-banner p   { font-size: 11px; opacity: 0.85; }
.feat-banner > i { font-size: 32px; opacity: 0.8; position: relative; z-index: 1; }
