/* ── HERO (homepage full-width) ── */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,8,8,.75) 0%, rgba(20,8,8,.4) 60%, rgba(20,8,8,.08) 100%);
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}
.hero-inner {
  max-width: 600px;
  padding: 70px 0;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* Heading */
.hero h1 {
  color: #fff;
  margin-bottom: 14px;
}
.hero h1 span { color: var(--red); }

/* Subheading */
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* CTA row */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-cta-primary {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(224,2,38,.4);
  font-family: var(--font-sans);
}
.hero-cta-primary:hover { background: var(--red-dk); color: #fff; }
.hero-cta-secondary {
  background: rgba(255,255,255,.15);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
  font-family: var(--font-sans);
}
.hero-cta-secondary:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Google rating badge */
.hero-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  padding: 10px 16px;
  backdrop-filter: blur(4px);
}
.hero-google-stars {
  color: var(--star);
  font-size: 17px;
  letter-spacing: -1px;
}
.hero-google-text {
  font-size: 13px;
  color: rgba(255,255,255,.9);
  line-height: 1.35;
}
.hero-google-text strong {
  color: #fff;
  display: block;
}

/* ── SERVICE HERO (interior service pages) ── */
.page-hero {
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1420 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--banner-bg-url, none) center / cover no-repeat;
  opacity: .07;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  font-family: var(--font-sans);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  max-width: 650px;
}
.page-action-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  overflow: hidden;
}
.pac-header {
  background: var(--red);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pac-header-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}
.pac-header span {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.pac-body { padding: 22px; }
.pac-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.pac-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.pac-trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e8f7ee;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pac-trust-check svg {
  width: 11px;
  height: 11px;
  stroke: #16a34a;
}
.pac-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.5px;
  margin-bottom: 16px;
  line-height: 1;
}
.pac-phone svg {
  color: var(--red);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.pac-phone:hover { color: var(--red); }
.pac-btn-checkin,
.pac-btn-dir {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
}
.pac-btn-checkin {
  background: var(--red);
  font-size: 15px;
  padding: 14px;
  margin-bottom: 10px;
}
.pac-btn-checkin:hover { background: var(--red-dk); color: #fff; }
.pac-btn-dir {
  background: var(--dark);
  font-size: 14px;
  padding: 12px;
  margin-bottom: 18px;
}
.pac-btn-dir:hover { background: #1a1d22; color: #fff; }
.pac-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}
.pac-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}
.pac-info-row:last-child { margin-bottom: 0; }
.pac-info-row svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--red);
}
.pac-info-row strong {
  display: block;
  font-size: 11px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 2px;
  font-weight: 700;
}
