/* E-Services — professional service catalog */
.es-page {
  background-color: #f1f5f9;
  background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 16px 16px;
}

.es-service-card {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.es-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
  border-color: rgba(232, 88, 26, 0.35);
}

.es-service-card--featured {
  border-color: rgba(232, 88, 26, 0.45);
  box-shadow: 0 12px 40px rgba(232, 88, 26, 0.12);
}

.es-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.es-icon-wrap--orange {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #c2410c;
}

.es-icon-wrap--slate {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #334155;
}

.es-icon-wrap--teal {
  background: linear-gradient(135deg, #ecfdf5 0%, #ccfbf1 100%);
  color: #0f766e;
}

.es-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
}

.es-badge--free {
  background: #dcfce7;
  color: #166534;
}

.es-badge--paid {
  background: #ffedd5;
  color: #9a3412;
}

.es-badge--live {
  background: #dbeafe;
  color: #1e40af;
}

.es-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: auto;
  padding: 0.55rem 1.1rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.es-btn--primary {
  background: linear-gradient(180deg, #fb7a2e 0%, #e8581a 55%, #d14d14 100%);
  color: #fff !important;
  border: 2px solid #fdba74;
  box-shadow: 0 4px 14px rgba(232, 88, 26, 0.3);
}

.es-btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.es-btn--secondary {
  background: #fff;
  color: #c2410c !important;
  border: 2px solid #fdba74;
}

.es-btn--secondary:hover {
  background: #fff7ed;
}

.es-btn--teal {
  background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
  color: #fff !important;
  border: 2px solid #5eead4;
}

.es-stat {
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  text-align: center;
}

.es-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.es-stat span {
  font-size: 0.75rem;
  color: #64748b;
}

.es-cta-panel {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f766e 100%);
  border-radius: 1.25rem;
  color: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

@keyframes es-glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.5), 0 0 16px rgba(232, 88, 26, 0.35);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(255, 200, 120, 0.85), 0 0 28px rgba(232, 88, 26, 0.5);
  }
}

.es-cta-panel .es-btn--glow {
  animation: es-glow-pulse 2.2s ease-in-out infinite;
}
