/**
 * SparkSonic Service Pages — Complete Styles
 * Custom CSS classes — zero Tailwind dependency.
 * Mobile-first with responsive breakpoints.
 * v3.0
 */

/* ══════════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════════ */
.sparksonic-services-archive,
.sparksonic-single-service {
  padding-bottom: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.sparksonic-services-archive *,
.sparksonic-single-service * {
  box-sizing: border-box;
}

/* ══════════════════════════════════════════════════════════════
   ARCHIVE — HERO
   ══════════════════════════════════════════════════════════════ */
.sa-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 16px 40px;
  text-align: center;
}
@media (min-width: 640px) {
  .sa-hero { padding: 56px 24px 48px; }
}
@media (min-width: 1024px) {
  .sa-hero { padding: 72px 32px 56px; }
}

.sa-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 40%, #3b82f6 80%, #6366f1 100%);
}
.sa-hero__pattern {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sa-hero__inner {
  position: relative; z-index: 1;
  max-width: 960px; margin: 0 auto;
}

/* ── Breadcrumbs ─────────────────────────────── */
.sa-breadcrumbs { margin-bottom: 16px; }
.sa-breadcrumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px;
}
@media (min-width: 640px) { .sa-breadcrumbs ol { font-size: 14px; gap: 8px; } }
.sa-breadcrumbs a { color: rgba(191,219,254,0.9); text-decoration: none; transition: color .2s; }
.sa-breadcrumbs a:hover { color: #fff; }
.sa-breadcrumbs__sep { color: rgba(147,197,253,0.5); display: flex; }
.sa-breadcrumbs__sep svg { width: 14px; height: 14px; }
.sa-breadcrumbs__current { color: #fff; font-weight: 600; }

/* ── Title & Subtitle ────────────────────────── */
.sa-hero__title {
  color: #fff; font-weight: 800; margin: 0 0 10px;
  font-size: 28px; line-height: 1.15; letter-spacing: -0.02em;
}
@media (min-width: 480px) { .sa-hero__title { font-size: 34px; } }
@media (min-width: 640px) { .sa-hero__title { font-size: 42px; margin-bottom: 14px; } }
@media (min-width: 1024px) { .sa-hero__title { font-size: 52px; } }

.sa-hero__subtitle {
  color: rgba(191,219,254,0.95); margin: 0 auto 28px;
  max-width: 640px; font-size: 14px; line-height: 1.65;
}
@media (min-width: 640px) { .sa-hero__subtitle { font-size: 16px; margin-bottom: 32px; } }
@media (min-width: 1024px) { .sa-hero__subtitle { font-size: 18px; max-width: 720px; } }

/* ── Stat pills ──────────────────────────────── */
.sa-hero__pills {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-bottom: 28px;
}
@media (min-width: 640px) { .sa-hero__pills { gap: 10px; margin-bottom: 32px; } }

.sa-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 999px;
  padding: 6px 14px; font-size: 12px; font-weight: 600;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
@media (min-width: 640px) { .sa-pill { font-size: 13px; padding: 7px 16px; } }
.sa-pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.sa-pill--cat { display: none; }
@media (min-width: 640px) { .sa-pill--cat { display: inline-flex; color: rgba(219,234,254,0.9); } }
.sa-pill em {
  font-style: normal; background: rgba(255,255,255,0.2);
  border-radius: 999px; padding: 0 6px; font-size: 11px; margin-left: 2px;
}

/* ── Filters ─────────────────────────────────── */
.sa-filters {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 560px; margin: 0 auto;
}
@media (min-width: 560px) { .sa-filters { flex-direction: row; gap: 12px; } }

.sa-filters__search {
  position: relative; flex: 1;
}
.sa-filters__search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: #9ca3af; pointer-events: none;
}
.sa-filters__search input {
  width: 100%; height: 46px;
  padding: 0 16px 0 42px;
  border: none; border-radius: 12px;
  background: #fff; color: #111827;
  font-size: 14px; font-family: inherit;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  outline: none; transition: box-shadow .2s;
}
.sa-filters__search input::placeholder { color: #9ca3af; }
.sa-filters__search input:focus { box-shadow: 0 4px 16px rgba(0,0,0,.15), 0 0 0 3px rgba(59,130,246,0.3); }
@media (min-width: 640px) {
  .sa-filters__search input { height: 48px; font-size: 15px; }
}

.sa-filters__cat { width: 100%; }
@media (min-width: 560px) { .sa-filters__cat { width: 190px; flex-shrink: 0; } }
.sa-filters__cat select {
  width: 100%; height: 46px;
  padding: 0 36px 0 14px;
  border: none; border-radius: 12px;
  background: #fff; color: #374151;
  font-size: 14px; font-family: inherit;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  outline: none; cursor: pointer; transition: box-shadow .2s;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.sa-filters__cat select:focus { box-shadow: 0 4px 16px rgba(0,0,0,.15), 0 0 0 3px rgba(59,130,246,0.3); }
@media (min-width: 640px) {
  .sa-filters__cat select { height: 48px; font-size: 15px; }
}

/* ══════════════════════════════════════════════════════════════
   ARCHIVE — SECTION & GRID
   ══════════════════════════════════════════════════════════════ */
.sa-section {
  max-width: 1160px; margin: 0 auto;
  padding: 24px 16px 32px;
}
@media (min-width: 640px) { .sa-section { padding: 32px 24px 40px; } }
@media (min-width: 1024px) { .sa-section { padding: 40px 32px 48px; } }

.sa-counter {
  text-align: center; color: #6b7280; font-size: 13px;
  margin: 0 0 20px;
}
@media (min-width: 640px) { .sa-counter { font-size: 14px; margin-bottom: 28px; } }
.sa-counter strong { color: #111827; }

.sa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 560px) { .sa-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 900px) { .sa-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ══════════════════════════════════════════════════════════════
   ARCHIVE — SERVICE CARD
   ══════════════════════════════════════════════════════════════ */
.svc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  transition: transform .3s ease, box-shadow .3s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.1), 0 8px 16px rgba(0,0,0,.06);
}

/* ── Card image ──────────────────────────────── */
.svc-card__image {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f9fafb;
}
.svc-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.svc-card:hover .svc-card__image img { transform: scale(1.06); }
.svc-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.15) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover .svc-card__overlay { opacity: 1; }

/* Placeholder (no image) */
.svc-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  display: flex; align-items: center; justify-content: center;
}
.svc-card__placeholder svg {
  width: 48px; height: 48px; color: #93c5fd; opacity: .6;
}
@media (min-width: 640px) { .svc-card__placeholder svg { width: 56px; height: 56px; } }

/* ── Badges ──────────────────────────────────── */
.svc-badge {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.01em;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
@media (min-width: 640px) { .svc-badge { font-size: 12px; padding: 4px 12px; } }
.svc-badge--top-left { top: 10px; left: 10px; }
.svc-badge--top-right { top: 10px; right: 10px; }

.svc-badge--default  { background: rgba(243,244,246,.92); color: #374151; }
.svc-badge--blue     { background: rgba(219,234,254,.92); color: #1e40af; }
.svc-badge--orange   { background: rgba(255,237,213,.92); color: #9a3412; }
.svc-badge--green    { background: rgba(220,252,231,.92); color: #166534; }
.svc-badge--red      { background: rgba(254,226,226,.92); color: #991b1b; }
.svc-badge--indigo   { background: rgba(224,231,255,.92); color: #3730a3; }
.svc-badge--pink     { background: rgba(252,231,243,.92); color: #9d174d; }
.svc-badge--cyan     { background: rgba(207,250,254,.92); color: #155e75; }
.svc-badge--yellow   { background: rgba(254,249,195,.92); color: #854d0e; }
.svc-badge--teal     { background: rgba(204,251,241,.92); color: #115e59; }
.svc-badge--amber    { background: rgba(254,243,199,.92); color: #92400e; }

/* ── Card body ───────────────────────────────── */
.svc-card__body {
  padding: 18px 18px 20px;
  display: flex; flex-direction: column; flex: 1;
}
@media (min-width: 640px) { .svc-card__body { padding: 20px 22px 22px; } }

.svc-card__title {
  font-size: 16px; font-weight: 700; color: #111827;
  margin: 0 0 4px; line-height: 1.3;
  transition: color .2s;
}
@media (min-width: 640px) { .svc-card__title { font-size: 18px; } }
.svc-card:hover .svc-card__title { color: #1d4ed8; }

.svc-card__price {
  font-size: 13px; font-weight: 700; color: #2563eb;
  margin: 0 0 8px;
}
@media (min-width: 640px) { .svc-card__price { font-size: 14px; } }

.svc-card__desc {
  font-size: 13px; line-height: 1.6; color: #6b7280;
  margin: 0 0 12px;
  display: -webkit-box; -webkit-line-clamp: 2;
  line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) { .svc-card__desc { font-size: 14px; margin-bottom: 14px; } }

/* Feature tags */
.svc-card__tags {
  display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px;
}
@media (min-width: 640px) { .svc-card__tags { gap: 6px; margin-bottom: 14px; } }
.svc-tag {
  display: inline-flex; align-items: center;
  padding: 2px 9px; border-radius: 999px;
  font-size: 10px; font-weight: 600;
  background: #eff6ff; color: #1d4ed8; border: 1px solid #dbeafe;
}
@media (min-width: 640px) { .svc-tag { font-size: 11px; padding: 3px 10px; } }
.svc-tag--more { background: #f9fafb; color: #9ca3af; border-color: #e5e7eb; }

/* Duration */
.svc-card__duration {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #9ca3af; margin-bottom: 14px;
}
@media (min-width: 640px) { .svc-card__duration { font-size: 13px; } }
.svc-card__duration svg { width: 14px; height: 14px; flex-shrink: 0; }

/* CTA button */
.svc-card__cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 42px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 700;
  border-radius: 12px;
  margin-top: auto;
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(37,99,235,.2);
}
@media (min-width: 640px) { .svc-card__cta { height: 44px; font-size: 14px; } }
.svc-card__cta svg { width: 15px; height: 15px; transition: transform .2s; }
.svc-card__cta:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
  transform: translateY(-1px);
  color: #fff; text-decoration: none;
}
.svc-card__cta:hover svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════════
   ARCHIVE — EMPTY & NO RESULTS
   ══════════════════════════════════════════════════════════════ */
.sa-empty {
  grid-column: 1 / -1; text-align: center; padding: 56px 16px;
}
.sa-empty__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: #f3f4f6; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.sa-empty__icon svg { width: 36px; height: 36px; color: #d1d5db; }
.sa-empty h2 { font-size: 18px; font-weight: 600; color: #6b7280; margin: 0 0 6px; }
.sa-empty p { font-size: 14px; color: #9ca3af; margin: 0; }

.sa-no-results { text-align: center; padding: 48px 16px; }
.sa-no-results__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #eff6ff; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
}
.sa-no-results__icon svg { width: 28px; height: 28px; color: #93c5fd; }
.sa-no-results h3 { font-size: 16px; font-weight: 600; color: #374151; margin: 0 0 4px; }
.sa-no-results p { font-size: 13px; color: #9ca3af; margin: 0 0 16px; }
.sa-no-results__clear {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #2563eb;
  background: none; border: none; cursor: pointer; font-family: inherit;
  transition: color .2s;
}
.sa-no-results__clear:hover { color: #1e40af; }
.sa-no-results__clear svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════════════════════════════
   ARCHIVE — CTA BANNER
   ══════════════════════════════════════════════════════════════ */
.sa-cta-wrap {
  max-width: 1160px; margin: 0 auto;
  padding: 0 16px 40px;
}
@media (min-width: 640px) { .sa-cta-wrap { padding: 0 24px 56px; } }
@media (min-width: 1024px) { .sa-cta-wrap { padding: 0 32px 64px; } }

.sa-cta {
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
  border-radius: 20px; text-align: center; color: #fff;
  padding: 32px 20px;
  box-shadow: 0 10px 30px rgba(37,99,235,.25);
}
@media (min-width: 640px) { .sa-cta { padding: 40px 32px; border-radius: 24px; } }
@media (min-width: 1024px) { .sa-cta { padding: 48px 48px; } }

.sa-cta__title {
  font-size: 22px; font-weight: 800; margin: 0 0 8px;
}
@media (min-width: 640px) { .sa-cta__title { font-size: 26px; margin-bottom: 10px; } }
@media (min-width: 1024px) { .sa-cta__title { font-size: 30px; } }

.sa-cta__text {
  color: rgba(191,219,254,.9); max-width: 480px;
  margin: 0 auto 20px; font-size: 14px; line-height: 1.65;
}
@media (min-width: 640px) { .sa-cta__text { font-size: 15px; margin-bottom: 24px; } }

.sa-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #1d4ed8; text-decoration: none;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transition: all .2s;
}
@media (min-width: 640px) { .sa-cta__btn { font-size: 15px; padding: 14px 28px; } }
.sa-cta__btn svg { width: 18px; height: 18px; }
.sa-cta__btn:hover {
  background: #eff6ff; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  color: #1d4ed8; text-decoration: none;
}

/* ══════════════════════════════════════════════════════════════
   ARCHIVE — TOUCH DEVICE OVERRIDES
   ══════════════════════════════════════════════════════════════ */
@media (hover: none) {
  .svc-card:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  }
  .svc-card:hover .svc-card__image img { transform: none; }
  .svc-card__cta:hover { transform: none; }
}


/* ══════════════════════════════════════════════════════════════
   ═══════════════════════════════════════════════════════════════
   SINGLE SERVICE PAGE
   ═══════════════════════════════════════════════════════════════
   ══════════════════════════════════════════════════════════════ */

/* ── Hero image — responsive height ──────────── */
.sparksonic-single-service .svc-hero-img {
  height: 220px;
}
@media (min-width: 480px) {
  .sparksonic-single-service .svc-hero-img { height: 280px; }
}
@media (min-width: 640px) {
  .sparksonic-single-service .svc-hero-img { height: 340px; }
}
@media (min-width: 768px) {
  .sparksonic-single-service .svc-hero-img { height: 380px; }
}
@media (min-width: 1024px) {
  .sparksonic-single-service .svc-hero-img { height: 420px; }
}

/* ── Prose — WP editor content ───────────────── */
.sparksonic-single-service .prose {
  font-size: 0.9375rem; line-height: 1.75;
}
@media (min-width: 640px) {
  .sparksonic-single-service .prose { font-size: 1rem; }
}
.sparksonic-single-service .prose h2 {
  font-size: 1.25rem; font-weight: 700;
  margin-top: 1.75rem; margin-bottom: 0.75rem; color: #111827;
}
@media (min-width: 640px) {
  .sparksonic-single-service .prose h2 { font-size: 1.5rem; margin-top: 2rem; }
}
.sparksonic-single-service .prose h3 {
  font-size: 1.125rem; font-weight: 600;
  margin-top: 1.25rem; margin-bottom: 0.5rem; color: #1f2937;
}
@media (min-width: 640px) {
  .sparksonic-single-service .prose h3 { font-size: 1.25rem; margin-top: 1.5rem; }
}
.sparksonic-single-service .prose p { margin-bottom: 1rem; }
.sparksonic-single-service .prose ul,
.sparksonic-single-service .prose ol { margin-bottom: 1rem; padding-left: 1.25rem; }
@media (min-width: 640px) {
  .sparksonic-single-service .prose ul,
  .sparksonic-single-service .prose ol { padding-left: 1.5rem; }
}
.sparksonic-single-service .prose li { margin-bottom: 0.25rem; }
.sparksonic-single-service .prose ul li { list-style-type: disc; }
.sparksonic-single-service .prose ol li { list-style-type: decimal; }
.sparksonic-single-service .prose a { color: #2563eb; text-decoration: underline; }
.sparksonic-single-service .prose a:hover { color: #1d4ed8; }
.sparksonic-single-service .prose img {
  border-radius: 0.5rem; margin: 1rem 0; max-width: 100%; height: auto;
}
.sparksonic-single-service .prose blockquote {
  border-left: 4px solid #e5e7eb; padding-left: 0.75rem;
  margin: 1rem 0; color: #6b7280; font-style: italic;
}
@media (min-width: 640px) {
  .sparksonic-single-service .prose blockquote { padding-left: 1rem; }
}

/* ── Meta detail card spacing ────────────────── */
.sparksonic-single-service .grid .flex.items-center .flex-shrink-0 {
  margin-right: 12px !important;
}
@media (min-width: 640px) {
  .sparksonic-single-service .grid .flex.items-center .flex-shrink-0 {
    margin-right: 16px !important;
  }
}

/* ── Gallery slider ──────────────────────────── */
.sparksonic-single-service .gallery-slider {
  display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important;
  gap: 10px; overflow-x: auto !important; overflow-y: hidden !important;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; padding-bottom: 8px;
}
@media (min-width: 640px) { .sparksonic-single-service .gallery-slider { gap: 14px; } }

.sparksonic-single-service .gallery-slider::-webkit-scrollbar { height: 5px; }
@media (min-width: 640px) { .sparksonic-single-service .gallery-slider::-webkit-scrollbar { height: 6px; } }
.sparksonic-single-service .gallery-slider::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 3px; }
.sparksonic-single-service .gallery-slider::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.sparksonic-single-service .gallery-slider::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

.sparksonic-single-service .gallery-slide {
  flex: 0 0 220px !important; min-width: 220px !important; max-width: 220px !important;
  height: 160px !important; scroll-snap-align: start; border-radius: 10px;
  overflow: hidden; background: #f8fafc; border: 1px solid #e2e8f0;
  display: block !important; text-decoration: none; position: relative;
  transition: box-shadow .3s ease, transform .3s ease;
}
@media (min-width: 480px) {
  .sparksonic-single-service .gallery-slide {
    flex: 0 0 250px !important; min-width: 250px !important;
    max-width: 250px !important; height: 180px !important;
  }
}
@media (min-width: 640px) {
  .sparksonic-single-service .gallery-slide {
    flex: 0 0 280px !important; min-width: 280px !important;
    max-width: 280px !important; height: 200px !important;
  }
}
.sparksonic-single-service .gallery-slide:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.12); transform: translateY(-2px);
}
.sparksonic-single-service .gallery-slide img {
  width: 100% !important; height: 100% !important; object-fit: cover !important;
  display: block; transition: transform .4s ease;
}
.sparksonic-single-service .gallery-slide:hover img { transform: scale(1.06); }
.gallery-error {
  height: 100%; display: flex; align-items: center; justify-content: center;
  color: #94a3b8; font-size: 12px; flex-direction: column; gap: 6px;
}

/* Nav buttons */
.sparksonic-single-service .gallery-nav-btns { display: flex; gap: 4px; }
@media (min-width: 640px) { .sparksonic-single-service .gallery-nav-btns { gap: 6px; } }
.sparksonic-single-service .gallery-nav-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid #e2e8f0; background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #475569; transition: all .2s ease;
}
@media (min-width: 640px) { .sparksonic-single-service .gallery-nav-btn { width: 34px; height: 34px; } }
.sparksonic-single-service .gallery-nav-btn:hover { background: #2563eb; color: white; border-color: #2563eb; }

/* ── Related services divider ────────────────── */
.related-services-section { position: relative; }
.related-divider {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-top: 8px;
}
@media (min-width: 640px) { .related-divider { gap: 16px; margin-bottom: 28px; padding-top: 10px; } }
.related-divider-line {
  flex: 1; height: 1px; background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}
.related-divider-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #2563eb; box-shadow: 0 2px 8px rgba(37,99,235,.15);
}
@media (min-width: 640px) { .related-divider-icon { width: 44px; height: 44px; } }

/* ── Single: link / line-clamp / aspect / backdrop ── */
.sparksonic-single-service a.block,
.sparksonic-services-archive a.block { text-decoration: none; color: inherit; }
.sparksonic-single-service .line-clamp-2,
.sparksonic-services-archive .line-clamp-2 {
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.sparksonic-single-service .aspect-\[16\/10\],
.sparksonic-services-archive .aspect-\[16\/10\] { aspect-ratio: 16 / 10; }
.sparksonic-single-service .backdrop-blur-sm,
.sparksonic-services-archive .backdrop-blur-sm {
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

/* ── Animate pulse (availability dot) ────────── */
@keyframes svcPulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.sparksonic-single-service .animate-pulse { animation: svcPulse 2s cubic-bezier(.4,0,.6,1) infinite; }

/* ── Single: touch device ────────────────────── */
@media (hover: none) {
  .sparksonic-single-service .gallery-slide:hover { transform: none; }
  .sparksonic-single-service .gallery-slide:hover img { transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════════════════════ */
@media print {
  .sa-hero { display: none; }
  .svc-card { box-shadow: none; border: 1px solid #e5e7eb; break-inside: avoid; }
  .svc-card__cta { display: none; }
  .sa-cta { display: none; }
  .sparksonic-single-service .shadow-md,
  .sparksonic-single-service .shadow-lg { box-shadow: none; border: 1px solid #e5e7eb; }
  .svc-hero, .sparksonic-services-archive .svc-hero { display: none; }
  .gallery-nav-btns { display: none !important; }
}
