/* Jr's Hauling & Junk Removal — style.css
   Mobile-first, no frameworks. Brand: black / white / bright orange (#FF7A00). */

:root{
  --black:#141414;
  --black-2:#1e1e1e;
  --orange:#FF7A00;
  --orange-dark:#d96600;
  --white:#ffffff;
  --gray-100:#f5f5f5;
  --gray-300:#d9d9d9;
  --gray-600:#6b6b6b;
  --text:#1c1c1c;
  --radius:10px;
  --shadow:0 6px 24px rgba(0,0,0,.12);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--font);color:var(--text);line-height:1.6;background:var(--white);font-size:17px}
img{max-width:100%;height:auto;display:block}
a{color:var(--orange-dark)}
.container{width:100%;max-width:1120px;margin:0 auto;padding:0 20px}
section{padding:56px 0}

/* ---------- Header ---------- */
.site-header{background:var(--black);color:var(--white);position:sticky;top:0;z-index:100;box-shadow:0 2px 10px rgba(0,0,0,.35)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 20px;max-width:1120px;margin:0 auto}
.brand-logo{height:48px;width:auto;display:block}
.footer-logo{max-width:230px;height:auto;display:block;margin-bottom:14px}
.brand{text-decoration:none;color:var(--white);line-height:1.1;display:flex;align-items:center;gap:10px}
.brand-mark{width:40px;height:40px;flex:0 0 40px;background:var(--orange);border-radius:8px;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:20px;color:var(--black)}
.brand-name{font-weight:900;font-size:19px;letter-spacing:.5px}
.brand-name span{color:var(--orange)}
.brand-sub{font-size:11px;letter-spacing:3px;color:var(--gray-300);font-weight:700}
.header-phone{display:none;background:var(--orange);color:var(--black);font-weight:800;text-decoration:none;padding:10px 18px;border-radius:8px;white-space:nowrap}
.nav-toggle{background:none;border:0;color:var(--white);font-size:28px;cursor:pointer;line-height:1}
.main-nav{display:none;background:var(--black-2);border-top:1px solid #333}
.main-nav.open{display:block}
.main-nav a{display:block;color:var(--white);text-decoration:none;padding:13px 20px;border-bottom:1px solid #2c2c2c;font-weight:600}
.main-nav a:hover,.main-nav a.active{color:var(--orange)}

/* ---------- Buttons ---------- */
.btn{display:inline-block;text-decoration:none;font-weight:800;text-align:center;border-radius:var(--radius);padding:16px 30px;font-size:18px;border:0;cursor:pointer;transition:transform .08s ease, background .15s}
.btn:active{transform:scale(.97)}
.btn-orange{background:var(--orange);color:var(--black)}
.btn-orange:hover{background:var(--orange-dark)}
.btn-outline{background:transparent;color:var(--white);border:2px solid var(--white)}
.btn-outline:hover{background:rgba(255,255,255,.12)}
.btn-dark{background:var(--black);color:var(--white)}
.btn-block{width:100%}
.btn-sm{padding:11px 20px;font-size:16px}

/* ---------- Hero ---------- */
.hero{background:
  radial-gradient(1200px 500px at 80% -10%, rgba(255,122,0,.28), transparent 60%),
  linear-gradient(160deg,#0c0c0c 0%,#1b1b1b 70%,#241407 100%);
  color:var(--white);padding:64px 0 72px;position:relative;overflow:hidden}
.hero::after{content:"";position:absolute;bottom:-2px;left:0;right:0;height:26px;
  background:linear-gradient(135deg, var(--orange) 25%, transparent 25%) -13px 0/26px 26px repeat-x;opacity:.9}
.hero h1{font-size:34px;line-height:1.15;font-weight:900;margin-bottom:14px}
.hero h1 .accent{color:var(--orange)}
.hero-sub{font-size:18px;color:#e8e8e8;max-width:640px;margin-bottom:10px}
.hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 26px}
.badge{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.22);border-radius:999px;padding:8px 16px;font-size:14px;font-weight:700;display:inline-flex;align-items:center;gap:8px}
.badge .stars{color:var(--orange);letter-spacing:2px}
.hero-ctas{display:flex;flex-direction:column;gap:12px;max-width:420px}
.hero-note{margin-top:16px;font-size:14px;color:#cfcfcf}

/* ---------- Sections ---------- */
.section-title{font-size:28px;font-weight:900;margin-bottom:8px;line-height:1.25}
.section-title .accent{color:var(--orange-dark)}
.section-sub{color:var(--gray-600);margin-bottom:28px;max-width:720px}
.section-dark{background:var(--black);color:var(--white)}
.section-dark .section-sub{color:#c9c9c9}
.section-gray{background:var(--gray-100)}
.center{text-align:center}
.center .section-sub{margin-left:auto;margin-right:auto}

/* ---------- Services grid ---------- */
.services-grid{display:grid;grid-template-columns:1fr;gap:16px}
.service-card{background:var(--white);border:1px solid #e6e6e6;border-radius:var(--radius);padding:24px;box-shadow:0 2px 8px rgba(0,0,0,.05);text-decoration:none;color:var(--text);display:block;transition:transform .12s ease, box-shadow .12s ease}
.service-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.service-card h3{font-size:19px;margin:12px 0 6px}
.service-card p{font-size:15px;color:var(--gray-600)}
.service-icon{width:52px;height:52px;border-radius:12px;background:var(--black);display:flex;align-items:center;justify-content:center}
.service-icon svg{width:28px;height:28px;stroke:var(--orange);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.service-link{display:inline-block;margin-top:10px;font-weight:800;color:var(--orange-dark);font-size:15px}

/* ---------- Steps ---------- */
.steps{display:grid;grid-template-columns:1fr;gap:16px;counter-reset:step}
.step{background:var(--white);border-radius:var(--radius);padding:26px;position:relative;box-shadow:0 2px 8px rgba(0,0,0,.06)}
.step-num{width:44px;height:44px;border-radius:50%;background:var(--orange);color:var(--black);font-weight:900;font-size:20px;display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.step h3{margin-bottom:6px;font-size:19px}

/* ---------- Before / After ---------- */
.ba-grid{display:grid;grid-template-columns:1fr;gap:16px}
.ba-card{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:var(--black)}
.ba-ph{aspect-ratio:4/3;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;color:var(--white);text-align:center;padding:20px}
.ba-before{background:linear-gradient(135deg,#3a2410,#6b3d12)}
.ba-after{background:linear-gradient(135deg,#12351f,#1f6b3a)}
.ba-tag{font-size:13px;font-weight:800;letter-spacing:3px;background:rgba(0,0,0,.45);padding:6px 14px;border-radius:999px}
.ba-ph p{font-size:15px;max-width:300px;color:#f0f0f0}
.ba-cap{background:var(--black);color:var(--white);padding:14px 18px;font-size:15px}
.ba-cap strong{color:var(--orange)}

/* ---------- Reviews ---------- */
.reviews-grid{display:grid;grid-template-columns:1fr;gap:16px}
.review-card{background:var(--white);border-radius:var(--radius);padding:24px;box-shadow:0 2px 8px rgba(0,0,0,.06);border-top:4px solid var(--orange)}
.review-stars{color:var(--orange);letter-spacing:3px;font-size:18px;margin-bottom:10px}
.review-card p{font-size:16px;margin-bottom:12px}
.review-name{font-weight:800;font-size:14px;color:var(--gray-600)}
.google-badge{display:inline-flex;align-items:center;gap:10px;background:var(--white);border:1px solid #e0e0e0;border-radius:999px;padding:10px 20px;font-weight:800;box-shadow:0 2px 8px rgba(0,0,0,.06);margin-bottom:24px}
.google-badge .g{font-weight:900;font-size:20px}
.google-badge .g span:nth-child(1){color:#4285F4}.google-badge .g span:nth-child(2){color:#EA4335}
.google-badge .g span:nth-child(3){color:#FBBC05}.google-badge .g span:nth-child(4){color:#4285F4}
.google-badge .g span:nth-child(5){color:#34A853}.google-badge .g span:nth-child(6){color:#EA4335}

/* ---------- Towns ---------- */
.town-list{display:flex;flex-wrap:wrap;gap:10px;list-style:none}
.town-list li{background:var(--black);color:var(--white);padding:10px 18px;border-radius:999px;font-weight:700;font-size:15px}
.town-list li.hl{background:var(--orange);color:var(--black)}

/* ---------- FAQ ---------- */
.faq-item{background:var(--white);border:1px solid #e6e6e6;border-radius:var(--radius);margin-bottom:12px;overflow:hidden}
.faq-item summary{cursor:pointer;padding:18px 20px;font-weight:800;font-size:17px;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:12px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:24px;color:var(--orange-dark);font-weight:900;flex:0 0 auto}
.faq-item[open] summary::after{content:"–"}
.faq-item .faq-body{padding:0 20px 20px;color:#444}

/* ---------- Quote form ---------- */
.quote-wrap{display:grid;grid-template-columns:1fr;gap:28px}
.quote-form{background:var(--white);border-radius:var(--radius);padding:28px;box-shadow:var(--shadow);border-top:6px solid var(--orange)}
.form-row{margin-bottom:16px}
.form-row label{display:block;font-weight:700;margin-bottom:6px;font-size:15px}
.form-row input,.form-row select,.form-row textarea{width:100%;padding:13px 14px;border:2px solid var(--gray-300);border-radius:8px;font-size:16px;font-family:inherit}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{outline:none;border-color:var(--orange)}
.form-row textarea{min-height:110px;resize:vertical}
.form-note{font-size:14px;color:var(--gray-600);margin-top:12px}
.quote-side h3{font-size:22px;margin-bottom:10px}
.quote-side ul{list-style:none;margin:16px 0}
.quote-side li{padding:8px 0 8px 30px;position:relative}
.quote-side li::before{content:"✓";position:absolute;left:0;color:var(--orange-dark);font-weight:900}
.big-phone{font-size:30px;font-weight:900;color:var(--black);text-decoration:none}
.big-phone:hover{color:var(--orange-dark)}

/* ---------- Footer ---------- */
.site-footer{background:#0c0c0c;color:#d5d5d5;padding:48px 0 110px;font-size:15px}
.footer-grid{display:grid;grid-template-columns:1fr;gap:28px}
.site-footer h4{color:var(--white);margin-bottom:12px;font-size:17px}
.site-footer a{color:#d5d5d5;text-decoration:none}
.site-footer a:hover{color:var(--orange)}
.footer-nav{list-style:none}
.footer-nav li{margin-bottom:8px}
.footer-bottom{margin-top:32px;padding-top:20px;border-top:1px solid #2a2a2a;font-size:13px;color:#8a8a8a}

/* ---------- Sticky mobile call bar ---------- */
.call-bar{position:fixed;bottom:0;left:0;right:0;z-index:200;display:flex;background:var(--black);border-top:2px solid var(--orange);box-shadow:0 -4px 16px rgba(0,0,0,.35)}
.call-bar a{flex:1;text-align:center;padding:15px 10px;font-weight:900;font-size:17px;text-decoration:none}
.call-bar .call-btn{background:var(--orange);color:var(--black)}
.call-bar .quote-btn{background:var(--black);color:var(--white)}

/* ---------- Content pages ---------- */
.page-hero{background:linear-gradient(160deg,#0c0c0c,#241407);color:var(--white);padding:52px 0}
.page-hero h1{font-size:32px;font-weight:900;line-height:1.2;margin-bottom:10px}
.page-hero h1 .accent{color:var(--orange)}
.page-hero p{color:#dcdcdc;max-width:700px}
.breadcrumbs{font-size:14px;color:#9a9a9a;margin-bottom:14px}
.breadcrumbs a{color:#c9c9c9;text-decoration:none}
.prose{max-width:760px}
.prose h2{font-size:24px;margin:34px 0 12px;font-weight:900}
.prose h3{font-size:19px;margin:24px 0 8px}
.prose p{margin-bottom:14px}
.prose ul{margin:0 0 16px 22px}
.prose li{margin-bottom:8px}
.cta-band{background:var(--orange);color:var(--black);border-radius:var(--radius);padding:32px 26px;margin:40px 0;text-align:center}
.cta-band h2{font-size:24px;margin-bottom:8px}
.cta-band p{margin-bottom:18px;font-weight:600}
.checklist{list-style:none;margin:0 0 18px;padding:0;display:grid;grid-template-columns:1fr;gap:8px}
.checklist li{background:var(--gray-100);border-radius:8px;padding:12px 14px 12px 40px;position:relative;font-weight:600}
.checklist li::before{content:"✓";position:absolute;left:14px;color:var(--orange-dark);font-weight:900}
.town-cards{display:grid;grid-template-columns:1fr;gap:14px}
.town-card{border:1px solid #e6e6e6;border-radius:var(--radius);padding:20px}
.town-card h3{margin-bottom:6px}
.town-card p{font-size:15px;color:var(--gray-600)}

/* ---------- Larger screens ---------- */
@media (min-width:720px){
  .hero h1{font-size:46px}
  .hero-ctas{flex-direction:row}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(3,1fr)}
  .ba-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:repeat(2,1fr)}
  .checklist{grid-template-columns:repeat(2,1fr)}
  .town-cards{grid-template-columns:repeat(2,1fr)}
  .quote-wrap{grid-template-columns:1.1fr .9fr}
  .footer-grid{grid-template-columns:repeat(3,1fr)}
}
@media (min-width:900px){
  .nav-toggle{display:none}
  .main-nav{display:block;background:none;border:0}
  .main-nav a{display:inline-block;border:0;padding:10px 12px}
  .header-phone{display:inline-block}
  .header-inner nav{display:flex;align-items:center}
}
@media (min-width:1024px){
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .reviews-grid{grid-template-columns:repeat(3,1fr)}
  .town-cards{grid-template-columns:repeat(3,1fr)}
  .hero h1{font-size:54px}
}
@media (min-width:900px){
  .call-bar{display:none}
  .site-footer{padding-bottom:48px}
}
