/* ============================================================
   ELEVAX — Services Page Styles
   ============================================================ */

/* ─── Services Tab Bar ───────────────────────────────────────── */
.services-tabs-bar {
  position: sticky;
  top: 60px;
  z-index: 800;
  background: rgba(17, 19, 24, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.services-tabs {
  display: flex;
  gap: 4px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.services-tabs::-webkit-scrollbar { display: none; }
.stab {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.stab:hover { color: var(--text); background: var(--card); }
.stab.active { color: var(--accent); background: var(--accent-dark); }

/* ─── Service Detail Sections ────────────────────────────────── */
.service-detail {
  padding: 100px 0;
}
.service-detail.alt-bg {
  background: var(--surface);
}
.sd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sd-grid.reversed .sd-copy { order: 2; }
.sd-grid.reversed .sd-visual { order: 1; }

.sd-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.sd-badge.cyan  { background: rgba(0,212,255,0.1);  color: var(--accent); border: 1px solid rgba(0,212,255,0.2); }
.sd-badge.blue  { background: rgba(77,159,255,0.1); color: var(--blue);   border: 1px solid rgba(77,159,255,0.2); }
.sd-badge.yellow{ background: rgba(255,209,102,0.1);color: var(--yellow); border: 1px solid rgba(255,209,102,0.2); }
.sd-badge.red   { background: rgba(255,77,109,0.1); color: var(--red);    border: 1px solid rgba(255,77,109,0.2); }

.sd-copy h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.sd-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.sd-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.sd-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

/* Card visuals */
.sd-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
}
.sd-card.cyan-border  { border: 1px solid rgba(0,212,255,0.2); }
.sd-card.blue-border  { border: 1px solid rgba(77,159,255,0.2); }
.sd-card.yellow-border{ border: 1px solid rgba(255,209,102,0.2); }

.sd-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.sd-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sd-card-icon.cyan  { background: rgba(0,212,255,0.1);  color: var(--accent); }
.sd-card-icon.blue  { background: rgba(77,159,255,0.1); color: var(--blue); }
.sd-card-icon.yellow{ background: rgba(255,209,102,0.1);color: var(--yellow); }
.sd-card-title {
  font-size: 15px;
  font-weight: 700;
}
.sd-card-subtitle {
  font-size: 12px;
  color: var(--faint);
}

/* Checklist */
.sd-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.sd-check-item {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.sd-check-item.done { color: var(--accent-green); border-color: rgba(0,229,160,0.15); }

/* Steps */
.sd-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sd-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.sd-step-num {
  width: 24px; height: 24px;
  background: var(--accent-dark);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Info cards (modernization) */
.sd-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sd-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color var(--transition);
}
.sd-info-card:hover { border-color: rgba(0,212,255,0.2); }
.sd-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.sd-info-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.sd-info-desc {
  font-size: 12px;
  color: var(--faint);
}

/* ─── Emergency Section ──────────────────────────────────────── */
.emergency-section {
  background: var(--surface);
}
.emergency-card {
  background: linear-gradient(135deg, #1a0f10, #0d1117);
  border: 1px solid rgba(255,77,109,0.2);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
}
.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,109,0.1);
  border: 1px solid rgba(255,77,109,0.25);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.emerg-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-glow 1s ease-in-out infinite;
}
.emergency-card h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.emergency-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.emerg-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,77,109,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.emerg-card:hover { border-color: rgba(255,77,109,0.25); }
.emerg-icon { font-size: 32px; margin-bottom: 12px; }
.emerg-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.emerg-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.emergency-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Brands Section ─────────────────────────────────────────── */
.brands-section {
  padding: 80px 0;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 0;
}
.brand-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.5px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.brand-pill:hover {
  color: var(--accent);
  border-color: rgba(0,212,255,0.3);
  background: var(--accent-dark);
}

/* ─── Page CTA ───────────────────────────────────────────────── */
.page-cta-section { padding: 100px 0; }
.page-cta-card {
  background: linear-gradient(135deg, #111827, #0d1117);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
}
.page-cta-card h2 {
  font-size: clamp(24px,3vw,36px);
  font-weight: 800;
  margin-bottom: 16px;
}
.page-cta-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .sd-grid, .sd-grid.reversed {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sd-grid.reversed .sd-copy,
  .sd-grid.reversed .sd-visual { order: unset; }
  .emergency-card { padding: 40px 24px; }
  .emergency-grid { grid-template-columns: 1fr; }
  .page-cta-card { padding: 40px 24px; }
}
