/* ==========================================================================
   STEAMY CONCEPTS — matched to steamyconcepts.com's real design language:
   light/white base, blue rounded hero band with organic green swoosh,
   white service cards with blue circle icons, green check bullets,
   green-ringed circle photos, blue specials band with real mailer coupons,
   navy footer.
   Palette: blue #1e63c4 / navy #123c7c, green #55b948, light #f2f6fb.
   Type: Baloo 2 (friendly rounded display, close to their logo vibe) + Inter.
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Inter:wght@400;600;700;800&display=swap');

:root {
  --sc-blue: #1e63c4;
  --sc-blue-deep: #123c7c;
  --sc-navy: #0e2f63;
  --sc-green: #55b948;
  --sc-green-deep: #35872b;
  --sc-light: #f2f6fb;
  --sc-line: rgba(18, 60, 124, .12);
}

/* ---------- global chrome ---------- */
body { font-family: 'Inter', system-ui, sans-serif; background: #fff; color: #1c2b4a; overflow-x: clip; }
h1, h2, h3, h4 { font-family: 'Baloo 2', 'Inter', sans-serif; font-weight: 800; letter-spacing: -.01em; }
.sl-bleed { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

/* header: review/phone top strip + white bar + bubble logo + green CTA */
.site-header { background: #fff !important; border-bottom: 0; box-shadow: 0 2px 14px rgba(18, 60, 124, .12); padding-top: 0 !important; }
.site-header::before {
  content: "★★★★★  Over 8,800 5-Star Reviews!      TUCSON: (520) 445-4990";
  display: block; width: 100%; text-align: center; white-space: pre-wrap;
  background: linear-gradient(90deg, var(--sc-green-deep) 0%, #1a56ab 45%, var(--sc-blue-deep) 100%);
  color: #fff; font-weight: 700; font-size: .8rem; letter-spacing: .02em; padding: .45rem .75rem;
}
.site-header .container { padding-top: .55rem; padding-bottom: .55rem; }
.site-header a { color: var(--sc-blue-deep) !important; font-weight: 800; text-decoration: none; font-family: 'Baloo 2', sans-serif; }
.site-header a:hover { color: var(--sc-green-deep) !important; }
.site-header .site-title {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.55rem; line-height: 1; text-transform: uppercase;
  color: var(--sc-blue) !important; letter-spacing: .01em;
  text-shadow: 2px 3px 0 rgba(18, 60, 124, .28);
}
.site-header .site-nav a { font-size: .95rem; }
.site-header .sc-nav-cta {
  background: linear-gradient(180deg, #2f8a24, #1d5c15); color: #fff !important; border-radius: 999px;
  padding: .55rem 1.25rem; margin-left: .75rem; box-shadow: 0 6px 16px rgba(47, 138, 36, .4);
  text-transform: uppercase; font-size: .85rem !important; letter-spacing: .03em;
}
.site-header .sc-nav-cta:hover { color: #fff !important; filter: brightness(1.08); }

/* footer: navy */
.site-footer { background: var(--sc-navy) !important; color: rgba(255, 255, 255, .85) !important; border-top: 4px solid var(--sc-green); }
.site-footer a { color: #9fdc8f !important; }

/* ---------- buttons ---------- */
.sc-btn-green {
  background: linear-gradient(180deg, #2f8a24, #27751d 60%, #1d5c15); color: #fff; border: none; font-weight: 800;
  padding: .85rem 1.7rem; border-radius: 999px; display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none; box-shadow: 0 8px 22px rgba(85, 185, 72, .4); transition: transform .18s ease, box-shadow .18s ease;
}
.sc-btn-green:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 12px 30px rgba(85, 185, 72, .55); }
.sc-btn-blue {
  background: linear-gradient(180deg, #2a72d6, var(--sc-blue) 60%, #17549f); color: #fff; border: none; font-weight: 800;
  padding: .85rem 1.7rem; border-radius: 999px; display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none; box-shadow: 0 8px 22px rgba(30, 99, 196, .35); transition: transform .18s ease;
}
.sc-btn-blue:hover { transform: translateY(-2px); color: #fff; }
.sc-btn-outline {
  border: 2px solid var(--sc-blue); color: var(--sc-blue); font-weight: 800; border-radius: 999px;
  padding: .8rem 1.6rem; background: #fff; text-decoration: none; transition: background .18s ease, color .18s ease;
}
.sc-btn-outline:hover { background: var(--sc-blue); color: #fff; }

/* ---------- hero: full-bleed blue band, green swoosh, mascot + van ---------- */
.sc-hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #2a72d6 0%, var(--sc-blue) 45%, var(--sc-blue-deep) 100%);
  padding: clamp(2.6rem, 5vw, 4.5rem) 0 0;
}
.sc-hero .sc-hero-photo { /* van + house backdrop, right side */
  position: absolute; top: 0; right: 0; bottom: 0; width: 56%; pointer-events: none;
}
.sc-hero .sc-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; display: block; }
.sc-hero .sc-hero-photo::after { /* fade left edge into the blue band */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--sc-blue) 0%, rgba(30, 99, 196, .55) 16%, transparent 42%);
}
.sc-hero::before { /* organic green swoosh over the photo seam */
  content: ""; position: absolute; right: 8%; top: -65%; width: 62%; height: 230%;
  background: radial-gradient(closest-side, transparent 60%, var(--sc-green) 61%, var(--sc-green) 69%, transparent 70%);
  transform: rotate(20deg); pointer-events: none; z-index: 1;
}
.sc-hero .sc-hero-inner { position: relative; z-index: 2; padding-bottom: clamp(2.6rem, 5vw, 4.5rem); }
.sc-hero .sc-mascot {
  position: absolute; z-index: 2; bottom: 0; left: 44%; height: 92%; width: auto; pointer-events: none;
  filter: drop-shadow(0 12px 26px rgba(7, 24, 56, .45));
}
.sc-hero h1 { font-size: clamp(1.9rem, 4.6vw, 3.4rem); line-height: 1.08; text-transform: uppercase; }
.sc-hero .sc-sub { color: #fff; max-width: 32rem; }

/* zip finder bar */
.sc-zip {
  display: flex; align-items: center; gap: .5rem; background: #fff; border-radius: .9rem; padding: .45rem;
  max-width: 27rem; box-shadow: 0 12px 30px rgba(7, 24, 56, .3);
}
.sc-zip input {
  border: 0; outline: none; flex: 1 1 auto; min-width: 0; padding: .55rem .35rem .55rem .6rem;
  font-weight: 600; color: #1c2b4a; background: transparent; font-size: .95rem;
}
.sc-zip input::placeholder { color: #6b7897; }
.sc-zip .sc-zip-pin { color: var(--sc-green-deep); flex: none; margin-left: .35rem; }
.sc-zip .sc-btn-green { padding: .6rem 1.1rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .02em; flex: none; }

@media (max-width: 991.98px) {
  .sc-hero .sc-hero-photo { position: relative; width: 100%; height: 300px; margin-top: 1.5rem; }
  .sc-hero .sc-hero-photo::after { background: linear-gradient(180deg, var(--sc-blue) 0%, rgba(30, 99, 196, .35) 18%, transparent 45%); }
  .sc-hero .sc-mascot { left: 4%; height: 82%; }
  .sc-hero .sc-hero-inner { padding-bottom: 0; }
}

/* green check bullets */
.sc-checks { display: flex; flex-wrap: wrap; gap: .45rem 1.4rem; }
.sc-checks span { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .92rem; color: #fff; }
.sc-checks .sc-check { flex: none; width: 18px; height: 18px; border-radius: 50%; background: var(--sc-green); display: inline-grid; place-items: center; }
.sc-checks-dark span { color: #1c2b4a; }

/* stars strip */
.sc-stars { color: #f5b31c; letter-spacing: .12em; }

/* ---------- sections ---------- */
.sc-section { padding: clamp(3rem, 6.5vw, 5.2rem) 0; }
.sc-kicker { color: var(--sc-green-deep); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .76rem; }
.sc-section h2, .sc-h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); text-transform: uppercase; color: var(--sc-blue); }
.sc-band-light { background: var(--sc-light); }
.sc-band-blue { background: linear-gradient(150deg, #1a56ab, var(--sc-blue-deep)); color: #fff; }
.sc-band-blue h2 { color: #fff; }
.sc-band-blue .sc-kicker { color: #8fdc80; }

/* green wave dividers */
.sc-wave-div { display: block; height: clamp(60px, 8vw, 110px); }
.sc-wave-div svg { width: 100%; height: 100%; display: block; }

/* ---------- service cards (white, blue circle icon) ---------- */
.sc-service {
  background: #fff; border: 1px solid var(--sc-line); border-radius: 1rem; padding: 1.35rem 1rem;
  height: 100%; text-align: center; transition: transform .2s ease, box-shadow .2s ease;
}
.sc-service:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(18, 60, 124, .14); }
.sc-service { border: 0; box-shadow: 0 8px 22px rgba(18, 60, 124, .06); }
.sc-service .sc-ico {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin: -2.7rem auto .8rem;
  background: #fff; color: var(--sc-blue);
  border: 2px dashed #b9c7de;
  box-shadow: 0 6px 16px rgba(18, 60, 124, .14);
}
.sc-service .sc-ico svg { filter: drop-shadow(0 1px 0 rgba(85, 185, 72, .35)); }
.sc-service h3 { font-size: 1.02rem; color: var(--sc-blue); margin: 0; font-weight: 800; }
.sc-service p { color: #51608a; font-size: .84rem; margin: .35rem 0 0; }
.sc-service-grid { row-gap: 3rem !important; }

/* ---------- green-ring circle photo/badge ---------- */
.sc-ring {
  border-radius: 50%; border: 8px solid var(--sc-green); overflow: hidden; aspect-ratio: 1;
  box-shadow: 0 18px 40px rgba(18, 60, 124, .18); background: #fff;
}
.sc-ring img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sc-ring-badge { position: relative; }
.sc-ring-badge .sc-cloud {
  position: absolute; top: -.4rem; right: -.4rem; background: var(--sc-blue); color: #fff; font-weight: 800;
  border-radius: 999px; padding: .55rem .95rem; font-size: .8rem; box-shadow: 0 8px 20px rgba(18, 60, 124, .35); z-index: 2;
}

/* ---------- coupon frames (real mailer images) ---------- */
.sc-coupon-frame {
  border: 3px dashed rgba(255, 255, 255, .85); border-radius: 1rem; padding: .55rem; background: rgba(255, 255, 255, .08);
  transition: transform .2s ease;
}
.sc-coupon-frame:hover { transform: translateY(-4px) scale(1.01); }
.sc-coupon-frame img { display: block; width: 100%; height: auto; border-radius: .6rem; }

/* ---------- before/after gallery ---------- */
.sc-ba { border-radius: 1rem; overflow: hidden; border: 4px solid #fff; box-shadow: 0 16px 36px rgba(7, 24, 56, .35); position: relative; }
.sc-ba img { display: block; width: 100%; height: auto; }
.sc-ba .sc-ba-label { position: absolute; top: .6rem; font-family: 'Baloo 2', sans-serif; font-weight: 800; color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.55); letter-spacing: .08em; font-size: 1.05rem; }
.sc-ba .sc-ba-label.before { left: .9rem; }
.sc-ba .sc-ba-label.after { right: .9rem; }

/* ---------- reviews + year badges ---------- */
.sc-review { background: #fff; border: 1px solid var(--sc-line); border-radius: 1rem; padding: 1.5rem; height: 100%; box-shadow: 0 10px 26px rgba(18, 60, 124, .07); }
.sc-review .sc-stars { color: var(--sc-green); font-size: .95rem; }
.sc-review p { color: #414d70; font-size: .93rem; }
.sc-review footer { font-weight: 800; font-size: .88rem; color: var(--sc-blue-deep) !important; background: transparent !important; padding: 0; }
.sc-review footer small { display: block; color: #5b6584; font-weight: 600; }

.sc-years { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; }
.sc-years span {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; color: #4f3a06;
  background: radial-gradient(circle at 35% 30%, #ffefb8, #f2d287); border: 2px solid #cfa544;
  border-radius: 50%; width: 64px; height: 64px; display: grid; place-items: center; text-align: center;
  font-size: .86rem; line-height: 1; box-shadow: 0 6px 14px rgba(124, 92, 20, .25);
}
.sc-years span small { display: block; font-size: .5rem; letter-spacing: .06em; font-weight: 700; }

/* ---------- residential / commercial cards ---------- */
.sc-rescom { background: #fff; border: 1px solid var(--sc-line); border-radius: 1.1rem; overflow: hidden; height: 100%; box-shadow: 0 12px 30px rgba(18, 60, 124, .08); }
.sc-rescom .sc-rescom-photo { position: relative; }
.sc-rescom .sc-rescom-photo img { display: block; width: 100%; height: 230px; object-fit: cover; }
.sc-rescom .sc-rescom-ico {
  width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(180deg, #2a72d6, var(--sc-blue-deep)); color: #fff;
  display: grid; place-items: center; position: absolute; left: 2rem; bottom: -38px; z-index: 2;
  border: 5px solid #fff; box-shadow: 0 10px 24px rgba(18, 60, 124, .25);
}
.sc-rescom h3 { color: var(--sc-blue); font-size: 1.25rem; padding: 3.2rem 1.6rem 0; margin: 0; }
.sc-rescom ul { list-style: none; padding: 1rem 1.6rem 1.6rem; margin: 0; }
.sc-rescom ul li { display: flex; align-items: center; gap: .55rem; padding: .32rem 0; color: #33436e; font-weight: 600; font-size: .93rem; }
.sc-rescom ul li::before { content: "✓"; flex: none; width: 19px; height: 19px; border-radius: 50%; background: var(--sc-green); color: #fff; display: inline-grid; place-items: center; font-size: .68rem; font-weight: 800; }

/* ---------- areas we serve ---------- */
.sc-areas-card { background: #fff; border: 1px solid var(--sc-line); border-radius: 1.1rem; padding: 1.6rem; box-shadow: 0 12px 30px rgba(18, 60, 124, .08); }
.sc-areas-card h3 { color: var(--sc-green-deep); font-size: 1.05rem; }
.sc-areas { display: flex; flex-wrap: wrap; gap: .5rem; }
.sc-areas span { background: var(--sc-light); border: 1px solid var(--sc-line); border-radius: 999px; padding: .45rem 1rem; font-weight: 700; font-size: .86rem; color: #24447e; display: inline-flex; align-items: center; gap: .4rem; }
.sc-areas span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sc-green); }
.sc-citylist { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 1.5rem; }
.sc-citylist li { display: flex; align-items: center; gap: .5rem; padding: .3rem 0; color: #33436e; font-weight: 600; font-size: .93rem; break-inside: avoid; }
.sc-citylist li::before { content: ""; flex: none; width: 10px; height: 10px; border-radius: 50% 50% 50% 0; background: var(--sc-green); transform: rotate(-45deg); }

/* ---------- alternating feature rows (turf / LVT) ---------- */
.sc-feature h3 { color: var(--sc-blue); font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.sc-feature p { color: #51608a; }

/* ---------- price-match band ---------- */
.sc-pricematch { background: linear-gradient(150deg, #1a56ab, var(--sc-navy)); color: #fff; }
.sc-pricematch h2 { color: #fff; }
.sc-pricematch p { color: rgba(255, 255, 255, .85); }

/* ---------- motion ---------- */
.sc-js .sl-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.sc-js .sl-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .sc-js .sl-reveal { opacity: 1; transform: none; transition: none; }
  .sc-service, .sc-btn-green, .sc-btn-blue, .sc-btn-outline, .sc-coupon-frame { transition: none; }
  .sc-service:hover, .sc-btn-green:hover, .sc-btn-blue:hover, .sc-coupon-frame:hover { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 991.98px) {
  .sc-hero::before { right: -60%; }
  .sc-hero .sc-hero-art { margin-top: 2rem; }
}
