
/* BILLIONVISION — Service marketplace pages */
.service-page {
  --sv-accent: #c45c26;
  --sv-accent-dark: #9a4518;
  --sv-cta: #ef4444;
  --sv-dark: #0f172a;
  --sv-muted: #64748b;
  --sv-light: #f8fafc;
  --sv-radius: 12px;
  font-family: "Montserrat", "Roboto", sans-serif;
}

/* Hero */
.sv-hero {
  background: var(--sv-accent);
  color: #fff;
  padding: 10.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.sv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 50%);
  pointer-events: none;
}
.sv-breadcrumb {
  font-size: .8rem;
  opacity: .85;
  margin-bottom: 1rem;
}
.sv-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.sv-breadcrumb a:hover { text-decoration: underline; }
.sv-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .35rem;
}
.sv-hero h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: rgba(255,255,255,.95);
  margin-bottom: 1rem;
}
.sv-hero-lead {
  font-size: 1rem;
  line-height: 1.7;
  opacity: .92;
  max-width: 540px;
}
.sv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.sv-btn-call {
  background: #fff;
  color: var(--sv-dark);
  border: none;
  font-weight: 600;
  padding: .65rem 1.35rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.sv-btn-call:hover {
  color: var(--sv-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.sv-btn-wa {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.8);
  font-weight: 600;
  padding: .6rem 1.35rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.sv-btn-wa:hover {
  background: #fff;
  color: var(--sv-accent);
}

/* Lead form card */
.sv-lead-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  color: var(--sv-dark);
}
.sv-lead-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--sv-dark);
}
.sv-lead-card .form-control,
.sv-lead-card .form-select {
  border-radius: 8px;
  border-color: #e2e8f0;
  padding: .65rem .85rem;
  font-size: .9rem;
}
.sv-lead-card .form-control:focus,
.sv-lead-card .form-select:focus {
  border-color: var(--sv-accent);
  box-shadow: 0 0 0 .2rem rgba(196,92,38,.15);
}
.sv-btn-submit {
  background: var(--sv-cta);
  border: none;
  color: #fff;
  font-weight: 600;
  width: 100%;
  padding: .75rem;
  border-radius: 8px;
  transition: background .2s, transform .2s;
}
.sv-btn-submit:hover {
  background: #dc2626;
  color: #fff;
  transform: translateY(-1px);
}

/* Section commons */
.sv-section {
  padding: 4rem 0;
}
.sv-section--light { background: var(--sv-light); }
.sv-eyebrow {
  color: var(--sv-cta);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.sv-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--sv-dark);
  margin-bottom: 1rem;
}
.sv-section-intro {
  color: var(--sv-muted);
  max-width: 720px;
  line-height: 1.75;
}

/* About */
.sv-about-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.sv-about-points li {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  color: #334155;
  line-height: 1.6;
}
.sv-about-points i {
  color: var(--sv-accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.sv-stat-card {
  background: #fff;
  border-radius: var(--sv-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15,23,42,.06);
  height: 100%;
}
.sv-stat-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sv-accent);
  margin-bottom: .25rem;
}
.sv-stat-card p {
  margin: 0;
  font-size: .9rem;
  color: var(--sv-muted);
}

/* Expertise grid */
.sv-exp-card {
  background: #fff;
  border-radius: var(--sv-radius);
  padding: 1.5rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: box-shadow .25s, transform .25s;
}
.sv-exp-card:hover {
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
  transform: translateY(-4px);
}
.sv-exp-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

/* Why choose */
.sv-why-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: #fff;
  border-radius: var(--sv-radius);
  height: 100%;
  box-shadow: 0 4px 16px rgba(15,23,42,.05);
  transition: transform .25s;
}
.sv-why-card:hover { transform: translateY(-4px); }
.sv-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(196,92,38,.12);
  color: var(--sv-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.sv-why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

/* Feature cards */
.sv-feature-card {
  background: #fff;
  border-radius: var(--sv-radius);
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(15,23,42,.06);
  transition: box-shadow .25s, transform .25s;
}
.sv-feature-card:hover {
  box-shadow: 0 12px 36px rgba(15,23,42,.1);
  transform: translateY(-3px);
}
.sv-feature-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sv-accent);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.sv-feature-card h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.sv-feature-card p {
  color: var(--sv-muted);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}

/* Process */
.sv-process-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.sv-process-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--sv-accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

/* Growth */
.sv-growth-card {
  background: linear-gradient(135deg, var(--sv-dark), #1e293b);
  color: #fff;
  border-radius: var(--sv-radius);
  padding: 1.75rem;
  height: 100%;
}
.sv-growth-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.sv-growth-card p {
  opacity: .85;
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}

/* FAQ */
.sv-faq .accordion-button {
  font-weight: 600;
  color: var(--sv-dark);
  padding: 1.1rem 1.25rem;
}
.sv-faq .accordion-button:not(.collapsed) {
  background: rgba(196,92,38,.08);
  color: var(--sv-accent-dark);
  box-shadow: none;
}
.sv-faq .accordion-body {
  color: var(--sv-muted);
  line-height: 1.7;
}

/* Testimonials */
.sv-testimonial {
  background: #fff;
  border-radius: var(--sv-radius);
  padding: 1.75rem;
  height: 100%;
  border-left: 4px solid var(--sv-accent);
  box-shadow: 0 4px 16px rgba(15,23,42,.05);
}
.sv-testimonial blockquote {
  font-size: .95rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 1rem;
}
.sv-testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: .85rem;
  display: block;
}
.sv-testimonial span {
  font-size: .8rem;
  color: var(--sv-muted);
}

/* Related */
.sv-related-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sv-radius);
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow .25s, border-color .25s;
}
.sv-related-card:hover {
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
  border-color: transparent;
}
.sv-related-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.sv-related-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .35rem;
}
.sv-related-card p {
  font-size: .85rem;
  color: var(--sv-muted);
  margin-bottom: .75rem;
}
.sv-link-more {
  color: var(--sv-cta);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}
.sv-link-more:hover { color: #dc2626; }

/* CTA banner */
.sv-cta-banner {
  background: var(--sv-accent);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.sv-cta-banner h2 {
  color: #fff;
  font-weight: 800;
  margin-bottom: .75rem;
}
.sv-cta-banner p {
  opacity: .92;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}
.sv-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.sv-btn-cta-primary {
  background: #fff;
  color: var(--sv-dark);
  border-radius: 50px;
  padding: .7rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: transform .2s;
}
.sv-btn-cta-primary:hover {
  color: var(--sv-dark);
  transform: translateY(-2px);
}
.sv-btn-cta-outline {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  padding: .65rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.sv-btn-cta-outline:hover {
  background: #fff;
  color: var(--sv-accent);
}

/* Footer CTA strip */
.sv-footer-cta {
  background: var(--sv-dark);
  color: #fff;
  padding: 2rem 0;
}
.sv-footer-cta a {
  color: #fff;
  text-decoration: none;
}
.sv-footer-cta .contact-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  padding: .5rem 1rem;
  border-radius: 50px;
  margin: .25rem;
  font-size: .9rem;
  transition: background .2s;
}
.sv-footer-cta .contact-chip:hover {
  background: var(--sv-accent);
}

/* Floating WA */
.sv-float-wa {
  position: fixed;
  bottom: 85px;
  right: 12px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s;
}
.sv-float-wa:hover {
  color: #fff;
  transform: scale(1.08);
}

@media (max-width: 991.98px) {
  .sv-hero { padding-top: 2rem; }
  .sv-lead-card { margin-top: 2rem; }
  .sv-section { padding: 3rem 0; }
}
