/*
Theme Name: R2R Clean
Theme URI: https://{{DOMAIN}}
Author: {{BUSINESS_NAME}}
Description: Minimal classic theme for rank-to-rent local SEO sites. Header phone CTA, simple navigation, NAP footer, mobile sticky call bar.
Version: 1.3.0
Requires at least: 6.0
Requires PHP: 8.0
License: All rights reserved
Text Domain: r2r-clean
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1a6bb5; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ----- TOP UTILITY BAR ----- */
.r2r-utility {
  background: #1a3a5c;
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 0;
}
.r2r-utility-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.r2r-utility a { color: #fff; }
.r2r-utility .r2r-hours { opacity: 0.85; }
.r2r-utility .r2r-cta-phone {
  background: #e8a020;
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.r2r-utility .r2r-cta-phone:hover { background: #c98a10; text-decoration: none; }

/* ----- HEADER ----- */
.r2r-header {
  background: #fff;
  border-bottom: 1px solid #e0e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.r2r-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.r2r-brand a {
  color: #1a3a5c;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.r2r-brand a:hover { text-decoration: none; }
.r2r-brand .r2r-tagline {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #5a6f82;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.r2r-nav { display: flex; align-items: center; gap: 4px; }
.r2r-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.r2r-nav li { position: relative; }
.r2r-nav a {
  color: #1a3a5c;
  font-weight: 600;
  padding: 10px 14px;
  display: block;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.r2r-nav a:hover { background: #f0f4f8; text-decoration: none; }
.r2r-nav .r2r-sub {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  padding: 6px;
  display: none;
  flex-direction: column;
  z-index: 50;
}
.r2r-nav li:hover > .r2r-sub,
.r2r-nav li:focus-within > .r2r-sub { display: flex; }
.r2r-nav .r2r-sub a { padding: 8px 12px; font-size: 0.92rem; }

.r2r-header-cta {
  background: #e8a020;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.r2r-header-cta:hover { background: #c98a10; text-decoration: none; }

.r2r-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid #1a3a5c;
  color: #1a3a5c;
  padding: 8px 12px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .r2r-utility-inner { font-size: 0.82rem; }
  .r2r-utility .r2r-hours { display: none; }
  .r2r-header-inner { flex-wrap: wrap; }
  .r2r-nav { width: 100%; order: 3; display: none; }
  .r2r-nav.is-open { display: block; }
  .r2r-nav ul { flex-direction: column; gap: 2px; width: 100%; }
  .r2r-nav .r2r-sub { position: static; box-shadow: none; border: none; padding-left: 20px; }
  .r2r-nav li:hover > .r2r-sub { display: none; }
  .r2r-nav li.is-open > .r2r-sub { display: flex; }
  .r2r-menu-toggle { display: inline-flex; }
  .r2r-header-cta { font-size: 0.85rem; padding: 8px 14px; }
}

/* ----- MAIN ----- */
.r2r-main { background: #fff; }

/* ----- CONTENT (the .rtr-* classes from generated pages) ----- */
.entry-content > .rtr-root { margin-top: 0; }
.entry-title { display: none; }

/* ----- FOOTER ----- */
.r2r-footer {
  background: #0f2237;
  color: #cdd8e3;
  padding: 60px 0 24px;
  margin-top: 80px;
}
.r2r-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.r2r-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.r2r-footer p, .r2r-footer li { font-size: 0.93rem; line-height: 1.7; color: #b8c7d6; }
.r2r-footer a { color: #7ab3d9; }
.r2r-footer a:hover { color: #fff; }
.r2r-footer ul { list-style: none; padding: 0; margin: 0; }
.r2r-footer ul li { margin-bottom: 6px; }
.r2r-footer-nap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.r2r-footer-nap .r2r-nap-line { display: flex; gap: 8px; align-items: flex-start; }
.r2r-footer-nap .r2r-nap-line .r2r-icon { width: 16px; flex-shrink: 0; opacity: 0.7; }
.r2r-footer-phone {
  display: inline-block;
  background: #e8a020;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  margin-top: 8px;
  font-size: 1rem;
}
.r2r-footer-phone:hover { background: #c98a10; text-decoration: none; }
.r2r-footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 24px 20px 0;
  border-top: 1px solid #1f3a55;
  text-align: center;
  font-size: 0.85rem;
  color: #8da3b9;
}
.r2r-footer-bottom a { margin: 0 8px; }

/* ----- MOBILE STICKY CALL BAR ----- */
@media (max-width: 700px) {
  body { padding-bottom: 60px; }
  .r2r-mobile-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e8a020;
    color: #fff;
    text-align: center;
    padding: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    z-index: 200;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  }
  .r2r-mobile-call:hover { color: #fff; text-decoration: none; }
}
@media (min-width: 701px) { .r2r-mobile-call { display: none; } }

/* ----- POST CONTENT TWEAKS ----- */
.r2r-main .rtr-hero { margin: 0; }
.r2r-main .rtr-section:first-child { padding-top: 60px; }
.r2r-main p { margin-bottom: 16px; }
.r2r-main .entry-content { max-width: 100%; padding: 0; }
.r2r-main .entry-content > .rtr-root { width: 100%; }
/* ===== R2R Content layout (.rtr-* classes) — used by service/suburb/blog/home pages =====
   This block was previously inlined per page by the content generator. Moved here so
   every page styled the same regardless of what the generator forgot to inline.
   ========================================================================= */
*,*::before,*::after{box-sizing:border-box}
.rtr-root,.rtr-main{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;color:#1a1a1a;line-height:1.6}
.rtr-root img,.rtr-main img{max-width:100%;height:auto;display:block}
.rtr-root a,.rtr-main a{color:#1a6bb5;text-decoration:none}
.rtr-root a:hover,.rtr-main a:hover{text-decoration:underline}

/* Hero --------------------------------------------------------------- */
/* Works with TWO markup variants the content generator may emit:
   (1) Wrapped:  <section class="rtr-hero"><img class="rtr-hero-img"><div class="rtr-hero-content"><h1>...</h1>...</div></section>
   (2) Flat:     <section class="rtr-hero"><h1>...</h1><p class="rtr-hero-sub">...</p><p><a class="rtr-btn-primary">...</a></p></section>
   Default to a flex column so the flat variant stacks vertically; the wrapped variant ignores the column direction (one child). */
.rtr-hero{position:relative;min-height:520px;display:flex;flex-direction:column;justify-content:center;align-items:center;background:#1a3a5c;overflow:hidden}
.rtr-hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.62;z-index:0}
.rtr-hero-overlay{position:absolute;inset:0;background:linear-gradient(120deg,rgba(26,58,92,.62),rgba(26,58,92,.32));z-index:1}
.rtr-hero-content{position:relative;z-index:2;max-width:880px;padding:80px 24px;color:#fff;margin:0 auto;width:100%}
.rtr-hero h1{font-size:clamp(2rem,5vw,3.4rem);font-weight:800;line-height:1.15;margin-bottom:18px;color:#fff}
.rtr-hero-sub,.rtr-hero p{font-size:1.2rem;margin-bottom:28px;opacity:.95;max-width:680px;color:#fff}
/* Fallback layout for flat (unwrapped) direct children */
.rtr-hero > h1,
.rtr-hero > p,
.rtr-hero > .rtr-hero-sub{position:relative;z-index:2;max-width:880px;width:100%;padding-left:24px;padding-right:24px;margin-left:auto;margin-right:auto}
.rtr-hero > h1:first-child{padding-top:80px}
.rtr-hero > p:last-child{padding-bottom:80px;margin-bottom:0}

/* Buttons / CTAs ------------------------------------------------------ */
.rtr-btn-primary,.rtr-cta-button,.rtr-cta-hero{display:inline-block;background:#e8a020;color:#fff;padding:16px 32px;border-radius:6px;font-size:1.1rem;font-weight:700;letter-spacing:.02em;box-shadow:0 4px 12px rgba(0,0,0,.15);transition:background .15s ease,transform .1s ease}
.rtr-btn-primary:hover,.rtr-cta-button:hover,.rtr-cta-hero:hover{background:#c98a10;text-decoration:none;color:#fff;transform:translateY(-1px)}
/* When a tel: button is dropped inline mid-sentence (NOT the only child of its <p>),
   strip the pill chrome so it reads as a plain inline hyperlink. Standalone CTA
   buttons (only child of their <p>) keep the gold pill. */
p .rtr-btn-primary:not(:only-child){display:inline;background:transparent;color:#1a6bb5;padding:0;font-size:inherit;font-weight:700;box-shadow:none;border-radius:0;letter-spacing:normal}
p .rtr-btn-primary:not(:only-child):hover{background:transparent;color:#155a99;text-decoration:underline;transform:none}

/* Trust bar (5-item) -------------------------------------------------- */
.rtr-trust,.rtr-trust-bar{background:#f0f4f8;padding:22px 24px;text-align:center;border-bottom:1px solid #dde6ef}
.rtr-trust ul,.rtr-trust-bar ul{list-style:none;display:flex;flex-wrap:wrap;justify-content:center;gap:28px;padding:0;margin:0;max-width:1100px;margin-left:auto;margin-right:auto}
.rtr-trust li,.rtr-trust-bar li{font-weight:600;font-size:.95rem;color:#1a3a5c}
.rtr-trust li::before,.rtr-trust-bar li::before{content:"\2713";color:#1a3a5c;font-weight:700;margin-right:8px}

/* Lede paragraph ------------------------------------------------------ */
.rtr-lede{max-width:1100px;margin:0 auto;padding:48px 24px 8px;font-size:1.15rem;line-height:1.65;color:#2c3e50}

/* Sections ------------------------------------------------------------ */
.rtr-section{max-width:1100px;margin:0 auto;padding:60px 24px}
.rtr-section h2{font-size:clamp(1.5rem,3vw,2.2rem);font-weight:700;color:#1a3a5c;margin-bottom:24px;margin-top:8px;line-height:1.2}
.rtr-section p{margin-bottom:16px;font-size:1.05rem}
.rtr-section h3{font-size:1.2rem;color:#1a3a5c;margin:28px 0 10px}
.rtr-section ul,.rtr-section ol{margin:0 0 18px 22px;padding:0}
.rtr-section li{margin-bottom:10px}

/* Card grid (homepage services, directory shells) --------------------- */
.rtr-grid,.rtr-cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px;margin-top:32px}
.rtr-card{border:1px solid #dde6ef;border-radius:10px;padding:28px 24px;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.04);transition:box-shadow .15s ease,transform .1s ease}
.rtr-card:hover{box-shadow:0 6px 20px rgba(0,0,0,.08);transform:translateY(-2px)}
.rtr-card h3{font-size:1.2rem;color:#1a3a5c;margin-bottom:12px;margin-top:0}
.rtr-card p{font-size:.98rem;margin-bottom:14px;color:#3c4e60}
.rtr-card a,.rtr-card-link{font-weight:600;color:#1a6bb5}

/* 3-column tile grid (common scenarios) ------------------------------- */
.rtr-grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;margin:28px 0}
.rtr-tile{background:#f8fafc;border-left:4px solid #e8a020;border-radius:6px;padding:24px 22px}
.rtr-tile h3{font-size:1.1rem;color:#1a3a5c;margin-top:0;margin-bottom:10px}
.rtr-tile p{font-size:.98rem;margin:0;color:#3c4e60}

/* Numbered process steps --------------------------------------------- */
.rtr-steps{display:grid;grid-template-columns:1fr;gap:18px;margin:32px 0;counter-reset:rtrstep}
.rtr-step{display:grid;grid-template-columns:64px 1fr;gap:20px;align-items:flex-start;background:#fff;border:1px solid #dde6ef;border-radius:8px;padding:22px 24px;box-shadow:0 1px 3px rgba(0,0,0,.04)}
.rtr-step-num{width:48px;height:48px;border-radius:50%;background:#1a3a5c;color:#fff;font-weight:800;font-size:1.4rem;display:flex;align-items:center;justify-content:center;flex:0 0 48px}
.rtr-step-body h3{font-size:1.15rem;color:#1a3a5c;margin-top:0;margin-bottom:8px}
.rtr-step-body p{font-size:1rem;margin:0;color:#3c4e60}

/* Spec table ---------------------------------------------------------- */
.rtr-spec-table{width:100%;border-collapse:collapse;margin:28px 0;background:#fff;border:1px solid #dde6ef;border-radius:8px;overflow:hidden}
.rtr-spec-table th,.rtr-spec-table td{text-align:left;padding:14px 18px;border-bottom:1px solid #e0e8f0;vertical-align:top}
.rtr-spec-table tr:last-child th,.rtr-spec-table tr:last-child td{border-bottom:none}
.rtr-spec-table th{background:#f0f4f8;color:#1a3a5c;font-weight:700;width:35%}

/* FAQ ----------------------------------------------------------------- */
.rtr-faq{background:#f8fafc;padding:60px 24px}
.rtr-faq-inner{max-width:880px;margin:0 auto}
.rtr-faq h2{font-size:1.9rem;color:#1a3a5c;margin-bottom:32px}
.rtr-faq-item{border-bottom:1px solid #dde6ef;padding:22px 0}
.rtr-faq-item:last-child{border-bottom:none}
.rtr-faq-item h3{font-size:1.08rem;font-weight:700;color:#1a1a1a;margin-bottom:10px;margin-top:0}
.rtr-faq-item p{font-size:1rem;margin:0;color:#3c4e60}

/* Service-area pill list (homepage) ---------------------------------- */
.rtr-areas,.rtr-areas-list{background:#fff;padding:48px 24px}
.rtr-areas-inner{max-width:1100px;margin:0 auto}
.rtr-areas ul,.rtr-areas-list ul{list-style:none;display:flex;flex-wrap:wrap;gap:12px;margin-top:20px;padding:0}
.rtr-areas li a,.rtr-areas-list li a{background:#e8f0fa;color:#1a3a5c;padding:9px 16px;border-radius:24px;font-weight:600;font-size:.95rem;display:inline-block;transition:background .12s ease,color .12s ease}
.rtr-areas li a:hover,.rtr-areas-list li a:hover{background:#1a3a5c;color:#fff;text-decoration:none}

/* Testimonials -------------------------------------------------------- */
.rtr-testimonials{background:#f0f4f8;padding:60px 24px}
.rtr-testimonials-inner{max-width:1100px;margin:0 auto}
.rtr-testimonials h2{font-size:1.8rem;color:#1a3a5c;margin-bottom:32px;text-align:center}
.rtr-testimonial-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.rtr-testimonial{background:#fff;border-radius:8px;padding:28px 24px;box-shadow:0 2px 8px rgba(0,0,0,.06)}
.rtr-testimonial .rtr-stars{color:#e8a020;font-size:1.1rem;margin-bottom:12px}
.rtr-testimonial p{font-size:1rem;line-height:1.55;margin-bottom:14px}
.rtr-testimonial .rtr-author{font-size:.9rem;color:#5a6f82;font-weight:600}

/* CTA band ----------------------------------------------------------- */
.rtr-cta-band{background:#1a3a5c;color:#fff;padding:60px 24px;text-align:center}
.rtr-cta-band h2{font-size:2rem;margin-bottom:16px;color:#fff;margin-top:0}
.rtr-cta-band p{font-size:1.1rem;margin-bottom:28px;opacity:.95}
.rtr-cta-phone{display:inline-block;background:#e8a020;color:#fff;padding:18px 40px;border-radius:6px;font-size:1.3rem;font-weight:800;box-shadow:0 4px 12px rgba(0,0,0,.2)}
.rtr-cta-phone:hover{color:#fff;text-decoration:none;background:#c98a10}

/* Mobile -------------------------------------------------------------- */
@media (max-width:700px){
  .rtr-hero-content{padding:48px 18px}
  .rtr-btn-primary,.rtr-cta-phone,.rtr-cta-button{width:100%;text-align:center;display:block}
  .rtr-trust ul,.rtr-trust-bar ul{flex-direction:column;align-items:center;gap:10px}
  .rtr-section{padding:48px 18px}
  .rtr-step{grid-template-columns:52px 1fr;gap:14px;padding:18px}
  .rtr-step-num{width:40px;height:40px;font-size:1.2rem}
}

/* ===== Polish pass — sticky desktop header, empty-testimonials hidden, comparison table, embedded form ===== */

/* Sticky header on desktop scroll. Mobile keeps the bottom call bar. */
@media (min-width:701px){
  .r2r-header{position:sticky;top:0;z-index:90;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.05)}
}

/* Hide testimonials section if it has no children (placeholder is empty) */
.rtr-testimonials:empty{display:none}
.rtr-testimonials-inner:empty{display:none}

/* Sub-headed trust bar — replace .rtr-trust-bar with a 5-pill row */
.rtr-trust-strip{background:#1a3a5c;color:#fff;padding:18px 24px;text-align:center}
.rtr-trust-strip-inner{max-width:1100px;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:center;gap:32px;align-items:center}
.rtr-trust-strip-item{display:flex;align-items:center;gap:8px;font-weight:600;font-size:.95rem}
.rtr-trust-strip-item::before{content:"";display:inline-block;width:18px;height:18px;border-radius:50%;background:#e8a020;flex:0 0 18px}
@media (max-width:700px){
  .rtr-trust-strip-inner{flex-direction:column;gap:12px}
}

/* Comparison table — what's included vs not included */
.rtr-compare{display:grid;grid-template-columns:1fr 1fr;gap:0;margin:32px 0;border:1px solid #dde6ef;border-radius:8px;overflow:hidden}
.rtr-compare > div{padding:24px 22px}
.rtr-compare h3{font-size:1.1rem;font-weight:700;margin:0 0 14px;color:#1a3a5c}
.rtr-compare .rtr-compare-yes{background:#f4faf6;border-right:1px solid #dde6ef}
.rtr-compare .rtr-compare-yes h3{color:#1f7a3a}
.rtr-compare .rtr-compare-yes ul li::before{content:"\2713";color:#1f7a3a;font-weight:700;margin-right:8px}
.rtr-compare .rtr-compare-no{background:#fef7f6}
.rtr-compare .rtr-compare-no h3{color:#a23b2c}
.rtr-compare .rtr-compare-no ul li::before{content:"\2717";color:#a23b2c;font-weight:700;margin-right:8px}
.rtr-compare ul{list-style:none;margin:0;padding:0}
.rtr-compare li{margin:0 0 10px;padding:0;font-size:.98rem;color:#3c4e60}
@media (max-width:700px){
  .rtr-compare{grid-template-columns:1fr}
  .rtr-compare .rtr-compare-yes{border-right:none;border-bottom:1px solid #dde6ef}
}

/* Embedded form section (service / suburb pages) */
.rtr-form-embed{background:#f0f4f8;border:1px solid #dde6ef;border-radius:10px;padding:32px 28px;margin:40px 0}
.rtr-form-embed h2{font-size:1.4rem;color:#1a3a5c;margin:0 0 8px;line-height:1.25}
.rtr-form-embed p{font-size:1rem;color:#3c4e60;margin:0 0 18px}
.rtr-form-embed .wpforms-container{max-width:640px}

/* Local-area map (suburb / contact pages) */
.rtr-map-embed{margin:32px 0;border:1px solid #dde6ef;border-radius:10px;overflow:hidden;background:#f8fafc}
.rtr-map-embed iframe{display:block;width:100%;height:340px;border:0}
.rtr-map-caption{padding:14px 20px;font-size:.92rem;color:#5a6f82}

/* ============================================================
   SACRAMENTO EPOXY FLOOR PROS — HOMEPAGE REDESIGN
   Palette: deep forest green + warm orange (distinct from
   competitor navy/gold; coordinated with site favicon).
   ============================================================ */

:root {
  --sac-green:       #0a4d3a;
  --sac-green-dark:  #073525;
  --sac-green-light: #1a6650;
  --sac-orange:      #f4a261;
  --sac-orange-dark: #e07a3d;
  --sac-cream:       #fdf8f0;
  --sac-mist:        #f0f5f2;
  --sac-ink:         #1a2624;
  --sac-ink-muted:   #5a6e6a;
  --sac-border:      #e3ebe7;
}

/* ---------- HERO (homepage only) ---------- */
.sac-hero {
  min-height: 640px;
  background: linear-gradient(135deg, #073525 0%, #0a4d3a 55%, #1a6650 100%);
}
.sac-hero .rtr-hero-img {
  opacity: 0.32;
  filter: saturate(1.1) contrast(1.05);
}
.sac-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(244,162,97,0.18), transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(7,53,37,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.sac-hero .sac-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  padding: 96px 28px;
  margin: 0 auto;
}

.sac-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}
.sac-hero-left h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -0.01em;
}
.sac-hero-left .rtr-hero-sub {
  font-size: 1.18rem;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.92);
  max-width: 580px;
}
.sac-hero-eyebrow {
  display: inline-block;
  background: rgba(244,162,97,0.16);
  color: var(--sac-orange);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(244,162,97,0.5);
  margin-bottom: 22px;
}
.sac-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
}
.sac-hero .rtr-btn-primary {
  background: var(--sac-orange);
  font-size: 1.08rem;
  padding: 16px 32px;
  box-shadow: 0 8px 24px rgba(244,162,97,0.35);
}
.sac-hero .rtr-btn-primary:hover {
  background: var(--sac-orange-dark);
  transform: translateY(-2px);
}
.sac-btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.45);
  color: #fff;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 6px;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}
.sac-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}

/* Hero right offer card */
.sac-offer-card {
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.30);
  color: var(--sac-ink);
  border-top: 4px solid var(--sac-orange);
}
.sac-offer-card .sac-offer-tag {
  display: inline-block;
  background: var(--sac-orange);
  color: #fff;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sac-offer-card h3 {
  color: var(--sac-green);
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  font-weight: 800;
}
.sac-offer-card p {
  color: var(--sac-ink-muted);
  font-size: 0.98rem;
  margin: 0 0 16px 0;
  line-height: 1.55;
}
.sac-offer-card .sac-service-link {
  display: inline-block;
  color: var(--sac-orange-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
}

/* ---------- TRUST BAR (subtle override on home) ---------- */
body.home .rtr-trust-bar {
  background: var(--sac-cream);
  border-bottom: 1px solid #e8dec9;
}
body.home .rtr-trust-bar span {
  color: var(--sac-green);
}

/* ---------- METRICS STRIP ---------- */
.sac-metrics {
  background: var(--sac-green);
  background-image:
    linear-gradient(135deg, var(--sac-green-dark) 0%, var(--sac-green) 60%, var(--sac-green-light) 100%);
  padding: 64px 24px;
  color: #fff;
}
.sac-metrics-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.sac-metric {
  padding: 0 12px;
  position: relative;
}
.sac-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.18);
}
.sac-metric-num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--sac-orange);
  line-height: 1;
  margin-bottom: 10px;
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
}
.sac-metric-label {
  font-size: 0.92rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.92;
  font-weight: 600;
}

/* ---------- SHARED HEADING TREATMENT ---------- */
.sac-eyebrow {
  display: inline-block;
  color: var(--sac-orange-dark);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sac-section-title {
  font-size: clamp(1.8rem, 3.8vw, 2.7rem) !important;
  color: var(--sac-green) !important;
  font-weight: 800 !important;
  margin-bottom: 18px !important;
  letter-spacing: -0.015em;
  line-height: 1.18 !important;
}
.sac-section-lede {
  font-size: 1.12rem !important;
  color: var(--sac-ink-muted) !important;
  max-width: 720px;
  margin-bottom: 36px !important;
  line-height: 1.6;
}
.sac-centered { text-align: center; display: block; }
.sac-process .sac-section-lede { margin-left: auto; margin-right: auto; }

/* ---------- INTRO SECTION ---------- */
.sac-intro { padding-top: 80px !important; padding-bottom: 80px !important; }

/* ---------- SERVICES GRID WITH ICONS ---------- */
.sac-services {
  background: var(--sac-mist);
  padding: 80px 24px;
}
.sac-services-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sac-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.sac-service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--sac-border);
  transition: all 0.22s ease;
  position: relative;
}
.sac-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(10,77,58,0.14);
  border-color: var(--sac-green);
}
.sac-service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--sac-green) 0%, var(--sac-green-light) 100%);
  color: var(--sac-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(10,77,58,0.25);
}
.sac-service-card h3 {
  margin: 0 0 12px 0 !important;
  font-size: 1.28rem !important;
  font-weight: 800 !important;
}
.sac-service-card h3 a {
  color: var(--sac-green) !important;
  text-decoration: none;
}
.sac-service-card h3 a:hover { color: var(--sac-orange-dark) !important; }
.sac-service-card p {
  color: var(--sac-ink-muted);
  font-size: 0.98rem;
  margin-bottom: 18px;
  line-height: 1.55;
}
.sac-service-link {
  display: inline-block;
  color: var(--sac-orange-dark);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease;
}
.sac-service-link:hover {
  color: var(--sac-orange-dark);
  text-decoration: none;
  transform: translateX(4px);
}

/* ---------- WHY-US SECTION ---------- */
.sac-why {
  padding: 80px 24px;
  background: #fff;
}
.sac-why-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sac-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.sac-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sac-why-check {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--sac-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(244,162,97,0.35);
}
.sac-why-text h4 {
  color: var(--sac-green);
  font-size: 1.1rem;
  margin: 0 0 6px 0;
  font-weight: 800;
}
.sac-why-text p {
  color: var(--sac-ink-muted);
  font-size: 0.96rem;
  margin: 0;
  line-height: 1.55;
}

/* ---------- PROCESS STEPS ---------- */
.sac-process {
  padding: 80px 24px;
  background: var(--sac-cream);
}
.sac-process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sac-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 44px;
  position: relative;
}
.sac-step {
  text-align: center;
  padding: 12px;
  position: relative;
}
.sac-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--sac-orange) 0%, var(--sac-orange-dark) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.8rem;
  border-radius: 50%;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(244,162,97,0.4);
  position: relative;
  z-index: 1;
}
.sac-step h4 {
  color: var(--sac-green);
  font-size: 1.18rem;
  margin: 0 0 10px 0;
  font-weight: 800;
}
.sac-step p {
  color: var(--sac-ink-muted);
  font-size: 0.96rem;
  margin: 0;
  line-height: 1.55;
}

/* ---------- GALLERY / RECENT WORK ---------- */
.sac-gallery {
  padding: 80px 24px;
  background: #fff;
}
.sac-gallery-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sac-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.sac-gallery-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.07);
  transition: all 0.22s ease;
  border: 1px solid var(--sac-border);
}
.sac-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(10,77,58,0.18);
}
.sac-gallery-image {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.18);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  font-family: Georgia, serif;
  overflow: hidden;
}
.sac-gallery-image span {
  position: relative;
  z-index: 1;
}
.sac-gallery-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 14px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 9px);
}
.sac-gallery-flake      { background: linear-gradient(135deg, var(--sac-orange-dark) 0%, var(--sac-orange) 100%); }
.sac-gallery-metallic   { background: linear-gradient(135deg, #495a6b 0%, #7a8a99 50%, #4a5a6a 100%); }
.sac-gallery-commercial { background: linear-gradient(135deg, #2a3d4e 0%, #3d5263 100%); }
.sac-gallery-basement   { background: linear-gradient(135deg, var(--sac-green-dark) 0%, var(--sac-green-light) 100%); }
.sac-gallery-meta {
  padding: 18px 22px 22px;
}
.sac-gallery-tag {
  display: inline-block;
  background: rgba(10,77,58,0.08);
  color: var(--sac-green);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 800;
}
.sac-gallery-meta h4 {
  font-size: 1.05rem;
  color: var(--sac-ink);
  margin: 0 0 6px 0;
  font-weight: 700;
}
.sac-gallery-meta p {
  font-size: 0.9rem;
  color: var(--sac-ink-muted);
  margin: 0;
}

/* ---------- SERVICE AREAS GRID ---------- */
.sac-areas {
  padding: 80px 24px;
  background: var(--sac-mist);
}
.sac-areas-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sac-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.sac-area-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid var(--sac-orange);
  color: var(--sac-green);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sac-area-link strong { color: var(--sac-green); font-weight: 800; }
.sac-area-link span {
  font-size: 0.85rem;
  color: var(--sac-ink-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.sac-area-link:hover {
  background: var(--sac-green);
  color: #fff;
  text-decoration: none;
  border-left-color: var(--sac-orange);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(10,77,58,0.22);
}
.sac-area-link:hover strong { color: #fff; }
.sac-area-link:hover span { color: rgba(255,255,255,0.85); }

/* ---------- TESTIMONIALS ---------- */
.sac-testimonials {
  padding: 80px 24px;
  background: #fff;
}
.sac-testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sac-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.sac-test-card {
  background: var(--sac-mist);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--sac-border);
  position: relative;
  overflow: hidden;
}
.sac-test-card::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  right: 14px;
  font-size: 6rem;
  color: var(--sac-orange);
  opacity: 0.16;
  font-family: Georgia, serif;
  line-height: 1;
}
.sac-test-stars {
  color: var(--sac-orange);
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.sac-test-quote {
  font-size: 1.02rem;
  color: var(--sac-ink);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.sac-test-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--sac-border);
  padding-top: 16px;
  position: relative;
  z-index: 1;
}
.sac-test-avatar {
  width: 44px;
  height: 44px;
  background: var(--sac-green);
  color: var(--sac-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sac-test-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sac-ink);
  line-height: 1.2;
}
.sac-test-loc {
  font-size: 0.85rem;
  color: var(--sac-ink-muted);
  margin-top: 2px;
}

/* ---------- FAQ ON HOME ---------- */
.sac-faq {
  background: var(--sac-cream) !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.sac-faq h2 {
  color: var(--sac-green) !important;
  text-align: center;
  font-size: clamp(1.8rem, 3.8vw, 2.5rem) !important;
  margin-bottom: 36px !important;
}
.sac-faq .rtr-faq-item {
  background: #fff;
  border: 1px solid var(--sac-border);
  border-bottom: 1px solid var(--sac-border);
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 20px 26px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.sac-faq .rtr-faq-item h3 {
  color: var(--sac-green);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.sac-faq .rtr-faq-item p {
  color: var(--sac-ink-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---------- FINAL CTA BAND ---------- */
.sac-final-cta {
  background: linear-gradient(135deg, var(--sac-green-dark) 0%, var(--sac-green) 55%, var(--sac-green-light) 100%);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sac-final-cta::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(244,162,97,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.sac-final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sac-final-cta h2 {
  color: #fff !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  font-weight: 800 !important;
  margin: 8px 0 16px !important;
}
.sac-final-cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
}
.sac-final-cta .rtr-btn-primary {
  background: var(--sac-orange);
  font-size: 1.25rem;
  padding: 20px 44px;
  box-shadow: 0 14px 36px rgba(244,162,97,0.4);
}
.sac-final-cta .rtr-btn-primary:hover {
  background: var(--sac-orange-dark);
  transform: translateY(-2px);
}
.sac-cta-eyebrow {
  color: var(--sac-orange) !important;
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(244,162,97,0.4);
}

/* ---------- MOBILE ---------- */
@media (max-width: 880px) {
  .sac-hero { min-height: 0; }
  .sac-hero .sac-hero-content { padding: 64px 22px; }
  .sac-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .sac-offer-card { margin-top: 8px; }
  .sac-metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .sac-metric:not(:last-child)::after { display: none; }
  .sac-hero-cta { flex-direction: column; align-items: stretch; }
  .sac-hero-cta a { width: 100%; text-align: center; }
  .sac-services, .sac-why, .sac-process, .sac-gallery, .sac-areas, .sac-testimonials, .sac-final-cta { padding: 56px 20px; }
}
/* ============================================================
   SACRAMENTO EPOXY FLOOR PROS — SITE-WIDE BRAND OVERRIDES
   Applies the green + orange palette from the homepage to
   the header, nav, footer, sticky CTA, and every rtr-* section
   on service / suburb / blog / about / contact pages.
   ============================================================ */

/* ---------- TOP UTILITY BAR ---------- */
.r2r-utility {
  background: var(--sac-green-dark);
}
.r2r-utility a { color: #fff; }
.r2r-utility .r2r-cta-phone {
  background: var(--sac-orange);
  box-shadow: 0 2px 8px rgba(244,162,97,0.35);
}
.r2r-utility .r2r-cta-phone:hover { background: var(--sac-orange-dark); }

/* ---------- HEADER ---------- */
.r2r-header {
  border-bottom: 1px solid var(--sac-border);
}
.r2r-brand a { color: var(--sac-green); }
.r2r-brand .r2r-tagline { color: var(--sac-ink-muted); }

.r2r-nav a {
  color: var(--sac-green);
}
.r2r-nav a:hover,
.r2r-nav .current-menu-item a,
.r2r-nav .current_page_item a {
  background: var(--sac-mist);
  color: var(--sac-green-dark);
}
.r2r-nav .sub-menu,
.r2r-nav ul ul {
  border: 1px solid var(--sac-border);
}
.r2r-header-cta {
  background: var(--sac-orange);
  box-shadow: 0 4px 14px rgba(244,162,97,0.30);
}
.r2r-header-cta:hover { background: var(--sac-orange-dark); }
.r2r-header-secondary {
  border: 2px solid var(--sac-green);
  color: var(--sac-green);
}
.r2r-header-secondary:hover {
  background: var(--sac-green);
  color: #fff;
}

/* ---------- FOOTER ---------- */
.r2r-footer {
  background: linear-gradient(180deg, var(--sac-green-dark) 0%, #052418 100%);
  color: #c6d6cf;
}
.r2r-footer h3 { color: #fff; }
.r2r-footer p,
.r2r-footer li { color: #b3c4bd; }
.r2r-footer a { color: var(--sac-orange); }
.r2r-footer a:hover { color: #fff; }
.r2r-footer-phone {
  background: var(--sac-orange);
  box-shadow: 0 6px 18px rgba(244,162,97,0.30);
}
.r2r-footer-phone:hover { background: var(--sac-orange-dark); }
.r2r-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  color: #97a8a2;
}

/* ---------- STICKY MOBILE CTA ---------- */
.r2r-sticky-cta,
.r2r-mobile-call {
  background: var(--sac-orange) !important;
}
.r2r-sticky-cta:hover { background: var(--sac-orange-dark) !important; }

/* ---------- LINKS (body content) ---------- */
.rtr-root a,
.rtr-main a {
  color: var(--sac-orange-dark);
}
.rtr-root a:hover,
.rtr-main a:hover {
  color: var(--sac-green);
}

/* ---------- INNER-PAGE HERO ---------- */
.rtr-hero {
  background: linear-gradient(135deg, var(--sac-green-dark) 0%, var(--sac-green) 55%, var(--sac-green-light) 100%);
}
.rtr-hero h1 { color: #fff; }
.rtr-hero .rtr-hero-sub,
.rtr-hero > p { color: rgba(255,255,255,0.94); }

/* ---------- PRIMARY BUTTONS ---------- */
.rtr-btn-primary,
.rtr-cta-button,
.rtr-cta-hero {
  background: var(--sac-orange);
  box-shadow: 0 6px 18px rgba(244,162,97,0.30);
}
.rtr-btn-primary:hover,
.rtr-cta-button:hover,
.rtr-cta-hero:hover {
  background: var(--sac-orange-dark);
}
p .rtr-btn-primary:not(:only-child) {
  color: var(--sac-orange-dark);
}
p .rtr-btn-primary:not(:only-child):hover {
  color: var(--sac-green-dark);
}

/* ---------- TRUST BAR ---------- */
.rtr-trust,
.rtr-trust-bar {
  background: var(--sac-cream);
  border-bottom: 1px solid #e8dec9;
}
.rtr-trust li,
.rtr-trust-bar li,
.rtr-trust-bar span {
  color: var(--sac-green);
}
.rtr-trust li::before,
.rtr-trust-bar li::before {
  color: var(--sac-orange-dark);
}

/* ---------- SECTION HEADINGS ---------- */
.rtr-section h2 { color: var(--sac-green); }
.rtr-section h3 { color: var(--sac-green); }

/* ---------- CARDS ---------- */
.rtr-card {
  border: 1px solid var(--sac-border);
}
.rtr-card:hover {
  border-color: var(--sac-green);
  box-shadow: 0 14px 32px rgba(10,77,58,0.10);
}
.rtr-card h3 { color: var(--sac-green); }
.rtr-card p { color: var(--sac-ink-muted); }
.rtr-card a,
.rtr-card-link { color: var(--sac-orange-dark); font-weight: 700; }
.rtr-card a:hover { color: var(--sac-green); }

/* ---------- TILES ---------- */
.rtr-tile {
  background: var(--sac-mist);
  border-left: 4px solid var(--sac-orange);
}
.rtr-tile h3 { color: var(--sac-green); }
.rtr-tile p { color: var(--sac-ink-muted); }

/* ---------- PROCESS STEPS (.rtr-step) ---------- */
.rtr-step {
  border: 1px solid var(--sac-border);
}
.rtr-step-num {
  background: linear-gradient(135deg, var(--sac-orange) 0%, var(--sac-orange-dark) 100%);
  box-shadow: 0 6px 18px rgba(244,162,97,0.30);
}
.rtr-step-body h3 { color: var(--sac-green); }
.rtr-step-body p { color: var(--sac-ink-muted); }

/* ---------- SPEC TABLES ---------- */
.rtr-spec-table {
  border: 1px solid var(--sac-border);
}
.rtr-spec-table th,
.rtr-spec-table td {
  border-bottom: 1px solid var(--sac-border);
}
.rtr-spec-table th {
  background: var(--sac-mist);
  color: var(--sac-green);
}

/* ---------- FAQ ---------- */
.rtr-faq {
  background: var(--sac-cream);
}
.rtr-faq h2 { color: var(--sac-green); }
.rtr-faq-item {
  border-bottom: 1px solid #e8dec9;
}
.rtr-faq-item h3 { color: var(--sac-green); }
.rtr-faq-item p { color: var(--sac-ink-muted); }

/* ---------- SERVICE AREAS LIST (rtr-areas pills) ---------- */
.rtr-areas li a,
.rtr-areas-list li a {
  background: var(--sac-mist);
  color: var(--sac-green);
}
.rtr-areas li a:hover,
.rtr-areas-list li a:hover {
  background: var(--sac-green);
  color: #fff;
}

/* ---------- TESTIMONIALS ---------- */
.rtr-testimonials {
  background: var(--sac-mist);
}
.rtr-testimonials h2 { color: var(--sac-green); }
.rtr-testimonial {
  border: 1px solid var(--sac-border);
}
.rtr-testimonial .rtr-stars { color: var(--sac-orange); }
.rtr-testimonial .rtr-author { color: var(--sac-ink-muted); }

/* ---------- CTA BANDS ---------- */
.rtr-cta-band {
  background: linear-gradient(135deg, var(--sac-green-dark) 0%, var(--sac-green) 55%, var(--sac-green-light) 100%);
  position: relative;
  overflow: hidden;
}
.rtr-cta-band::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(244,162,97,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.rtr-cta-band > * { position: relative; z-index: 1; }
.rtr-cta-band h2 { color: #fff; }
.rtr-cta-band p { color: rgba(255,255,255,0.92); }
.rtr-cta-band .rtr-btn-primary,
.rtr-cta-band .rtr-cta-phone {
  background: var(--sac-orange);
  box-shadow: 0 10px 28px rgba(244,162,97,0.36);
}
.rtr-cta-band .rtr-btn-primary:hover,
.rtr-cta-band .rtr-cta-phone:hover {
  background: var(--sac-orange-dark);
}
.rtr-cta-phone { background: var(--sac-orange); }
.rtr-cta-phone:hover { background: var(--sac-orange-dark); }

/* ---------- TRUST STRIP ---------- */
.rtr-trust-strip {
  background: var(--sac-green);
  color: #fff;
}
.rtr-trust-strip-item::before {
  background: var(--sac-orange);
}

/* ---------- COMPARE BLOCK ---------- */
.rtr-compare {
  border: 1px solid var(--sac-border);
}
.rtr-compare h3 { color: var(--sac-green); }
.rtr-compare .rtr-compare-yes {
  background: #f0f7f3;
  border-right: 1px solid var(--sac-border);
}
.rtr-compare .rtr-compare-no {
  background: #fdf5f0;
}

/* ---------- FORM EMBED ---------- */
.rtr-form-embed h2 { color: var(--sac-green); }
.rtr-form-embed {
  border-top: 4px solid var(--sac-orange);
}
.rtr-form-embed input[type="submit"],
.rtr-form-embed button[type="submit"],
.wpforms-submit {
  background: var(--sac-orange) !important;
  border-color: var(--sac-orange) !important;
}
.rtr-form-embed input[type="submit"]:hover,
.rtr-form-embed button[type="submit"]:hover,
.wpforms-submit:hover {
  background: var(--sac-orange-dark) !important;
  border-color: var(--sac-orange-dark) !important;
}

/* ---------- TEXT COLOR ON DARK STRIPS ---------- */
.r2r-utility a:hover { color: #fff; opacity: 0.9; }
/* ============================================================
   SACRAMENTO EPOXY FLOOR PROS — WPFORMS STYLING
   Compact form fits inside hero offer card AND scales up
   gracefully on the contact page.
   ============================================================ */

/* Make the hero offer card wider when it contains a form */
.sac-form-card {
  padding: 26px 26px 28px;
  max-width: 100%;
}
.sac-form-card .sac-form-intro {
  font-size: 0.93rem;
  margin: 0 0 18px 0;
  line-height: 1.5;
}

/* ---------- BASE: wpforms shell ---------- */
.wpforms-container,
.wpforms-container-full {
  margin: 0 !important;
  max-width: 100%;
}
.wpforms-container .wpforms-title,
.wpforms-container .wpforms-description {
  display: none !important; /* card has its own heading */
}
.wpforms-form,
div.wpforms-container-full .wpforms-form {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- FIELDS ---------- */
.wpforms-form .wpforms-field {
  padding: 0 0 12px 0 !important;
  margin: 0 !important;
}
.wpforms-form .wpforms-field-label,
.wpforms-form label.wpforms-field-label {
  display: block !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: var(--sac-green) !important;
  margin: 0 0 6px 2px !important;
  letter-spacing: 0.01em;
}
.wpforms-form .wpforms-required-label {
  color: var(--sac-orange-dark) !important;
  font-weight: 700;
}
.wpforms-form input[type="text"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="email"],
.wpforms-form input[type="number"],
.wpforms-form select,
.wpforms-form textarea {
  width: 100% !important;
  padding: 11px 14px !important;
  border: 1px solid var(--sac-border) !important;
  border-radius: 7px !important;
  font-size: 0.96rem !important;
  font-family: inherit !important;
  color: var(--sac-ink) !important;
  background: #fff !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03) !important;
}
.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="tel"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form input[type="number"]:focus,
.wpforms-form select:focus,
.wpforms-form textarea:focus {
  outline: none !important;
  border-color: var(--sac-orange) !important;
  box-shadow: 0 0 0 3px rgba(244,162,97,0.18) !important;
}
.wpforms-form textarea { min-height: 88px !important; resize: vertical !important; }
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder {
  color: #9aa8a3 !important;
  opacity: 1;
}
.wpforms-form .wpforms-field-sublabel,
.wpforms-form .wpforms-field-description {
  font-size: 0.78rem !important;
  color: var(--sac-ink-muted) !important;
  margin-top: 4px !important;
}

/* Name field — single column */
.wpforms-form .wpforms-field-name .wpforms-field-row {
  display: block;
}
.wpforms-form .wpforms-field-name .wpforms-field-row-block {
  width: 100% !important;
  padding: 0 !important;
}

/* Phone field icons (WPForms intl-tel injects a flag) */
.wpforms-form .iti,
.wpforms-form .iti--allow-dropdown {
  width: 100% !important;
}

/* Select dropdown — custom arrow */
.wpforms-form select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230a4d3a' d='M6 8L0 0h12z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 11px 7px !important;
  padding-right: 36px !important;
}

/* ---------- SUBMIT BUTTON ---------- */
.wpforms-form .wpforms-submit,
.wpforms-form button.wpforms-submit,
.wpforms-form input[type="submit"].wpforms-submit {
  display: block !important;
  width: 100% !important;
  margin: 8px 0 0 !important;
  padding: 14px 24px !important;
  background: var(--sac-orange) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 7px !important;
  font-size: 1.02rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  box-shadow: 0 8px 22px rgba(244,162,97,0.34) !important;
  transition: background 0.15s ease, transform 0.1s ease !important;
}
.wpforms-form .wpforms-submit:hover,
.wpforms-form button.wpforms-submit:hover {
  background: var(--sac-orange-dark) !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
  color: #fff !important;
}
.wpforms-form .wpforms-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* Spinner inside button */
.wpforms-form .wpforms-submit-spinner {
  margin-left: 8px;
}

/* ---------- VALIDATION ERRORS ---------- */
.wpforms-form .wpforms-error,
.wpforms-form label.wpforms-error {
  color: #d65a3a !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  margin-top: 4px !important;
  display: block !important;
}
.wpforms-form input.wpforms-error,
.wpforms-form select.wpforms-error,
.wpforms-form textarea.wpforms-error {
  border-color: #d65a3a !important;
  background: #fef6f3 !important;
}

/* ---------- CONFIRMATION ---------- */
.wpforms-confirmation-container-full,
div.wpforms-container-full .wpforms-confirmation-container-full {
  background: #f0f7f3 !important;
  border: 1px solid #b3d4c2 !important;
  border-left: 4px solid var(--sac-green) !important;
  border-radius: 8px !important;
  padding: 22px 24px !important;
  color: var(--sac-ink) !important;
  margin: 0 !important;
}
.wpforms-confirmation-container-full h3 {
  color: var(--sac-green) !important;
  font-size: 1.2rem !important;
  margin: 0 0 8px 0 !important;
}
.wpforms-confirmation-container-full p {
  color: var(--sac-ink-muted) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}

/* ---------- HERO CARD — TIGHTER SPACING ---------- */
.sac-hero .sac-form-card .wpforms-form .wpforms-field {
  padding: 0 0 10px 0 !important;
}
.sac-hero .sac-form-card .wpforms-form .wpforms-field-label {
  font-size: 0.78rem !important;
  margin-bottom: 4px !important;
}
.sac-hero .sac-form-card .wpforms-form input,
.sac-hero .sac-form-card .wpforms-form select,
.sac-hero .sac-form-card .wpforms-form textarea {
  padding: 9px 12px !important;
  font-size: 0.93rem !important;
}
.sac-hero .sac-form-card .wpforms-form textarea {
  min-height: 68px !important;
}
.sac-hero .sac-form-card .wpforms-form .wpforms-submit {
  padding: 13px 22px !important;
  font-size: 0.98rem !important;
}

/* ---------- CONTACT PAGE FORM — MORE GENEROUS ---------- */
.page-id-16 .wpforms-container,
.page-template-default .rtr-section .wpforms-container {
  max-width: 720px;
  margin-top: 10px !important;
  background: #fff;
  border: 1px solid var(--sac-border);
  border-top: 4px solid var(--sac-orange);
  border-radius: 12px;
  padding: 28px 30px 30px;
  box-shadow: 0 4px 18px rgba(10,77,58,0.06);
}

/* ---------- HONEYPOT (always hidden) ---------- */
.wpforms-form .wpforms-field-hp {
  display: none !important;
}

/* ---------- MOBILE ---------- */
@media (max-width: 880px) {
  .sac-hero .sac-form-card {
    padding: 22px 22px 24px;
  }
  .page-id-16 .wpforms-container,
  .page-template-default .rtr-section .wpforms-container {
    padding: 22px 20px 24px;
  }
}
