/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE DETAIL POLISH — Premium client-facing design system
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero image frames ─────────────────────────────────────────────────── */
.service-details-section .service-details-area > .img1,
.service-details-section .service-details-area .images-area .img1 {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(192, 240, 55, 0.18);
  background:
    radial-gradient(100% 80% at 100% 0%, rgba(192, 240, 55, 0.12), transparent 52%),
    rgba(2, 8, 20, 0.94);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.service-details-section .service-details-area > .img1 {
  height: 480px;
  border-radius: 18px;
  padding: 0;
}

.service-details-section .service-details-area .images-area .img1 {
  height: 320px;
  border-radius: 16px;
  padding: 0;
}

.service-details-section .service-details-area > .img1::before,
.service-details-section .service-details-area .images-area .img1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(90% 80% at 95% 8%, rgba(192, 240, 55, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.18), rgba(2, 8, 18, 0.02));
}

.service-details-section .service-details-area .service-proof-media,
.service-details-section .service-details-area .service-support-media {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
  border-radius: 12px;
  display: block;
}

/* ── Proof strip (metric pills) ────────────────────────────────────────── */
.service-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.service-proof-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 14px;
  padding: 18px 16px;
}

.service-proof-pill strong {
  display: block;
  color: var(--ztc-text-text-8, #CEF12B);
  font-family: var(--ztc-family-font1, 'Outfit', sans-serif);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 6px;
}

.service-proof-pill span {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--ztc-family-font2, sans-serif);
  font-size: 13px;
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURE BENEFIT GRID — replaces the broken ul/li boxes
   Equal-height cards in a strict 3-column grid
   ═══════════════════════════════════════════════════════════════════════════ */

.svc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.svc-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
  cursor: default;
}

.svc-feature-card:hover {
  border-color: rgba(192, 240, 55, 0.35);
  background: rgba(192, 240, 55, 0.03);
  transform: translateY(-2px);
}

.svc-feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(192, 240, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.svc-feature-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(91%) sepia(53%) saturate(459%) hue-rotate(26deg) brightness(108%) contrast(94%);
}

.svc-feature-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  font-weight: 500;
}

/* ── Section label above h3 ────────────────────────────────────────────── */
.svc-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #CEF12B;
  margin-bottom: 12px;
}

.svc-section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #CEF12B;
  border-radius: 2px;
}

/* ── Benefit divider strip ─────────────────────────────────────────────── */
.svc-outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 36px;
}

.svc-outcome-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}

.svc-outcome-item:hover { border-color: rgba(192, 240, 55, 0.25); }

.svc-outcome-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.svc-outcome-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  line-height: 1.35;
}

/* ── Who-this-is-for client target section ─────────────────────────────── */
.svc-client-targets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.svc-client-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
  transition: border-color 0.22s, background 0.22s;
}

.svc-client-card:hover {
  border-color: rgba(192, 240, 55, 0.25);
  background: rgba(192, 240, 55, 0.025);
}

.svc-client-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(192, 240, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
  color: #CEF12B;
}

.svc-client-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  font-family: var(--ztc-family-font1, 'Outfit', sans-serif);
}

.svc-client-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* ── Process steps timeline ────────────────────────────────────────────── */
.svc-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.svc-step {
  display: flex;
  gap: 20px;
  position: relative;
}

.svc-step-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}

.svc-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(192, 240, 55, 0.1);
  border: 2px solid rgba(192, 240, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #CEF12B;
  font-family: var(--ztc-family-font1, 'Outfit', sans-serif);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.svc-step-connector {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: rgba(192, 240, 55, 0.12);
}

.svc-step:last-child .svc-step-connector { display: none; }

.svc-step-body {
  padding-bottom: 28px;
  flex: 1;
}

.svc-step-body h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 6px;
  font-family: var(--ztc-family-font1, 'Outfit', sans-serif);
}

.svc-step-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA inline banner ─────────────────────────────────────────────────── */
.svc-cta-banner {
  background: rgba(192, 240, 55, 0.06);
  border: 1px solid rgba(192, 240, 55, 0.22);
  border-radius: 16px;
  padding: 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.svc-cta-banner-text h4 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  font-family: var(--ztc-family-font1, 'Outfit', sans-serif);
}

.svc-cta-banner-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.svc-cta-banner a.vl-btn1 {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .service-proof-strip,
  .svc-feature-grid,
  .svc-outcome-strip {
    grid-template-columns: 1fr 1fr;
  }

  .svc-client-targets { grid-template-columns: 1fr; }

  .service-details-section .service-details-area > .img1 {
    min-height: 340px;
  }
}

@media (max-width: 767px) {
  .service-proof-strip,
  .svc-feature-grid,
  .svc-outcome-strip,
  .svc-client-targets {
    grid-template-columns: 1fr;
  }

  .service-details-section .service-details-area > .img1 {
    min-height: 260px;
    padding: 8px;
  }

  .service-details-section .service-details-area .images-area .img1 {
    min-height: 220px;
    margin-top: 14px;
  }

  .svc-cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Symmetrical Equal Heights Override ─────────────────────────────────── */

.service-details-section .service-details-side .category-area ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px; /* Standardizes height across 1-line and 2-line wrapped text */
  padding: 12px 20px;
  margin-top: 14px;
}

.svc-feature-card,
.svc-outcome-item,
.svc-client-card {
  height: 100%; /* Guarantees layout-stretching inside CSS grid cells */
}

/* ── Lightbox expandable image animations & styles ──────────────────────── */
.popup-image {
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.popup-image::after {
  content: "\f00e"; /* FontAwesome search-plus icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(206, 241, 43, 0.95);
  color: #0c0d0e;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.popup-image:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup-image img {
  transition: transform 0.4s ease;
}

.popup-image:hover img {
  transform: scale(1.04);
}

/* Mobile fixes */
@media (max-width: 767px) {
  .service-proof-pill strong {
    font-size: 20px;
  }
  .svc-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .svc-feature-card {
    padding: 16px 14px;
  }
  .popup-image::after {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}
