
:root{
  --ink:#101217;
  --muted:#596273;
  --bg:#ffffff;
  --line:#e5e7eb;
  --yellow:#ffd84d;
  --yellow2:#ffe98a;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Arial,Helvetica,sans-serif;
  font-size:18px;
  color:var(--ink);
  background:var(--bg);
}
.container{max-width:1180px;margin:0 auto;padding:0 20px}
header{position:sticky;top:0;z-index:30;background:#fff;border-bottom:1px solid var(--line)}
.topbar{
  display:flex;justify-content:space-between;align-items:center;
  gap:12px;padding:12px 0;
}
.brand{
  font-weight:800;color:#111;text-decoration:none;
  font-size:1.12rem;letter-spacing:.2px;
}
nav.container{
  border-top:1px solid var(--line);
  padding:8px 0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
nav a{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  color:#243447;
  padding:10px 12px;
  font-size:1.06rem;
  border-radius:999px;
  border:1px solid transparent;
  transition:all .15s ease;
  font-weight:600;
}
nav a:hover, nav a:focus-visible{
  background:var(--yellow);
  color:#111;
  border-color:#111;
  outline:none;
}
main{padding-bottom:28px}
.hero{padding:24px 0 8px}
h1{font-size:2.35rem;line-height:1.2;margin:0 0 12px}
h2{font-size:2.05rem;margin:30px 0 12px}
h3{font-size:1.35rem;margin:0 0 10px}
p{line-height:1.6;margin:0 0 12px}
ul{line-height:1.6;margin:0 0 12px 22px}
.small{font-size:1rem;color:var(--muted)}

.policy{
  margin:14px 0;
  padding:12px;
  border-left:5px solid #111;
  background:#f4f6fa;
}
.experience-line{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  background:#fff8d6;
  border:1px solid #f6cf4f;
  border-radius:999px;
  padding:7px 12px;
  margin:4px 0 14px;
}
.experience-line::before{content:"★"}

.visual-strip{
  display:grid;
  grid-template-columns:1.25fr 1fr .65fr;
  gap:14px;
  margin:8px 0 16px;
}
.visual-card{
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  padding:10px;
}
.visual-card img,
.badge-wrap img{
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center;
  display:block;
  background:#fff;
  border-radius:10px;
  border:1px solid #d7dbe3;
}
.visual-card img{aspect-ratio:1200/630}
.badge-wrap img{aspect-ratio:1/1}

.visual-card figcaption{
  font-size:1.15rem;
  color:#374151;
  margin-top:10px;
}
.badge-wrap{
  align-items:stretch;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fffdf2;
  padding:10px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.badge-wrap p{
  font-size:1.12rem;
  margin-top:10px;
  text-align:center;
  color:#1f2937;
  font-weight:700;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.card{
  border:1px solid #bfd9ff;
  border-radius:12px;
  padding:16px;
  background:#eaf4ff;
  min-height:210px;
}
.most-requested-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.most-requested-grid .service-card,
.most-requested-grid .service-card:nth-child(n){
  background:#eaf4ff !important;
  border:1px solid #bfd9ff !important;
  min-height:210px;
}

.review{
  border:1px solid var(--line);
  border-radius:12px;
  padding:16px;
  margin:0 0 12px;
  background:#fff;
}
.review .meta{margin-top:10px;font-size:1.02rem;color:#374151}
.stars{font-weight:800;letter-spacing:.5px}
a{color:#1342a0}

/* HARD OVERRIDE: yellow call pills everywhere */
a[href^="tel:"], .callbtn, .btn-call{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:var(--yellow) !important;
  color:#111 !important;
  border:2px solid #111 !important;
  border-radius:999px !important;
  padding:10px 16px !important;
  font-weight:800 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
}
a[href^="tel:"]:hover, .callbtn:hover, a[href^="tel:"]:focus-visible, .callbtn:focus-visible{
  background:var(--yellow2) !important;
  color:#111 !important;
  outline:none !important;
  box-shadow:0 0 0 3px rgba(255,216,77,.35) !important;
}

footer{
  border-top:1px solid var(--line);
  margin-top:36px;
  padding:22px 0;
  background:#fafafa;
}
.footer-links p{margin:8px 0}
.footer-links a{margin-right:7px}
details{
  border:1px solid var(--line);
  border-radius:8px;
  padding:10px 12px;
  font-size:1.06rem;
  margin-bottom:8px;
}
summary{font-weight:700;cursor:pointer}
.callout{
  background:#f0f9ff;
  border:1px solid #bae6fd;
  border-radius:12px;
  padding:14px;
}
@media (max-width:1080px){
  .visual-strip{grid-template-columns:1fr 1fr}
  .badge-wrap{
  align-items:stretch;grid-column:1/-1}
}
@media (max-width:760px){
  body{font-size:16.5px}
  h1{font-size:2.0rem}
  .topbar{flex-wrap:wrap}
  nav.container{gap:6px}
  nav a{padding:8px 10px;font-size:1rem}
  .visual-strip{grid-template-columns:1fr}
}

/* v13 image text fit refinements */
.visual-card img, .badge-wrap img{
  image-rendering: -webkit-optimize-contrast;
}


/* v14 persistent on-site message below hero on every page */
.on-site-banner{
  margin: 8px 0 20px;
  padding: 12px 14px;
  border: 2px solid #111;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff6c4 0%, #ffe98a 100%);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.on-site-banner p{
  margin: 0;
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: .2px;
  color: #111;
}
@media (max-width: 760px){
  .on-site-banner{padding: 11px 12px}
  .on-site-banner p{font-size: 1.05rem}
}


/* Balanced 3x2 layout for Most Requested Services */
.most-requested-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.most-requested-grid .service-card{
  min-height:200px;
}
@media (max-width:1100px){
  .most-requested-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:680px){
  .most-requested-grid{grid-template-columns:1fr;}
  .most-requested-grid .service-card{min-height:auto;}
}

/* Local proof / county relationship sections */
.local-proof, .county-evidence {
  margin: 1rem 0 1.35rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf4;
}
.local-proof h2, .county-evidence h2 {
  margin: 0 0 .5rem 0;
  font-size: 1.25rem;
}
.local-proof p, .county-evidence p { margin: .35rem 0 .6rem; }
.local-proof ul, .county-evidence ul {
  margin: .35rem 0 .6rem 1.15rem;
  padding: 0;
}
.local-proof li, .county-evidence li { margin: .22rem 0; }
.local-proof .geo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .35rem;
}
.local-proof .geo-tags span{
  display:inline-block;
  font-size:.92rem;
  border:1px solid #d6d8df;
  border-radius:999px;
  padding:.28rem .65rem;
  background:#fff;
}
.local-proof .mini-note {
  font-size: .96rem;
  color: #3f4e66;
}
@media (max-width: 680px){
  .local-proof h2, .county-evidence h2 { font-size: 1.1rem; }
}


/* --- Home page: balanced service cards (clean fit, uniform height) --- */
.most-requested-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;align-items:stretch;}
.most-requested-grid .service-card{min-height:170px;height:100%;display:flex;flex-direction:column;justify-content:flex-start;padding:18px 20px;}
.most-requested-grid .service-card strong{line-height:1.2;}
.most-requested-grid .service-card p{margin:8px 0 0;line-height:1.35;}
@media (max-width:1100px){.most-requested-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:700px){.most-requested-grid{grid-template-columns:1fr;}}


@media (max-width: 1100px){
  .grid,
  .most-requested-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 700px){
  .grid,
  .most-requested-grid{grid-template-columns:1fr;}
}

/* County page title color-coding */
.county-page-title{
  display:inline-block;
  padding:10px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  line-height:1.2;
  margin-bottom:10px;
}
.county-title-volusia{ background:#eaf3ff; }
.county-title-seminole{ background:#eaf8ef; }
.county-title-lake{ background:#fff8e5; }
.county-title-flagler{ background:#f3edff; }

@media (max-width: 640px){
  .county-page-title{
    width:100%;
    text-align:left;
    padding:10px 12px;
  }
}


/* ===== Final v37 overrides ===== */
.county-page-title{
  margin:10px 0 14px;
  padding:14px 16px;
  border-radius:12px;
  font-size:clamp(1.65rem,2.6vw,2.1rem);
  font-weight:800;
  text-align:center;
}
.county-page-title.county-volusia{ background:#dbeafe; border:2px solid #3b82f6; }
.county-page-title.county-seminole{ background:#dff5e8; border:2px solid #22c55e; }
.county-page-title.county-lake{ background:#fff2df; border:2px solid #f59e0b; }
.county-page-title.county-flagler{ background:#efe9ff; border:2px solid #8b5cf6; }

.badge-wrap{padding:14px 14px 14px;}
.badge-wrap img{width:100%;max-width:320px;border-radius:18px;display:block;margin:0 auto;}
.badge-wrap p{display:none !important;}


/* ===== Final v37b enforced overrides ===== */
.most-requested-grid .service-card{min-height:150px !important; padding:18px 20px !important;}
@media (max-width:700px){ .most-requested-grid .service-card{min-height:auto !important;} }

.county-title-volusia{ background:#dbeafe !important; border:2px solid #3b82f6 !important; }
.county-title-seminole{ background:#dff5e8 !important; border:2px solid #22c55e !important; }
.county-title-lake{ background:#fff2df !important; border:2px solid #f59e0b !important; }
.county-title-flagler{ background:#efe9ff !important; border:2px solid #8b5cf6 !important; }
.county-page-title{ display:block !important; text-align:center !important; font-weight:800 !important; border-radius:12px !important; }

/* v38: balance top visual cards */
.visual-strip {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
  gap: 1.5rem !important;
  margin: 1.4rem 0 1.6rem !important;
  align-items: stretch !important;
}

.visual-strip > * {
  min-width: 0;
}

.visual-card,
.badge-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  min-height: 430px !important;
  display: flex !important;
}

.visual-card figure,
.badge-wrap {
  width: 100%;
  height: 100%;
}

.visual-card figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: .9rem;
}

.visual-card figcaption {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--ink-soft);
  width: 100%;
}

.visual-card img,
.badge-wrap img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid #d6deea;
  background: #f6f8fc;
  margin: 0 auto;
}

.badge-wrap {
  width: auto !important;
  max-width: none !important;
  margin-left: 0 !important;
  justify-content: center;
  align-items: center;
}

.badge-wrap img {
  max-height: 100%;
}

@media (max-width: 1200px) {
  .visual-strip {
    grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .visual-strip {
    grid-template-columns: 1fr !important;
  }
}


/* v39 layout fix: keep text below first two visual images and prevent side-by-side wrapping */
.visual-strip > .visual-card {
  display: block !important;
}

.visual-strip > .visual-card > img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
}

.visual-strip > .visual-card > figcaption {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 12px !important;
  text-align: left !important;
  white-space: normal !important;
}


/* v40 visual cards uniform sizing/text */
.visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: clamp(18px, 2.1vw, 30px);
  align-items: stretch;
}

.visual-strip .visual-card {
  margin: 0;
  border: 1px solid #d5dbe6;
  border-radius: 24px;
  background: #f5f7fb;
  padding: clamp(16px, 1.6vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  height: 100%;
}

.visual-strip .visual-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid #cfd7e6;
  background: #eef2f8;
  display: block;
}

.visual-strip .visual-card figcaption {
  margin: 0;
  color: #1b2f56;
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 600;
  min-height: 3.8em;
}

.visual-strip .badge-wrap.visual-card img {
  background: #f1f0e4;
}

@media (max-width: 1100px) {
  .visual-strip {
    grid-template-columns: 1fr;
  }

  .visual-strip .visual-card img {
    height: auto;
  }

  .visual-strip .visual-card figcaption {
    min-height: 0;
  }
}


/* County pages: compact city list bullets */
.city-bullets-label{ margin: .35rem 0 .2rem; }
.city-bullets{ margin: 0 0 .6rem 1.2rem; padding: 0; }
.city-bullets li{ margin: 0 0 .22rem; line-height: 1.25; }
.city-bullets-note{ margin: 0 0 1rem; opacity: .85; font-size: .95em; }
@media (min-width: 900px){
  .city-bullets{ column-count: 2; column-gap: 2.2rem; }
  .city-bullets li{ break-inside: avoid; }
}
