/* ============== SERVICE PAGE — additions on top of styles.css ============== */

/* Override global hero animation rule that hides .lang-badge / .hero-ctas
   outside of .hero.in (svc-hero uses its own animation). */
.svc-hero .lang-badge,
.svc-hero .hero-ctas {
  opacity: 1 !important;
  transform: none !important;
}
.svc-hero .lang-badge { margin: 0 0 28px; }
.svc-hero .hero-ctas { flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--cream, #f6f3ec);
  border-bottom: 1px solid rgba(15,15,15,0.06);
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted, #666);
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-bar a {
  color: var(--text-muted, #666);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-bar a:hover { color: var(--dark); }
.breadcrumb-bar .ti { font-size: 14px; opacity: 0.5; }
.breadcrumb-bar span { color: var(--dark); font-weight: 500; }

/* Service hero */
.svc-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(64px, 10vw, 120px);
  min-height: clamp(560px, 80vh, 760px);
  display: flex;
  align-items: center;
}
.svc-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: grayscale(0.2) contrast(1.1);
}
.svc-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.85) 100%);
}
.svc-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: center;
}
.svc-hero-copy h1 {
  color: var(--white);
  margin: 14px 0 18px;
  max-width: 16ch;
}
.svc-hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 0 28px;
}
.svc-hero-sub strong { color: var(--yellow); font-weight: 600; }
.svc-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.svc-hero-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.svc-hero-pills .pill .ti {
  color: var(--yellow);
  font-size: 14px;
}

/* Quick-info card next to hero copy — DARK theme to match site */
.svc-hero-card {
  background: #1a1a1d;
  color: var(--white);
  padding: 28px 28px 24px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  border-top: 4px solid var(--yellow);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.svc-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.svc-card-row:first-child { padding-top: 4px; }
.svc-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.svc-card-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.svc-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 10px 0 18px;
}
.svc-card-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.svc-card-call:hover { background: var(--yellow); color: var(--dark); }
.svc-card-call .ti { font-size: 22px; }

/* 3-CTA stack inside the spec card */
.svc-card-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border: 1.5px solid transparent;
}
.svc-card-cta .ti { font-size: 20px; }
.svc-card-cta.primary {
  background: var(--yellow, #FFCD05);
  color: var(--dark, #111);
}
.svc-card-cta.primary:hover { transform: translateY(-1px); background: #ffc000; }
.svc-card-cta.whatsapp {
  background: #25D366;
  color: #fff;
}
.svc-card-cta.whatsapp:hover { background: #1ebe5b; transform: translateY(-1px); }
.svc-card-cta.phone {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.svc-card-cta.phone:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

/* Coverage tag strip (SEO-friendly list of specific faults we diagnose) — DARK */
.svc-coverage {
  margin-top: 56px;
  padding: 28px 32px;
  background: #1a1a1d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.svc-coverage-label {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}
.svc-coverage-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-coverage-tags li {
  padding: 7px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .svc-coverage { padding: 22px; }
}

@media (max-width: 900px) {
  .svc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero-card { max-width: 420px; }
}

/* CTA meta strip (compact contact under final CTA buttons) */
.cta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark, #111);
  opacity: 0.85;
}
.cta-meta span { display: inline-flex; align-items: center; gap: 6px; }
.cta-meta .ti { font-size: 16px; }
.cta-meta-sep { opacity: 0.4; }
@media (max-width: 640px) {
  .cta-meta-sep { display: none; }
  .cta-meta { gap: 8px 16px; }
}

/* Section lead */
.section-lead {
  max-width: 56ch;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text, #333);
  text-align: center;
}
/* When section-lead sits inside a dark section, lighten it */
.section-dark .section-lead { color: rgba(255,255,255,0.72); }

/* Symptoms grid */
.symptoms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.symptom {
  background: #1a1a1d;
  padding: 28px 26px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.symptom:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
  border-color: var(--yellow);
}
.symptom-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.symptom h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.3;
}
.symptom p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
@media (max-width: 900px) { .symptoms { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 600px) { .symptoms { grid-template-columns: 1fr; } }

/* Process steps — DARK section design with connecting line + icons */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(to right,
    rgba(255,205,5,0.6) 0 8px,
    transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  padding: 0 18px;
  text-align: center;
  z-index: 1;
}
.process-step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 30px;
  height: 30px;
  background: var(--dark, #111);
  border: 2px solid var(--yellow, #FFCD05);
  border-radius: 50%;
  transform: translateX(-50%);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  font-family: 'Anton', var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--dark, #111);
  background: var(--yellow, #FFCD05);
  border-radius: 50%;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--dark, #111);
}
.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,205,5,0.08);
  color: var(--yellow, #FFCD05);
  font-size: 26px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245,243,238,0.78) !important;
  margin: 0;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 48px 16px; }
  .process::before { display: none; }
}
@media (max-width: 520px) {
  .process { grid-template-columns: 1fr; gap: 40px; }
}

/* Yellow price section */
.section-yellow {
  background: var(--yellow);
  color: var(--dark);
  padding: clamp(64px, 9vw, 100px) 0;
}
.price-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.price-block .eyebrow {
  color: var(--dark);
  opacity: 0.7;
}
.price-block h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 14px 0 18px;
  line-height: 1.05;
}
.price-block h2 .under {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.price-block h2 .under::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 14px;
  background: var(--dark);
  z-index: -1;
  opacity: 0.12;
}
.price-block > p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 auto 36px;
  max-width: 56ch;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 36px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto 40px;
}
.price-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.price-item .ti {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  stroke-width: 2.6;
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.btn-dark:hover { background: transparent; color: var(--dark); }
@media (max-width: 600px) {
  .price-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Final CTA */
.cta-final { padding: clamp(72px, 10vw, 120px) 0; }
.cta-final-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-final-block h2 {
  color: var(--white);
  margin: 14px 0 18px;
}
.cta-final-block p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 50ch;
}
.cta-final-foot {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* Active state in nav */
.nav-main a.active {
  color: var(--yellow);
}
