/*
Theme Name: Super Clean Home Services
Theme URI: https://example.com/
Author: Custom
Author URI: https://example.com/
Description: Custom lightweight theme matching the Super Clean Home Services homepage design. Includes custom front page template and responsive header/footer.
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: superclean
Tags: custom, responsive, one-column, two-columns
*/

:root{
  --bg-1:#f6f1ff;
  --bg-2:#efe9ff;
  --ink:#1f1d2b;
  --muted:#4f4a63;
  --muted-2:#6a6580;
  --card:rgba(255,255,255,.68);
  --card-2:rgba(255,255,255,.56);
  --border:rgba(19, 22, 34, .10);
  --shadow:0 16px 38px rgba(18, 21, 43, .12);
  --shadow-sm:0 10px 22px rgba(18, 21, 43, .10);
  --primary:#2b50e3;
  --primary-2:#1c3fd5;
  --primary-3:#1433bb;
  --radius:18px;
  --radius-sm:14px;
  --radius-pill:999px;
  --container:1080px;
}

/* Base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
  background: radial-gradient(1200px 700px at 25% 5%, rgba(255,255,255,.85), rgba(255,255,255,0) 60%),
              radial-gradient(1200px 700px at 85% 20%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
              linear-gradient(180deg, var(--bg-1), var(--bg-2));
  overflow-x:hidden;
}

/* Subtle whole-page background photo like the screenshot */

a{color:inherit}
img{max-width:100%;height:auto}
button,input,select{font:inherit}

.sc-container{max-width:var(--container); margin:0 auto; padding:0 24px}

.sc-sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;}

/* Header */
.sc-header{position:sticky; top:0; z-index:50; backdrop-filter: blur(12px);}
.sc-header__bar{
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.45);
  position:relative;
}
.sc-header__row{display:flex; align-items:center; gap:18px}
.sc-brand{
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-weight:500;
  letter-spacing:.1px;
  font-size:18px;
  text-decoration:none;
}
.sc-nav{margin-left:auto;}
.sc-nav__list{margin:0; padding:0; list-style:none; display:flex; align-items:center; gap:22px}
.sc-nav__list li{margin:0; padding:0}
.sc-nav a{
  font-size:15px;
  text-decoration:none;
  color:rgba(31,29,43,.80);
}
.sc-nav a:hover{color:rgba(31,29,43,1)}

.sc-header__actions{display:flex; align-items:center; gap:10px}

.sc-callbtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  padding:10px 16px;
  border-radius: var(--radius-pill);
  color:#fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-3));
  box-shadow: 0 10px 20px rgba(27, 60, 210, .20);
}
.sc-callbtn svg{width:18px; height:18px; fill:currentColor}

.sc-menu-btn{
  display:none;
  border:1px solid rgba(31,29,43,.16);
  background:rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  border-radius:12px;
  padding:10px 12px;
}

.sc-menu-btn svg{width:18px;height:18px}

/* Mobile header: inline brand + number (no menu icon) */
@media (max-width: 860px){
  .sc-container{padding:0 14px}
  .sc-header__bar{padding:12px 0}
  .sc-header__row{justify-content:space-between; gap:10px}
  .sc-nav{display:none !important}
  .sc-brand{
    font-size:14px;
    line-height:1.2;
    max-width: 62%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .sc-header__actions{margin-left:0}
  .sc-callbtn{
    padding:8px 10px;
    font-size:13px;
    gap:6px;
    box-shadow: 0 8px 16px rgba(27, 60, 210, .18);
    white-space:nowrap;
  }
  .sc-callbtn svg{width:16px;height:16px}
}

/* Hero */
.sc-hero{padding:26px 0 18px}
.sc-hero__topline{
  text-align:center;
  font-size:16px;
  color:rgba(31,29,43,.72);
  padding:12px 0 8px;
}

.sc-hero__grid{display:grid; grid-template-columns: 1.25fr .9fr; gap:26px; align-items:start; padding-top:22px}

.sc-h1{font-family:Poppins, Inter, system-ui, sans-serif;
  font-weight:600;
  line-height:1.2;
  font-size:26px;
  margin:0 0 12px;
  letter-spacing:-.2px;}
.sc-lead{font-size:17px; margin:0 0 8px; color:rgba(31,29,43,.84)}
.sc-lead strong{font-weight:600}

.sc-cta-row{display:flex; gap:12px; align-items:center; margin:16px 0 14px; flex-wrap:wrap}

.sc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius: var(--radius-pill);
  border:1px solid rgba(31,29,43,.14);
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  background:rgba(255,255,255,.48);
  backdrop-filter: blur(10px);
}
.sc-btn svg{width:18px;height:18px}

.sc-btn--primary{
  border:none;
  color:#fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-3));
  box-shadow: 0 14px 28px rgba(27, 60, 210, .22);
}

.sc-trust-row{display:flex; gap:18px; align-items:center; flex-wrap:wrap; margin-top:10px; color:rgba(31,29,43,.78); font-size:14px}
.sc-trust-item{display:inline-flex; align-items:center; gap:8px}
.sc-trust-item svg{width:16px; height:16px}

.sc-note{display:flex; align-items:flex-start; gap:10px; margin:14px 0 0; color:rgba(31,29,43,.76); font-size:15px}
.sc-note .star{opacity:.7; margin-top:2px}

/* Quote Card */
.sc-card{
  border-radius: var(--radius);
  background: var(--card);
  border:1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow);
  padding:18px;
}
.sc-card h3{
  font-family:Poppins, Inter, system-ui, sans-serif;
  font-size:24px;
  margin:2px 0 12px;
  letter-spacing:-.2px;
}

.sc-field{position:relative; margin:10px 0}
.sc-field input, .sc-field select{
  width:100%;
  height:42px;
  padding:10px 12px 10px 40px;
  border-radius:12px;
  border:1px solid rgba(31,29,43,.16);
  background: rgba(255,255,255,.72);
  outline:none;
}
.sc-field select{padding-left:40px}
.sc-field input:focus, .sc-field select:focus{border-color: rgba(43,80,227,.45); box-shadow: 0 0 0 4px rgba(43,80,227,.12)}
.sc-field svg{position:absolute; left:12px; top:50%; transform:translateY(-50%); width:16px; height:16px; opacity:.7}

.sc-form-btn{width:100%; margin-top:10px}
.sc-card small{display:block; margin-top:10px; color:rgba(31,29,43,.68)}

.sc-flash{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(35, 168, 111, .10);
  border:1px solid rgba(35, 168, 111, .24);
  color: rgba(16, 96, 61, 1);
  font-size:14px;
}

/* Sections */
.sc-section{padding:26px 0}
.sc-section__title{font-family:Poppins, Inter, system-ui, sans-serif;
  font-weight:600;
  font-size:24px;
  margin:0 0 10px;
  letter-spacing:-.2px;}
.sc-center{text-align:center}
.sc-muted{color:rgba(31,29,43,.76)}

.sc-bullets{display:flex; flex-direction:column; gap:10px; align-items:center; margin-top:10px}
.sc-bullet{display:flex; align-items:center; gap:10px; color:rgba(31,29,43,.82)}
.sc-bullet .star{opacity:.7}

.sc-quote{margin-top:8px; font-size:15px; color:rgba(31,29,43,.78)}

.sc-areas{margin-top:10px}
.sc-areas .areas-line{color:rgba(31,29,43,.78)}
.sc-areas .areas-note{margin-top:8px; color:rgba(31,29,43,.74)}

/* Plans */
.sc-plans{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; margin-top:18px}
.sc-plan{
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
  border:1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}
.sc-plan__head{padding:16px 16px 10px}
.sc-plan__title{font-family:Poppins, Inter, system-ui, sans-serif;
  font-weight:600;
  font-size:18px;
  margin:0;}
.sc-plan__badge{
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  border-radius: var(--radius-pill);
  font-size:13px;
  margin-top:8px;
  background: rgba(255,255,255,.50);
  border:1px solid rgba(255,255,255,.75);
}

.sc-plan__body{padding:0 16px 16px; color:rgba(31,29,43,.78)}
.sc-plan__actions{padding:0 16px 18px; display:flex; gap:10px; flex-wrap:wrap}

.sc-plan--featured{
  background: linear-gradient(180deg, rgba(20,51,187,.92), rgba(20,51,187,.76));
  color:#fff;
}
.sc-plan--featured .sc-plan__body{color:rgba(255,255,255,.85)}
.sc-plan--featured .sc-plan__badge{
  background: rgba(255,255,255,.22);
  border:1px solid rgba(255,255,255,.28);
}
.sc-plan--featured .sc-btn{background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.22); color:#fff}
.sc-plan--featured .sc-btn--primary{background: rgba(255,255,255,.16)}

/* CTA photo section */
.sc-photo-cta{
  position:relative;
  padding:34px 0 38px;
  margin-top:10px;
}
.sc-photo-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--cta-bg-image, none);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  filter:saturate(1.05);
  opacity:1;
  z-index:-2;
}
.sc-photo-cta::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(25, 28, 46, .68), rgba(25, 28, 46, .50));
  z-index:-1;
}

.sc-photo-cta .sc-section__title{color:#fff; font-size:26px; font-weight:600; margin-bottom:8px}
.sc-photo-cta p{color:rgba(255,255,255,.88); margin:0 0 14px}

/* Footer */
.sc-footer{padding:18px 0 28px}
.sc-footer__row{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.sc-foot-links{display:flex; gap:10px; align-items:center; flex-wrap:wrap; color:rgba(31,29,43,.68); font-size:13px}
.sc-foot-links a{color:rgba(31,29,43,.68); text-decoration:none}
.sc-foot-links a:hover{color:rgba(31,29,43,.92)}
.sc-social{display:flex; gap:12px; align-items:center}
.sc-social a{display:inline-flex; width:28px; height:28px; align-items:center; justify-content:center; border-radius:10px; border:1px solid rgba(31,29,43,.14); background: rgba(255,255,255,.5)}
.sc-social svg{width:16px; height:16px; opacity:.75}

/* Mobile sticky CTA */
.sc-stickybar{
  display:none;
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:80;
  padding:10px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(12px);
  border:1px solid rgba(255,255,255,.65);
  box-shadow: 0 18px 42px rgba(18, 21, 43, .18);
}
.sc-stickybar__row{display:flex; gap:10px}
.sc-stickybar .sc-btn{flex:1; justify-content:center; padding:12px 14px}

/* Responsive */
@media (max-width: 980px){
  .sc-hero__grid{grid-template-columns:1fr;}
  .sc-card{max-width:520px}
  }

 (max-width: 860px){
  /* Mobile: no hamburger; brand + phone inline (smaller text) */
  .sc-header__row{flex-wrap:nowrap; gap:10px}
  .sc-nav{display:none !important}
  .sc-menu-btn{display:none !important}

  .sc-brand{
    font-size:14px;
    max-width:60vw;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .sc-callbtn{
    padding:7px 10px;
    font-size:12px;
    gap:6px;
    white-space:nowrap;
  }
  .sc-callbtn svg{width:14px; height:14px}
  .sc-callbtn__text{display:inline !important}
}

@media (max-width: 740px){
      .sc-plans{grid-template-columns:1fr}
}

@media (max-width: 520px){
  .sc-hero__topline{font-size:15px}
  .sc-container{padding:0 18px}
    .sc-cta-row{gap:10px}
    .sc-stickybar{display:block}
  .sc-footer{padding-bottom:92px} /* space for sticky bar */
}
