/* ============================================================
   SERVICE PAGE CSS — Premium Template
   Shared across all service pages
============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --sp-red: #c62828;
  --sp-gold: #ffc107;
  --sp-dark: #0d0208;
  --sp-text: #444;
  --sp-light-bg: #f9f6f2;
  --sp-radius: 14px;
}

/* ---- Banner ---- */
.sp-inner-banner {
  position: relative;
  background: linear-gradient(135deg, #1a0005 0%, #3b0012 45%, #1a0030 100%);
  padding: 90px 0 80px;
  overflow: hidden;
  color: #fff;
}
.sp-inner-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -15%;
  width: 50%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(198, 40, 40, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}
.sp-inner-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(74, 20, 140, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}
.sp-inner-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
    repeat;
}
.sp-banner-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.sp-banner-content {
  text-align: left;
}
.sp-banner-content h1 {
  font-family: "Cinzel", serif;
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 12px 0 18px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.sp-banner-content h1 span {
  color: #ffc107;
}
.sp-banner-content > p {
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.sp-banner-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-banner-list li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-banner-list li i {
  color: #ffc107;
  font-size: 15px;
}

/* Banner image */
.sp-banner-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.sp-banner-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 193, 7, 0.15);
  animation: orbitSpin 20s linear infinite;
}
.sp-ring-1 {
  width: 380px;
  height: 380px;
  border-color: rgba(255, 193, 7, 0.18);
  animation-duration: 25s;
}
.sp-ring-2 {
  width: 300px;
  height: 300px;
  border-color: rgba(198, 40, 40, 0.2);
  animation-duration: 18s;
  animation-direction: reverse;
}
.sp-ring-3 {
  width: 220px;
  height: 220px;
  border-color: rgba(255, 193, 7, 0.12);
  animation-duration: 12s;
}
@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.sp-banner-img-wrap {
  position: relative;
  z-index: 3;
  width: 340px;
  height: 420px;
}
.sp-banner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* border-radius:200px 200px 120px 120px; */
  /* filter:drop-shadow(0 20px 50px rgba(0,0,0,.6)); */
  border: 3px solid rgb(255 192 0);
  border-radius: 36px;
}
.sp-banner-float-badge {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: linear-gradient(135deg, #c62828, #b71c1c);
  border: 2px solid rgba(255, 193, 7, 0.4);
  border-radius: 16px;
  padding: 14px 20px;
  text-align: center;
  z-index: 4;
  box-shadow: 0 10px 30px rgba(198, 40, 40, 0.4);
}
.sp-banner-float-badge strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffc107;
  line-height: 1;
}
.sp-banner-float-badge span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Buttons */
.sp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
}
.sp-btn-primary {
  background: linear-gradient(135deg, #c62828, #b71c1c);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.4);
}
.sp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(198, 40, 40, 0.5);
  color: #fff !important;
  text-decoration: none;
}
.sp-btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.sp-btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  color: #fff !important;
  text-decoration: none;
}
.sp-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 193, 7, 0.5);
  color: #ffc107 !important;
}
.sp-btn-outline:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: #ffc107;
  transform: translateY(-3px);
  color: #ffc107 !important;
  text-decoration: none;
}
.sp-banner-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Badges */
.sp-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: #ffc107;
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 14px;
}
.sp-section-badge {
  display: inline-block;
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.2);
  color: var(--sp-red);
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-family: "Poppins", sans-serif;
}
.sp-badge-gold {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
  color: #e6a800;
}
.sp-badge-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

/* Section headers */
.sp-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.sp-section-header h2,
.sp-intro-text h2,
.sp-why-text h2,
.sp-cta-content h2 {
  font-family: "Cinzel", serif;
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 12px 0 16px;
  line-height: 1.25;
}
.sp-section-header h2 span,
.sp-intro-text h2 span,
.sp-why-text h2 span,
.sp-cta-content h2 span {
  color: var(--sp-red);
}
.sp-section-header > p,
.sp-intro-text > p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #666;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

/* SECTION 1: Intro */
.sp-intro-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.sp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.sp-intro-text > p {
  text-align: left;
  margin: 0 0 16px;
}
.sp-trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.sp-trust-item {
  background: rgba(198, 40, 40, 0.04);
  border: 1px solid rgba(198, 40, 40, 0.08);
  border-radius: 14px;
  padding: 15px 25px;
  text-align: center;
  min-width: 140px;
  transition: all 0.4s ease;
}

.sp-trust-item:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(198, 40, 40, 0.1);
  border-color: rgba(198, 40, 40, 0.2);
}

.sp-trust-item strong {
  font-family: "Cinzel", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--sp-red);
  line-height: 1;
}
.sp-trust-item span {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: #888;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sp-intro-visual {
  display: block;
}
/* Query form inside intro section overrides */
.sp-intro-visual .rqa-box {
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(149, 0, 21, 0.35);
  border: 1px solid rgba(255, 193, 7, 0.18);
  padding: 36px 32px;
}
.sp-intro-visual .rqa-box h3 {
  font-family: "Cinzel", serif;
  font-size: 22px;
  letter-spacing: 1px;
}
.sp-intro-visual .rqa-box p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
}
.sp-intro-visual .rqa-box form.rqa-form input,
.sp-intro-visual .rqa-box form.rqa-form textarea {
  border-radius: 8px;
  padding-left: 14px;
  font-size: 14px;
  background: #fff;
}
.sp-intro-visual .rqa-box form.rqa-form .single-input {
  margin-bottom: 10px;
}
.sp-intro-visual .rqa-box form.rqa-form button.get_quote {
  width: 100%;
  border-radius: 8px;
  margin-top: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffc107, #e0a800);
  color: #1a0005;
  height: auto;
  padding: 12px 0;
  line-height: 1;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.sp-intro-visual .rqa-box form.rqa-form button.get_quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 193, 7, 0.5);
  color: #1a0005;
}
.sp-visual-card {
  background: linear-gradient(145deg, #1a0005, #2d0018);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 24px;
  padding: 30px 25px;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  max-width: 320px;
  width: 100%;
}
.sp-visual-img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.sp-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-visual-card h3 {
  font-family: "Cinzel", serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffc107;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.sp-card-link {
  color: #ffc107 !important;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.sp-card-link:hover {
  color: #fff !important;
  text-decoration: none;
}

/* SECTION 2: Signs */
.sp-signs-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0208 0%, #1a0030 45%, #2d0010 100%);
  position: relative;
  overflow: hidden;
}
.sp-signs-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 180%;
  background: radial-gradient(
    circle,
    rgba(198, 40, 40, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.sp-signs-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 45%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(74, 20, 140, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
/* Override section header text colors for dark background */
.sp-signs-section .sp-section-header h2 {
  color: #fff;
}
.sp-signs-section .sp-section-header h2 span {
  color: var(--sp-gold);
}
.sp-signs-section .sp-section-header > p {
  color: rgba(255, 255, 255, 0.65);
}
.sp-signs-section .sp-section-badge {
  background: rgba(255, 193, 7, 0.12);
  border-color: rgba(255, 193, 7, 0.3);
  color: #ffc107;
}
.sp-signs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Dynamic Card Colors using HSL for harmony */
.sp-sign-card {
  --card-hue: 0;
  --card-color: hsla(var(--card-hue), 85%, 60%, 1);
  --card-bg: hsla(var(--card-hue), 85%, 45%, 0.12);

  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--sp-radius);
  padding: 30px 22px;
  border: 1px solid hsla(var(--card-hue), 85%, 45%, 0.2);
  border-top: 5px solid var(--card-color);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.sp-sign-card:nth-child(1) {
  --card-hue: 0;
} /* Red */
.sp-sign-card:nth-child(2) {
  --card-hue: 280;
} /* Purple */
.sp-sign-card:nth-child(3) {
  --card-hue: 200;
} /* Blue */
.sp-sign-card:nth-child(4) {
  --card-hue: 150;
} /* Green */
.sp-sign-card:nth-child(5) {
  --card-hue: 35;
} /* Gold/Orange */
.sp-sign-card:nth-child(6) {
  --card-hue: 330;
} /* Pink/Magenta */
.sp-sign-card:nth-child(7) {
  --card-hue: 180;
} /* Cyan */
.sp-sign-card:nth-child(8) {
  --card-hue: 60;
} /* Lime/Yellow */

.sp-sign-card:hover {
  transform: translateY(-10px);
  background: hsla(var(--card-hue), 85%, 45%, 0.2);
  box-shadow: 0 20px 45px hsla(var(--card-hue), 85%, 45%, 0.35);
  border-color: hsla(var(--card-hue), 85%, 60%, 0.4);
  border-top-width: 6px;
}

.sp-sign-icon {
  width: 52px;
  height: 52px;
  background: var(--card-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: var(--card-color);
  transition: all 0.4s ease;
  box-shadow: inset 0 0 0 1px hsla(var(--card-hue), 85%, 45%, 0.1);
}

.sp-sign-card:hover .sp-sign-icon {
  background: var(--card-color);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px hsla(var(--card-hue), 85%, 45%, 0.3);
}

.sp-sign-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.sp-sign-card p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* SECTION 3: Services */
.sp-services-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.sp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}
.sp-service-card {
  --srv-hue: 0;
  --srv-color: hsla(var(--srv-hue), 85%, 40%, 1);
  --srv-bg: hsla(var(--srv-hue), 85%, 40%, 0.05);

  background: var(--srv-bg);
  border: 1px solid hsla(var(--srv-hue), 85%, 40%, 0.1);
  border-radius: 18px;
  padding: 35px 28px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.sp-service-card:nth-child(1) {
  --srv-hue: 0;
} /* Red */
.sp-service-card:nth-child(2) {
  --srv-hue: 280;
} /* Purple */
.sp-service-card:nth-child(3) {
  --srv-hue: 150;
} /* Green */
.sp-service-card:nth-child(4) {
  --srv-hue: 35;
} /* Gold */
.sp-service-card:nth-child(5) {
  --srv-hue: 200;
} /* Blue */
.sp-service-card:nth-child(6) {
  --srv-hue: 330;
} /* Pink */

.sp-service-card:hover {
  transform: translateY(-12px);
  background: #fff;
  box-shadow: 0 30px 60px hsla(var(--srv-hue), 85%, 40%, 0.15);
  border-color: hsla(var(--srv-hue), 85%, 40%, 0.2);
}

.sp-service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid hsla(var(--srv-hue), 85%, 40%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: all 0.4s ease;
  background: #fff;
  color: var(--srv-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sp-service-card:hover .sp-service-icon {
  transform: scale(1.15) rotate(-5deg);
  color: #fff !important;
  background: var(--srv-color);
  border-color: transparent;
  box-shadow: 0 15px 30px hsla(var(--srv-hue), 85%, 40%, 0.3);
}

.sp-service-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.sp-service-card p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 22px;
}
.sp-service-link {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--sp-red) !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.sp-service-link:hover {
  color: #b71c1c !important;
  transform: translateX(5px);
}

/* SECTION 4: Why Choose */
.sp-why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0005 0%, #2d0010 50%, #0d001a 100%);
  color: #fff;
}
.sp-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}
.sp-why-text h2 {
  color: #fff;
}
.sp-why-text > p {
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 35px;
  text-align: left;
}
.sp-why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sp-why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.sp-why-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffc107;
}
.sp-why-content strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.sp-why-content p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}
/* ... (Why Section grid/text styles) ... */
.sp-why-stat-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sp-stat-card {
  --stat-hue: 45; /* Default Gold */
  --stat-color: hsla(var(--stat-hue), 85%, 55%, 1);

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sp-stat-card:nth-child(1) {
  --stat-hue: 45;
} /* Gold */
.sp-stat-card:nth-child(2) {
  --stat-hue: 280;
} /* Purple */
.sp-stat-card:nth-child(3) {
  --stat-hue: 150;
} /* Green */
.sp-stat-card:nth-child(4) {
  --stat-hue: 200;
} /* Blue */

.sp-stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--stat-color);
  box-shadow: 0 15px 35px hsla(var(--stat-hue), 85%, 55%, 0.15);
}

.sp-stat-number {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--stat-color);
  line-height: 1;
  transition: transform 0.4s ease;
}
.sp-stat-card:hover .sp-stat-number {
  transform: scale(1.1);
}
.sp-stat-label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}
.sp-full-btn {
  grid-column: 1 / -1;
  justify-content: center;
  border-radius: 14px;
  margin-top: 10px;
}

/* SECTION 5: FAQ */
.sp-faq-section {
  padding: 100px 0;
  background: var(--sp-light-bg);
}
.sp-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-faq-item {
  background: #fff;
  border-radius: var(--sp-radius);
  border: 1px solid #e8e0d0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.sp-faq-item.open {
  box-shadow: 0 8px 30px rgba(198, 40, 40, 0.08);
  border-color: rgba(198, 40, 40, 0.2);
}
.sp-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}
.sp-faq-item.open .sp-faq-question {
  color: var(--sp-red);
}
.sp-faq-icon {
  min-width: 20px;
  color: var(--sp-red);
  transition: transform 0.35s ease;
}
.sp-faq-item.open .sp-faq-icon {
  transform: rotate(180deg);
}
.sp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 28px;
}
.sp-faq-item.open .sp-faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}
.sp-faq-answer p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* SECTION 6: CTA */
.sp-cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0208 0%, #1a0030 50%, #2d0010 100%);
  text-align: center;
  overflow: hidden;
}
.sp-cta-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
    repeat;
}
.sp-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(198, 40, 40, 0.2) 0%,
    transparent 70%
  );
}
.sp-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.sp-cta-content h2 {
  color: #fff;
  margin: 12px 0 20px;
  font-size: 40px;
}
.sp-cta-content h2 span {
  color: var(--sp-gold);
}
.sp-cta-content > p {
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
}
.sp-cta-content .sp-banner-cta {
  justify-content: center;
}

/* ============================================================
   ARTICLE / CONTENT SECTION
============================================================ */
.sp-article-section {
  padding: 40px 0;
  background-color: #fcfcfc;
  position: relative;
}
.sp-article-content {
  margin: 0 auto;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(149, 0, 21, 0.08);
  position: relative;
  z-index: 2;
}
.sp-article-content h2 {
  font-family: "Cinzel", serif;
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
}
.sp-article-content h2 span {
  color: #950015;
}
.sp-article-content p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}
.sp-article-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sp-article-content {
    padding: 30px 20px;
  }
  .sp-article-content h2 {
    font-size: 28px;
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .sp-signs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .sp-banner-grid,
  .sp-intro-grid,
  .sp-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sp-banner-image {
    height: 380px;
    order: -1;
  }
  .sp-banner-content,
  .sp-intro-text {
    text-align: center;
  }
  .sp-banner-list {
    align-items: center;
  }
  .sp-banner-cta,
  .sp-trust-badges {
    justify-content: center;
  }
  .sp-banner-content h1 {
    font-size: 34px;
  }
  .sp-intro-visual {
    order: -1;
  }
  .sp-why-stat-panel {
    order: -1;
  }
  .sp-signs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-section-header h2,
  .sp-intro-text h2,
  .sp-why-text h2,
  .sp-cta-content h2 {
    font-size: 30px;
  }
  .sp-why-text > p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .sp-banner-content h1 {
    font-size: 26px;
    letter-spacing: 2px;
  }
  .sp-services-grid {
    grid-template-columns: 1fr;
  }
  .sp-signs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sp-inner-banner,
  .sp-intro-section,
  .sp-signs-section,
  .sp-services-section,
  .sp-why-section,
  .sp-faq-section,
  .sp-cta-section {
    padding: 70px 0;
  }
}
