/* ============================================================
   Power Wash 419 — home.css
   Homepage-only styles. Requires global.css.
   ============================================================ */

/* ── Hero ── */
.hero {
  background: var(--charcoal);
  padding: 80px 2rem 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background image — full bleed, covers the hero */
.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 60%;
  display: block;
}

/* Dark overlay — keeps text readable over any photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.68);
  pointer-events: none;
}

/* All hero content sits above the overlay */
.hero-eyebrow,
.hero h1,
.hero p,
.hero-ctas {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--sky-light);
  color: var(--sky-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--sky); }
.hero p {
  font-size: 17px;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Services grid ── */
.services-bg { background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.service-card:hover { border-color: var(--sky); transform: translateY(-3px); }
.service-card.featured { border-color: #bae6fd; }
.service-name { font-weight: 600; font-size: 15px; color: var(--charcoal); }
.service-desc { font-size: 13px; color: var(--slate); line-height: 1.5; }
.service-sub { font-size: 12px; color: var(--sky-dark); font-weight: 500; }
.service-card-link { font-size: 13px; color: var(--sky); font-weight: 500; margin-top: auto; }
.new-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--sky-light);
  color: var(--sky-dark);
  padding: 3px 10px;
  border-radius: 99px;
}

/* ── Why us ── */
.why-bg { background: var(--surface); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

/* ── Service area ── */
.area-section { background: var(--white); }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
