/* ── Services Section ── */
.srv-list-section {
  background: #7a0012;
  /* background: linear-gradient(160deg, #1a0005 0%, #2d0010 40%, #1a0005 100%); */
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.srv-list-section::before,
.srv-list-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.srv-list-section::before {
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 192, 0, 0.04);
}

.srv-list-section::after {
  bottom: -100px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: rgba(149, 0, 21, 0.12);
}

/* Header */
.srv-list-badge-pill {
  display: inline-block;
  background: rgba(255, 192, 0, 0.12);
  border: 1px solid rgba(255, 192, 0, 0.35);
  color: #ffc000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.srv-list-heading {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}

.srv-list-heading span {
  color: #ffc000;
}

.srv-list-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

.srv-list-rule {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.srv-list-rule-line {
  display: block;
  height: 1px;
  width: 55px;
}

.srv-list-rule-line.left {
  background: linear-gradient(to right, transparent, #ffc000);
}

.srv-list-rule-line.right {
  background: linear-gradient(to left, transparent, #ffc000);
}

/* Card wrapper — gradient border trick */
.srv-list-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #f1b500;
  /* background: linear-gradient(145deg, #ffc000 0%, #950015 50%, #ffc000 100%); */
  padding: 4px;
  /* padding: 2px; */
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
  cursor: pointer;
}

.srv-list-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  /* background: linear-gradient(145deg, #ffc000 0%, #ffc000 50%, #ffc000 100%); */
}

/* Inner dark body */
.srv-list-card-inner {
  background: #233269;
  /* background: #110008; */
  border-radius: 9px;
  overflow: hidden;
  height: 100%;
}

/* Badge */
.srv-list-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(135deg, #ffc000, #e0a800);
  color: #1a0005;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px 5px 10px;
  border-radius: 0 0 0 10px;
}

.srv-list-step {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 10;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

/* Image strip */
.srv-list-img-wrap {
  position: relative;
  height: 220px;
  /* height: 195px; */
  overflow: hidden;
}

.srv-list-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.srv-list-card:hover .srv-list-img-wrap img {
  transform: scale(1.08);
}

.srv-list-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 0, 8, 1) 0%,
    rgba(149, 0, 21, 0.55) 45%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}

/* Gold separator */
.srv-list-sep {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffc000 30%,
    #950015 70%,
    transparent
  );
}

/* Body */
.srv-list-body {
  padding: 22px 16px 20px;
}

/* Icon + title */
.srv-list-title-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.srv-list-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc000, #e0a800);
  box-shadow: 0 3px 10px rgba(255, 192, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-list-icon i {
  color: #1a0005;
  font-size: 17px;
}

.srv-list-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 0;
  line-height: 1.3;
}

/* Description */
.srv-list-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.srv-list-readmore {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #ffc000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
  margin-bottom: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.srv-list-readmore:hover {
  opacity: 0.75;
}

/* Dashed divider */
.srv-list-dashed {
  border-top: 1px dashed rgba(255, 192, 0, 0.2);
  margin-bottom: 14px;
}

/* CTA row */
.srv-list-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.srv-list-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background: linear-gradient(135deg, #6e0010 0%, #950015 50%, #c0001a 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 13px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(149, 0, 21, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  position: relative;
  overflow: hidden;
}

.srv-list-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.srv-list-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 8px 24px rgba(149, 0, 21, 0.7);
  color: #fff;
}

.srv-list-btn:hover::before {
  left: 130%;
}

.srv-list-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: srvListPulse 1.4s ease-in-out infinite;
}

@keyframes srvListPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.7);
  }
}

.srv-list-trust {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(
    135deg,
    rgba(255, 192, 0, 0.18),
    rgba(255, 192, 0, 0.06)
  );
  border: 1px solid rgba(255, 192, 0, 0.35);
  border-radius: 20px;
  padding: 5px 10px 5px 7px;
  position: relative;
  overflow: hidden;
}

.srv-list-trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 192, 0, 0.25),
    transparent
  );
  transform: skewX(-15deg);
  animation: srvListShimmer 3s ease-in-out infinite;
}

@keyframes srvListShimmer {
  0% {
    left: -80%;
  }

  60% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

.srv-list-trust i {
  color: #ffc000;
  font-size: 11px;
}

.srv-list-trust-txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffc000;
}

.srv-list-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: srvListLive 1.6s ease-out infinite;
}

@keyframes srvListLive {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Bottom CTA Banner - Mystic Obsidian */
.srv-list-cta-banner {
  background: linear-gradient(135deg, #0a0310 0%, #1f082b 100%);
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  margin-top: 30px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 25px rgba(255, 193, 7, 0.15);
  position: relative;
  overflow: hidden;
}

.srv-list-cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
}

.srv-list-cta-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd700;
  font-weight: 800;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.srv-list-cta-heading {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 25px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.srv-list-btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #ffc000, #e0a800);
  color: #1a0005;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 8px 12px;
  box-shadow: 0 6px 20px rgba(255, 192, 0, 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.srv-list-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 192, 0, 0.5);
  color: #000;
}

.srv-list-btn-ghost {
  display: inline-block;
  background: rgba(37, 211, 102, 0.1);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #25d366;
  margin: 0 8px 12px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.srv-list-btn-ghost i {
  color: #25d366;
  transition: color 0.3s ease;
}

.srv-list-btn-ghost:hover {
  background: #25d366;
  color: #000;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.srv-list-btn-ghost:hover i {
  color: #000;
}

.srv-list-cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 18px 0 0;
  position: relative;
  z-index: 1;
}
