/*
Theme Name: Concrete Patio Cleaning
Theme URI: https://concretepatiocleaning.com/
Author: Concrete Patio Cleaning
Author URI: https://concretepatiocleaning.com/
Description: Lightweight, SEO-friendly lead-gen theme for concrete patio cleaning (content hub + quote form).
Version: 1.5.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: concrete-patio-cleaning
Tags: custom-logo, custom-menu, featured-images, one-column, blog
*/

:root{
  --cpc-bg:#ffffff;
  --cpc-surface:#f6f8fb;
  --cpc-border:#e6ebf2;
  --cpc-text:#0f172a;
  --cpc-muted:#475569;
  --cpc-primary:#0b3a67;
  --cpc-accent:#f08a1a;
  --cpc-link:#0b3a67;
  --cpc-radius:16px;
  --cpc-shadow:0 8px 24px rgba(15,23,42,0.08);
  --cpc-max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--cpc-text);
  background:var(--cpc-bg);
  line-height:1.6;
}
img{max-width:100%; height:auto}
a{color:var(--cpc-link); text-decoration:none}
a:hover{text-decoration:underline}
.cpc-container{max-width:var(--cpc-max); margin:0 auto; padding:0 20px}
.cpc-sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0}

/* Header */
.cpc-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.9);
  backdrop-filter:saturate(180%) blur(8px);
  border-bottom:1px solid var(--cpc-border);
}
.cpc-header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.cpc-brand{
  display:flex; align-items:center; gap:12px;
  font-weight:800; letter-spacing:0.2px;
  color:var(--cpc-text);
}
.cpc-brand img{height:40px; width:auto}
.cpc-brand .cpc-brand-text{display:flex; flex-direction:column; line-height:1.1}
.cpc-brand .cpc-brand-title{font-size:18px}
.cpc-brand .cpc-brand-sub{font-size:12px; color:var(--cpc-muted); font-weight:700; text-transform:uppercase; letter-spacing:0.06em}

.cpc-nav{display:flex; align-items:center; gap:18px}
.cpc-nav a{font-weight:700; color:var(--cpc-muted)}
.cpc-nav a:hover{color:var(--cpc-text); text-decoration:none}
.cpc-nav .current-menu-item > a{color:var(--cpc-text)}
.cpc-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .06s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.cpc-btn:active{transform:translateY(1px)}
.cpc-btn-primary{
  background:var(--cpc-accent);
  color:#ffffff;
  box-shadow:0 10px 18px rgba(240,138,26,0.22);
}
.cpc-btn-primary:hover{filter:brightness(0.97); text-decoration:none}
.cpc-btn-ghost{
  background:transparent;
  border-color:var(--cpc-border);
  color:var(--cpc-text);
}
.cpc-mobile-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--cpc-border);
  border-radius:12px;
  padding:10px 12px;
  font-weight:800;
  color:var(--cpc-text);
}

/* Mobile nav panel */
.cpc-mobile-panel{
  display:none;
  border-top:1px solid var(--cpc-border);
  background:#fff;
  padding:14px 0 18px;
}
.cpc-mobile-panel a{
  display:block; padding:10px 20px;
  font-weight:800; color:var(--cpc-muted);
}
.cpc-mobile-panel a:hover{color:var(--cpc-text); text-decoration:none}
.cpc-mobile-panel .cpc-mobile-cta{padding:12px 20px}

/* Sections */
.cpc-section{padding:54px 0}
.cpc-section-alt{background:var(--cpc-surface); border-top:1px solid var(--cpc-border); border-bottom:1px solid var(--cpc-border)}
.cpc-kicker{color:var(--cpc-primary); font-weight:900; text-transform:uppercase; letter-spacing:0.08em; font-size:12px}
h1,h2,h3{line-height:1.2; margin:0 0 12px}
h1{font-size:42px; letter-spacing:-0.02em}
h2{font-size:28px}
h3{font-size:20px}
p{margin:0 0 14px; color:var(--cpc-muted)}
.cpc-lead{font-size:18px; color:var(--cpc-muted)}
.cpc-title-rule{display:flex; align-items:center; gap:14px; margin-bottom:14px}
.cpc-title-rule:after{
  content:""; height:1px; flex:1;
  background:linear-gradient(90deg, var(--cpc-border), transparent);
}

/* Hero */
.cpc-hero{
  padding:34px 0 0;
  background:linear-gradient(180deg, #ffffff, #f9fbff);
}
.cpc-hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:26px;
  align-items:center;
}
.cpc-hero-card{
  border-radius:var(--cpc-radius);
  overflow:hidden;
  border:1px solid var(--cpc-border);
  box-shadow:var(--cpc-shadow);
  background:#fff;
  min-height:320px;
}
.cpc-hero-card img{width:100%; height:100%; object-fit:cover; display:block}
.cpc-hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

/* Feature row */
.cpc-feature-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:center;
}
.cpc-feature-img{
  border-radius:var(--cpc-radius);
  overflow:hidden;
  border:1px solid var(--cpc-border);
  box-shadow:var(--cpc-shadow);
  background:#fff;
}
.cpc-bullets{margin:10px 0 0; padding-left:18px}
.cpc-bullets li{margin:6px 0; color:var(--cpc-muted)}
.cpc-inline-link{font-weight:800}

/* Cards */
.cpc-card-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.cpc-card{
  background:#fff;
  border:1px solid var(--cpc-border);
  border-radius:14px;
  padding:16px;
  box-shadow:0 10px 18px rgba(15,23,42,0.04);
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:140px;
}
.cpc-card .cpc-card-title{font-weight:900; color:var(--cpc-text)}
.cpc-card p{margin:0; font-size:14px}
.cpc-card a{font-weight:900; font-size:13px}

/* Compare */
.cpc-compare{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.cpc-compare-box{
  background:#fff;
  border:1px solid var(--cpc-border);
  border-radius:14px;
  padding:16px;
  box-shadow:0 10px 18px rgba(15,23,42,0.04);
}
.cpc-check{margin:0; padding-left:18px}
.cpc-check li{margin:6px 0; color:var(--cpc-muted)}
.cpc-compare-foot{margin-top:10px}

/* Cost tiles */
.cpc-tiles{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:10px;
}
.cpc-tile{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--cpc-border);
  background:#fff;
  box-shadow:var(--cpc-shadow);
  min-height:120px;
}
.cpc-tile .cpc-tile-label{
  position:absolute;
  left:14px; right:14px; top:14px;
  background:rgba(255,255,255,0.92);
  border:1px solid var(--cpc-border);
  border-radius:12px;
  padding:10px 12px;
  font-weight:900;
  text-align:center;
}
.cpc-tile img{width:100%; height:100%; object-fit:cover}

/* FAQ + Form */
.cpc-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.cpc-faq{
  background:#fff;
  border:1px solid var(--cpc-border);
  border-radius:14px;
  padding:16px;
  box-shadow:0 10px 18px rgba(15,23,42,0.04);
}
.cpc-faq-item{padding:10px 0; border-bottom:1px solid var(--cpc-border)}
.cpc-faq-item:last-child{border-bottom:none}
.cpc-faq-q{font-weight:900; color:var(--cpc-text)}
.cpc-faq-a{margin-top:6px; font-size:14px}
.cpc-form{
  background:#fff;
  border:1px solid var(--cpc-border);
  border-radius:14px;
  padding:16px;
  box-shadow:var(--cpc-shadow);
}
.cpc-form label{display:block; font-weight:800; color:var(--cpc-text); margin:10px 0 6px}
.cpc-form input, .cpc-form select{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--cpc-border);
  border-radius:12px;
  font-size:14px;
  outline:none;
}
.cpc-form input:focus, .cpc-form select:focus{border-color:#b8c7dd; box-shadow:0 0 0 3px rgba(11,58,103,0.12)}
.cpc-form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.cpc-form .cpc-btn{width:100%; margin-top:14px}
.cpc-note{font-size:12px; color:var(--cpc-muted); margin-top:10px}

/* Footer */
.cpc-footer{
  background:var(--cpc-primary);
  color:#e6f1ff;
  padding:34px 0;
  margin-top:30px;
}
.cpc-footer a{color:#e6f1ff; font-weight:800}
.cpc-footer-grid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap:18px;
}
.cpc-footer h3{color:#fff; margin-bottom:10px}
.cpc-footer p{color:#cfe3ff}
.cpc-footer-bottom{margin-top:18px; padding-top:18px; border-top:1px solid rgba(230,241,255,0.18); font-size:12px; color:#cfe3ff}

/* Utility */
.cpc-pill-links{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.cpc-pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  font-weight:800;
}

/* Responsive */
@media (max-width: 980px){
  h1{font-size:34px}
  .cpc-hero-grid{grid-template-columns:1fr; }
  .cpc-hero-card{min-height:240px}
  .cpc-feature-row{grid-template-columns:1fr}
  .cpc-card-grid{grid-template-columns: repeat(2, 1fr)}
  .cpc-compare{grid-template-columns:1fr}
  .cpc-tiles{grid-template-columns:1fr}
  .cpc-split{grid-template-columns:1fr}
  .cpc-footer-grid{grid-template-columns:1fr}
  .cpc-nav{display:none}
  .cpc-mobile-toggle{display:inline-flex}
  .cpc-form-row{grid-template-columns:1fr}
}


/* Step card icons */
.cpc-card-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:2px;
}
.cpc-card-icon{
  width:26px;
  height:26px;
  object-fit:contain;
  flex:0 0 auto;
}

/* Light green checkmarks (Pressure vs Soft Washing) */
.cpc-checklist{
  list-style:none;
  padding-left:0;
  margin:10px 0 0;
}
.cpc-checklist li{
  position:relative;
  padding-left:26px;
  margin:8px 0;
  color:var(--cpc-muted);
}
.cpc-checklist li:before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  background-repeat:no-repeat;
  background-size:18px 18px;
  opacity:0.95;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%236bbf59' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


/* --- CPC design polish (v1.3) --- */
:root{
  --cpc-bg:#f3f6fb;
  --cpc-surface:#ffffff;
  --cpc-border:#e6edf6;
  --cpc-text:#1f2a3a;
  --cpc-muted:#55657a;
  --cpc-heading:#0b3a67;
  --cpc-accent:#f08a1a;
  --cpc-accent-dark:#d8730f;
  --cpc-shadow:0 10px 26px rgba(18,38,63,.10);
  --cpc-shadow-soft:0 8px 18px rgba(18,38,63,.08);
  --cpc-radius:12px;
}

body{
  background:var(--cpc-bg);
  color:var(--cpc-text);
}

.cpc-container{
  max-width:1140px;
}

/* Header */
.site-header{
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(120%) blur(6px);
  border-bottom:1px solid var(--cpc-border);
}
.site-branding img{
  height:46px;
  width:auto;
}
.main-nav a{
  color:var(--cpc-text);
  font-weight:600;
}
.main-nav a:hover{
  color:var(--cpc-heading);
}
.cpc-nav-cta a{
  background:var(--cpc-accent);
  color:#fff !important;
  border-radius:8px;
  padding:10px 16px;
  box-shadow:0 8px 18px rgba(240,138,26,.25);
  display:inline-block;
}
.cpc-nav-cta a:hover{
  background:var(--cpc-accent-dark);
}

/* Buttons */
.cpc-btn, .cpc-btn:visited{
  background:var(--cpc-accent);
  color:#fff;
  border-radius:10px;
  padding:12px 20px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(240,138,26,.25);
  border:1px solid rgba(0,0,0,0);
  display:inline-block;
}
.cpc-btn:hover{
  background:var(--cpc-accent-dark);
  transform:translateY(-1px);
}

/* Section surfaces */
.cpc-section{
  padding:34px 0;
}
.cpc-section .cpc-panel{
  background:var(--cpc-surface);
  border:1px solid var(--cpc-border);
  border-radius:var(--cpc-radius);
  box-shadow:var(--cpc-shadow-soft);
  padding:26px;
}

/* Headings */
.cpc-hero h1, .cpc-section h2, .cpc-section h3{
  color:var(--cpc-heading);
}
.cpc-section h2{
  font-size:30px;
  letter-spacing:-.2px;
}
.cpc-section p, .cpc-section li{
  color:var(--cpc-muted);
  line-height:1.7;
  font-size:16px;
}

/* Hero */
.cpc-hero{
  background:linear-gradient(180deg, #ffffff 0%, #ffffff 55%, rgba(255,255,255,0) 100%);
  padding:26px 0 0;
}
.cpc-hero-inner{
  background:var(--cpc-surface);
  border:1px solid var(--cpc-border);
  border-radius:16px;
  box-shadow:var(--cpc-shadow);
  overflow:hidden;
}
.cpc-hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:0;
  align-items:stretch;
}
.cpc-hero-copy{
  padding:44px 44px 40px;
}
.cpc-hero-copy h1{
  font-size:46px;
  line-height:1.05;
  margin:0 0 14px;
}
.cpc-hero-copy p{
  max-width:520px;
  font-size:18px;
  color:var(--cpc-muted);
  margin:0 0 18px;
}
.cpc-hero-media{
  position:relative;
  min-height:320px;
}
.cpc-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.cpc-hero-media:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.25) 30%, rgba(255,255,255,0) 55%);
  pointer-events:none;
}

/* Image cards */
.cpc-img-card img{
  border-radius:12px;
  box-shadow:var(--cpc-shadow-soft);
  border:1px solid var(--cpc-border);
}

/* Step cards */
.cpc-card{
  background:var(--cpc-surface);
  border:1px solid var(--cpc-border);
  border-radius:12px;
  box-shadow:0 10px 22px rgba(18,38,63,.06);
}
.cpc-card .cpc-card-title{
  color:var(--cpc-heading);
  font-weight:800;
}

/* Comparison boxes */
.cpc-compare{
  background:var(--cpc-surface);
  border:1px solid var(--cpc-border);
  border-radius:12px;
  box-shadow:0 10px 22px rgba(18,38,63,.06);
}

/* FAQ + Quote form */
.cpc-faq, .cpc-quote-form{
  background:var(--cpc-surface);
  border:1px solid var(--cpc-border);
  border-radius:12px;
  box-shadow:0 10px 22px rgba(18,38,63,.06);
}

/* Responsive */
@media (max-width: 980px){
  .cpc-hero-grid{grid-template-columns:1fr;}
  .cpc-hero-media{min-height:260px;}
  .cpc-hero-copy{padding:34px 26px;}
  .cpc-hero-copy h1{font-size:38px;}
}
@media (max-width: 640px){
  .cpc-hero-copy h1{font-size:32px;}
}


/* Logo sizing + header alignment */
.cpc-header{background:#fff; border-bottom:1px solid rgba(15,23,42,.08);}
.cpc-header-inner{display:flex; align-items:center; justify-content:space-between; gap:16px;}
.cpc-brand{display:flex; align-items:center; gap:10px; text-decoration:none;}
.cpc-logo, .cpc-brand img.custom-logo{max-height:44px; width:auto; height:auto; max-width:220px; display:block;}
@media (max-width: 640px){
  .cpc-logo, .cpc-brand img.custom-logo{max-height:36px; max-width:190px;}
}

/* Primary CTA matches mock */
.cpc-btn{display:inline-flex; align-items:center; justify-content:center; padding:12px 18px; border-radius:10px; font-weight:800; text-decoration:none; border:1px solid transparent;}
.cpc-btn-primary{background:var(--cpc-accent); color:#fff;}
.cpc-btn-primary:hover{filter:brightness(0.95);}

/* Make header CTA pill-shaped like mock */
.cpc-nav-cta .cpc-btn-primary{border-radius:999px; padding:10px 16px;}

/* Hero button spacing */
.cpc-hero-copy .cpc-btn-primary{margin-top:10px;}


/* ===== Header (match mock) ===== */
.cpc-header{position:sticky; top:0; z-index:999; background:#fff; border-bottom:1px solid rgba(15,23,42,.08);}
.cpc-header-inner{display:grid; grid-template-columns:220px 1fr 180px; align-items:center; gap:16px; padding:14px 0;}
.cpc-brand{justify-self:start;}
.cpc-logo, .cpc-brand img.custom-logo{max-height:46px; width:auto; height:auto; max-width:220px; display:block;}

.cpc-nav{display:flex; align-items:center; justify-content:center; gap:18px;}
.cpc-menu{list-style:none; display:flex; gap:44px; margin:0; padding:0; align-items:center; justify-content:center;}
.cpc-menu a{color:var(--cpc-ink); text-decoration:none; font-weight:700; opacity:0.9;}
.cpc-menu a:hover{opacity:1; text-decoration:underline; text-underline-offset:4px;}

.cpc-nav-cta{margin-left:auto;}
.cpc-nav-cta .cpc-btn-primary{border-radius:8px; padding:10px 16px; box-shadow:0 2px 0 rgba(0,0,0,0.08);}

.cpc-mobile-toggle{display:none; justify-self:end;}
@media (max-width: 920px){
  .cpc-header-inner{grid-template-columns:1fr auto; }
  .cpc-nav{display:none;}
  .cpc-mobile-toggle{display:inline-flex;}
}

/* Mobile panel */
.cpc-mobile-panel{border-top:1px solid rgba(15,23,42,.08); background:#fff; padding:14px 0;}
.cpc-mobile-inner{max-width:1100px; margin:0 auto; padding:0 20px;}
.cpc-mobile-menu{list-style:none; margin:0 0 12px; padding:0; display:flex; flex-direction:column; gap:10px;}
.cpc-mobile-menu a{text-decoration:none; font-weight:700; color:var(--cpc-ink);}
.cpc-mobile-cta .cpc-btn-primary{width:100%; justify-content:center; border-radius:10px;}

/* ===== Hero (match mock) ===== */
.cpc-hero-full{
  position:relative;
  background-size:cover;
  background-position:center;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.cpc-hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(9,38,66,0.92) 0%, rgba(9,38,66,0.70) 38%, rgba(9,38,66,0.10) 68%, rgba(9,38,66,0) 100%);
}
.cpc-hero-full .cpc-container{position:relative; z-index:2;}
.cpc-hero-full-inner{padding:78px 0 82px; max-width:620px;}
.cpc-hero-full h1{color:#fff; font-size:56px; line-height:1.05; margin:0 0 14px; text-shadow:0 2px 8px rgba(0,0,0,0.35);}
.cpc-hero-sub{color:#d6f3b9; font-size:26px; line-height:1.25; margin:0 0 22px; font-weight:800; text-shadow:0 2px 8px rgba(0,0,0,0.35);}
.cpc-btn-hero{font-size:18px; padding:14px 22px; border-radius:10px; box-shadow:0 3px 0 rgba(0,0,0,0.18);}
@media (max-width: 900px){
  .cpc-hero-full-inner{padding:56px 0 62px;}
  .cpc-hero-full h1{font-size:42px;}
  .cpc-hero-sub{font-size:22px;}
}
@media (max-width: 560px){
  .cpc-hero-full h1{font-size:34px;}
  .cpc-hero-sub{font-size:18px;}
}

