/* ============================================================
   Power Wash 419 — service.css
   Shared styles for all 6 service pages. Requires global.css.
   ============================================================ */

/* ── Hero ── */
.hero {
  background: var(--charcoal);
  padding: 52px 2rem 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(14,165,233,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--sky-light); color: var(--sky-dark);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 99px; margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05; color: var(--white); margin-bottom: 16px;
}
.hero h1 span { color: var(--sky); }
.hero p { font-size: 16px; color: var(--muted); max-width: 500px; margin: 0 auto 30px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── Intro two-column ── */
.intro-section { background: var(--surface); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; max-width: 880px; margin: 0 auto; align-items: start;
}
@media (max-width: 640px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-copy p { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }
.intro-copy p:last-child { margin-bottom: 0; }

/* ── Info box (callout) ── */
.info-box {
  background: var(--sky-light); border: 1.5px solid #bae6fd;
  border-radius: var(--radius); padding: 18px 20px; margin-top: 20px;
}
.info-box h4 {
  font-size: 14px; font-weight: 600; color: var(--sky-dark);
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.info-box h4 svg { width: 16px; height: 16px; }
.info-box p { font-size: 13px; color: var(--sky-dark); line-height: 1.6; }

/* ── Detail cards (surface types, space types, etc.) ── */
.detail-cards { display: flex; flex-direction: column; gap: 10px; }
.detail-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.detail-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--sky-light); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.detail-icon svg { width: 18px; height: 18px; color: var(--sky-dark); }
.detail-name { font-weight: 600; font-size: 14px; color: var(--charcoal); margin-bottom: 3px; }
.detail-desc { font-size: 12px; color: var(--slate); line-height: 1.5; }
.detail-badge {
  font-size: 10px; font-weight: 600; padding: 2px 8px;
  border-radius: 99px; margin-left: 6px; vertical-align: middle;
}
.badge-safe     { background: var(--lime-light); color: var(--lime-dark); }
.badge-caution  { background: #fef9c3; color: #854d0e; }
.badge-new      { background: var(--sky-light); color: var(--sky-dark); }

/* ── Process steps ── */
.process-section { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 0; max-width: 880px; margin: 0 auto;
}
.process-step { padding: 24px 20px; }
.step-num { font-family: var(--font-head); font-size: 42px; color: var(--sky-light); line-height: 1; margin-bottom: 8px; }
.step-title { font-weight: 600; font-size: 15px; color: var(--charcoal); margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* ── Issues / stains / problems grid ── */
.issues-section { background: var(--surface); }
.issues-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px; max-width: 800px; margin: 0 auto;
}
.issue-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; padding: 16px 14px; }
.issue-icon { width: 40px; height: 40px; border-radius: 50%; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.issue-name { font-weight: 600; font-size: 13px; color: var(--charcoal); margin-bottom: 4px; }
.issue-note { font-size: 11px; color: var(--slate); line-height: 1.5; }

/* ── Related services ── */
.related-section { background: var(--surface); }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px; max-width: 760px; margin: 0 auto;
}

/* ── Service page form ── */
.form-section { background: var(--surface); }
.form-inner {
  max-width: 760px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start;
}
@media (max-width: 600px) { .form-inner { grid-template-columns: 1fr; } }
.form-pitch .section-title { font-size: clamp(24px, 3.5vw, 36px); }

/* ── Hero background image ── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  pointer-events: none;
}
.hero-eyebrow,
.hero h1,
.hero p,
.hero-ctas,
.breadcrumb { position: relative; z-index: 1; }
