/* Quick Clean Services - responsive single-page site
   Inspired by the HomeGuard Vision layout: bold hero, clean cards, alternating sections, contact form at end.
*/

:root{
  --bg:#0b1220;
  --bg2:#0e1a30;
  --card:#101a2f;
  --card2:#0f172a;
  --text:#e8eefc;
  --muted:#b7c4e6;
  --line:rgba(255,255,255,.10);
  --accent:#22c3ee;
  --accent2:#7c3aed;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 10% -10%, rgba(34,195,238,.35), transparent 60%),
    radial-gradient(900px 600px at 95% 0%, rgba(124,58,237,.30), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #070b14 100%);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.muted{color:var(--muted)}
.accent{color:var(--accent)}

/* topbar */
.topbar{
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:10px 0;
}
.pill{
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-size:12px;
}
.topbar-sep{opacity:.6}
.topbar-link{font-weight:600; letter-spacing:.2px}

/* header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 0}
.brand-logo{width:40px; height:40px}
.brand-text{min-width:0}
.brand-name{font-weight:800; letter-spacing:.2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.brand-tagline{font-size:12px; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

/* nav */
.nav{display:flex; align-items:center; gap:10px}
.nav-link{
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  border: 1px solid transparent;
}
.nav-link:hover{color:var(--text); border-color: var(--line); background: rgba(255,255,255,.03)}
.nav-cta{
  color:var(--text);
  background: linear-gradient(135deg, rgba(34,195,238,.25), rgba(124,58,237,.25));
  border-color: rgba(255,255,255,.12);
}
.nav-toggle{
  display:none;
  width:46px; height:46px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--text);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  margin:5px auto;
  background: rgba(232,238,252,.9);
  border-radius:2px;
}

/* hero */
.hero{
  padding: 48px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items:center;
}
.hero-copy h1{
  margin:0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16px;
  line-height:1.6;
}
.hero-actions{
  display:flex; gap:12px; flex-wrap:wrap;
  margin: 18px 0 18px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btn-primary{
  border-color: rgba(34,195,238,.45);
  background: linear-gradient(135deg, rgba(34,195,238,.28), rgba(124,58,237,.22));
  box-shadow: 0 12px 40px rgba(34,195,238,.08);
}
.btn-ghost{color:var(--text)}
.btn:focus{outline: 3px solid rgba(34,195,238,.25); outline-offset: 2px}

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top: 14px;
}
.trust-item{
  display:flex; gap:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 12px;
}
.trust-icon{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: rgba(34,195,238,.12);
  border: 1px solid rgba(34,195,238,.20);
}
.trust-title{font-weight:800}
.trust-sub{font-size:12px; color:var(--muted)}

.hero-media{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: radial-gradient(600px 300px at 40% 0%, rgba(34,195,238,.16), transparent 55%),
              radial-gradient(500px 340px at 90% 15%, rgba(124,58,237,.18), transparent 60%),
              rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  overflow:hidden;
  padding: 18px;
}
.hero-badge{
  position:absolute;
  right:14px; bottom:14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.80);
  padding: 10px 12px;
}
.hero-badge-title{font-weight:900}
.hero-badge-sub{font-size:12px; color:var(--muted)}

/* sections */
.section{padding: 56px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 100%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin:0 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
}
.section-head p{margin:0; color:var(--muted); line-height:1.6}

/* cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.card-icon{
  width:52px; height:52px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(34,195,238,.10);
  border:1px solid rgba(34,195,238,.18);
  margin-bottom: 10px;
}
.card h3{margin: 8px 0 8px; font-size:18px}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.6}

.checklist{
  margin:0; padding-left: 16px;
  color: var(--text);
}
.checklist li{margin: 6px 0; color: var(--muted)}
.checklist.big li{margin: 9px 0}

/* split */
.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}
.panel{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 18px;
}
.panel h3{margin: 6px 0 12px}
.panel-call{
  margin-top: 16px;
  padding-top: 14px;
  border-top:1px solid var(--line);
}
.panel-call-title{font-weight:800}
.panel-call-link{
  display:inline-block;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing:.4px;
  color: var(--accent);
}
.panel-call-sub{font-size:12px; color:var(--muted); margin-top: 2px}

.steps{display:grid; gap:12px; margin-top: 12px}
.step{
  display:flex; gap:12px;
  padding: 14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.step-num{
  width:32px; height:32px;
  border-radius: 12px;
  display:grid; place-items:center;
  font-weight:900;
  background: rgba(124,58,237,.15);
  border:1px solid rgba(124,58,237,.20);
}
.step-title{font-weight:900}
.step-text{color:var(--muted); font-size:14px; line-height:1.6; margin-top: 2px}
.mini-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top: 16px}

/* gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.shot{
  margin:0;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.shot img{width:100%; height:auto}
.shot figcaption{
  padding: 10px 12px;
  color: var(--muted);
  font-weight:700;
  font-size: 13px;
}

/* accordion */
.accordion{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(255,255,255,.02);
}
.acc-item{
  width:100%;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 16px;
  border:0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 900;
  cursor:pointer;
}
.acc-item:hover{background: rgba(255,255,255,.03)}
.acc-panel{
  padding: 0 16px 14px;
  color: var(--muted);
  line-height:1.6;
  display:none;
}
.acc-item[aria-expanded="true"] + .acc-panel{display:block}
.acc-plus{opacity:.8; font-size:18px}

/* contact */
.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
  align-items:start;
}
.contact-card{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 18px;
}
.contact-lines{display:grid; gap:10px; margin-top: 12px}
.contact-line{
  display:flex; gap:10px; align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.contact-ico{width:22px; text-align:center}
.note{
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border:1px solid rgba(34,195,238,.22);
  background: rgba(34,195,238,.08);
  color: var(--text);
  line-height:1.5;
}

.form{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 18px;
}
label{display:block; font-weight:800; margin-bottom: 12px}
input, select, textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.55);
  color: var(--text);
  outline: none;
}
input::placeholder, textarea::placeholder{color: rgba(183,196,230,.75)}
input:focus, select:focus, textarea:focus{
  border-color: rgba(34,195,238,.35);
  box-shadow: 0 0 0 3px rgba(34,195,238,.18);
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 6px}
.form-help{margin: 12px 0 0; font-size: 12px; line-height:1.6}
.form-toast{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(34,195,238,.25);
  background: rgba(34,195,238,.10);
  color: var(--text);
}

/* footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 24px 0 18px;
  background: rgba(255,255,255,.02);
}
.footer-inner{
  display:flex; align-items:flex-start; justify-content:space-between; gap: 16px;
  flex-wrap:wrap;
}
.footer-brand{font-weight:900; letter-spacing:.2px}
.footer-links{display:flex; gap: 10px; flex-wrap:wrap}
.footer-links a{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid transparent;
  color: var(--muted);
}
.footer-links a:hover{border-color: var(--line); background: rgba(255,255,255,.03); color: var(--text)}
.footer-bottom{margin-top: 12px; font-size: 12px}

/* responsive */
@media (max-width: 980px){
  .hero-grid, .split{grid-template-columns: 1fr}
  .hero{padding-top: 34px}
  .hero-media{order:-1}
  .trust-row{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .contact-grid{grid-template-columns: 1fr}
}
@media (max-width: 760px){
  .topbar-left{display:none}
  .nav{position:fixed; inset: 70px 14px auto 14px; display:none; flex-direction:column; gap: 8px;
       padding: 12px; border-radius: 18px; border:1px solid var(--line);
       background: rgba(11,18,32,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow)}
  .nav.open{display:flex}
  .nav-link{width:100%; text-align:center}
  .nav-toggle{display:inline-block}
  .form-row{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
}


/* Anti-spam honeypot */
.hp{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden}



/* Bottom credit strip (text) */
.site-credit{
  display:flex;
  justify-content:center;
  padding: 14px 0 22px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid var(--line);
}
.site-credit span{
  color: rgba(183,196,230,0.95);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;
}
.site-credit a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,195,238,0.35);
}
.site-credit a:hover{color: var(--accent)}

/* ===== Universal top spacing fix (V1) ===== */
.topbar-inner { padding: 6px 0 !important; }
.header-inner { padding: 10px 0 !important; }
.hero { padding-top: 28px !important; padding-bottom: 8px !important; }

.brand-logo { width: 38px !important; height: 38px !important; }
.nav-link { padding: 9px 11px !important; }

@media (max-width: 760px) {
  .topbar-inner { padding: 6px 0 !important; }
  .header-inner { padding: 10px 0 !important; }
  .hero { padding-top: 20px !important; }

  /* dropdown starts below shorter header */
  .nav { inset: 62px 14px auto 14px !important; }
}

/* ===== V1: remove extra top spacing (desktop + mobile) ===== */

/* Make the topbar shorter */
.topbar-inner{
  padding: 2px 0 !important;
}

/* Make sticky header shorter */
.header-inner{
  padding: 6px 0 !important;
}

/* Reduce logo/text block height */
.brand-logo{
  width: 36px !important;
  height: 36px !important;
}
.brand-tagline{
  margin-top: 0 !important;
  line-height: 1.1 !important;
}

/* Pull hero up (space below header) */
.hero{
  padding-top: 18px !important;
}

/* Mobile dropdown menu position (header shorter now) */
@media (max-width: 760px){
  .nav{
    inset: 56px 14px auto 14px !important;
  }
  .hero{
    padding-top: 14px !important;
  }
}
/* Move ONLY the icon (logo) to the right */
.brand-logo{
  margin-left: 8px;
}

/* Move ONLY the text slightly */
.brand-text{
  margin-left: 2px;
}

/* Move hamburger left */
.nav-toggle{
  margin-right: 10px;
}
/* Footer legal + credit lines */
.footer-legal{
  margin-top: 8px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.footer-legal a{
  color: var(--muted);
  font-weight:700;
  text-decoration:none;
  border-bottom: 1px solid transparent;
}
.footer-legal a:hover{
  color: var(--text);
  border-bottom-color: rgba(34,195,238,.35);
}
.footer-sep{ color: var(--muted); opacity:.8; }

.footer-credit{
  margin-top: 8px;
  font-size: 12px;
}
.footer-credit a{
  color: var(--text);
  font-weight:800;
  text-decoration:none;
  border-bottom: 1px solid rgba(34,195,238,.35);
}
.footer-credit a:hover{ color: var(--accent); }

/* Makes anchor scrolling stop below the sticky header */
:target { scroll-margin-top: 90px; }
#top { scroll-margin-top: 0; }


/* =========================
   THEME V5: Grey / White (Clean Modern)
   Paste at bottom of styles-v5.css
   ========================= */
:root{
  --bg:#f5f6f8;
  --bg2:#eef0f3;
  --card:#ffffff;
  --card2:#ffffff;
  --text:#0f172a;     /* dark slate */
  --muted:#475569;    /* slate */
  --line:rgba(15,23,42,.12);
  --accent:#2563eb;   /* blue */
  --accent2:#64748b;  /* grey-slate */
  --shadow: 0 18px 60px rgba(15,23,42,.10);
}

/* Page background */
body{
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(37,99,235,.14), transparent 60%),
    radial-gradient(900px 620px at 95% 0%, rgba(100,116,139,.14), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
  color: var(--text);
}

/* Topbar + header (light glass) */
.topbar{
  background: rgba(255,255,255,.75) !important;
  border-bottom: 1px solid var(--line) !important;
}
.header{
  background: rgba(255,255,255,.88) !important;
  border-bottom: 1px solid var(--line) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

/* Brand + nav colors */
.brand-tagline{ color: var(--muted) !important; }
.nav-link{ color: var(--muted) !important; }
.nav-link:hover{ color: var(--text) !important; }
.nav-cta{
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(15,23,42,.92)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(37,99,235,.18);
}

/* Cards/panels/forms — true light cards */
.card, .panel, .contact-card, .form, .accordion, .hero-media, .trust-item, .step, .shot{
  background: rgba(255,255,255,.94) !important;
  border-color: rgba(15,23,42,.10) !important;
  box-shadow: 0 16px 46px rgba(15,23,42,.08) !important;
}

/* Section alternate background */
.section-alt{
  background: linear-gradient(180deg, rgba(15,23,42,.03) 0%, rgba(15,23,42,.01) 100%) !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
}

/* Buttons */
.btn{
  background: rgba(15,23,42,.04) !important;
  border-color: rgba(15,23,42,.12) !important;
  color: var(--text) !important;
}
.btn-primary{
  background: linear-gradient(135deg, rgba(37,99,235,.26), rgba(100,116,139,.18)) !important;
  border-color: rgba(37,99,235,.35) !important;
  color: var(--text) !important;
}
.btn-ghost{ background: rgba(15,23,42,.03) !important; }

/* Inputs */
input, select, textarea{
  background: rgba(255,255,255,.98) !important;
  color: var(--text) !important;
  border-color: rgba(15,23,42,.16) !important;
}
input::placeholder, textarea::placeholder{
  color: rgba(71,85,105,.55) !important;
}

/* Hero badge: readable */
.hero-badge{
  background: rgba(15,23,42,.92) !important;
  border-color: rgba(255,255,255,.18) !important;
}
.hero-badge-title{ color:#fff !important; }
.hero-badge-sub{ color: rgba(255,255,255,.75) !important; }

/* Footer */
.footer{
  background: rgba(255,255,255,.80) !important;
  border-top: 1px solid var(--line) !important;
}
.footer-links a{ color: var(--muted) !important; }
.footer-links a:hover{ color: var(--text) !important; }
