
:root{
  --orange:#ff6a00;
  --orange2:#ff8a1f;
  --black:#0b0b0b;
  --charcoal:#171717;
  --cream:#f7f4ee;
  --white:#fff;
  --muted:#b9b9b9;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--black);
  color:var(--white);
  line-height:1.55;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:min(92%,var(--max));margin:auto}
.topbar{
  background:var(--orange);
  color:#111;
  text-align:center;
  font-weight:900;
  padding:.55rem 1rem;
  letter-spacing:.02em;
}
header{
  position:sticky;top:0;z-index:50;
  background:rgba(11,11,11,.95);
  border-bottom:1px solid #2a2a2a;
  backdrop-filter:blur(10px);
}
.nav{
  min-height:74px;display:flex;align-items:center;justify-content:space-between;gap:1rem;
}
.brand{
  text-decoration:none;font-weight:1000;font-size:1.35rem;letter-spacing:.04em;
}
.brand span{color:var(--orange)}
nav{display:flex;gap:1.1rem;align-items:center}
nav a{text-decoration:none;color:#eee;font-weight:700;font-size:.95rem}
nav a:hover{color:var(--orange)}
.nav-cta,.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:8px;text-decoration:none;font-weight:900;
  padding:.85rem 1.1rem;border:2px solid transparent;
}
.nav-cta,.btn-primary{background:var(--orange);color:#111}
.btn-primary:hover,.nav-cta:hover{background:var(--orange2)}
.btn-outline{border-color:var(--orange);color:var(--white)}
.btn-outline:hover{background:var(--orange);color:#111}
.hero{
  position:relative;overflow:hidden;
  background:
    linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.72),rgba(0,0,0,.15)),
    url('assets/booher-services-flyer.jpg') center/cover;
  min-height:680px;display:flex;align-items:center;
}
.hero:after{
  content:"";position:absolute;inset:auto 0 0 0;height:120px;
  background:linear-gradient(transparent,var(--black));
}
.hero-content{position:relative;z-index:2;max-width:760px;padding:5rem 0 7rem}
.eyebrow{
  display:inline-block;background:var(--orange);color:#111;
  font-weight:1000;padding:.38rem .65rem;transform:rotate(-1deg);
  margin-bottom:1.1rem;letter-spacing:.05em;
}
h1,h2,h3{line-height:1.05;margin-top:0}
h1{
  font-size:clamp(3rem,8vw,6.7rem);
  text-transform:uppercase;letter-spacing:-.045em;margin-bottom:1rem;
  text-shadow:0 6px 30px rgba(0,0,0,.6);
}
h1 .accent,h2 .accent{color:var(--orange)}
.hero p{font-size:clamp(1.05rem,2vw,1.35rem);max-width:680px;color:#eee}
.actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1.6rem}
.trust-row{
  display:flex;flex-wrap:wrap;gap:1.4rem;margin-top:2rem;color:#f3f3f3;font-weight:800
}
section{padding:5rem 0}
.section-title{font-size:clamp(2.2rem,5vw,4.4rem);text-transform:uppercase;margin-bottom:.8rem}
.section-lead{color:#c9c9c9;font-size:1.1rem;max-width:760px;margin-bottom:2.2rem}
.grid{display:grid;gap:1.2rem}
.cards{grid-template-columns:repeat(3,1fr)}
.card{
  background:linear-gradient(180deg,#1b1b1b,#121212);
  border:1px solid #303030;border-radius:14px;padding:1.5rem;
  box-shadow:0 18px 45px rgba(0,0,0,.18)
}
.card .icon{font-size:2rem;margin-bottom:.8rem}
.card h3{font-size:1.35rem;margin-bottom:.55rem}
.card p{color:#c8c8c8;margin:0}
.light{background:var(--cream);color:#111}
.light .section-lead{color:#4e4e4e}
.split{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}
.option{
  border-radius:18px;padding:2rem;border:3px solid #222;background:#fff;
}
.option.dark{background:#111;color:#fff;border-color:var(--orange)}
.option .number{
  width:48px;height:48px;border-radius:50%;display:grid;place-items:center;
  background:var(--orange);font-weight:1000;color:#111;margin-bottom:1rem;
}
.price-box{
  background:#111;color:#fff;border-left:8px solid var(--orange);
  padding:1.5rem;border-radius:12px;margin-top:1.2rem;
}
.price{font-size:2.6rem;font-weight:1000;color:var(--orange)}
.checks{padding:0;list-style:none}
.checks li{margin:.6rem 0;padding-left:1.5rem;position:relative}
.checks li:before{content:"✓";position:absolute;left:0;color:var(--orange);font-weight:1000}
.review-grid{grid-template-columns:repeat(3,1fr)}
.stars{color:var(--orange);font-size:1.2rem;letter-spacing:.08em}
.review{font-size:1.04rem}
.cta{
  background:linear-gradient(135deg,var(--orange),#ff9a32);
  color:#111;border-radius:20px;padding:2.5rem;
  display:flex;justify-content:space-between;align-items:center;gap:1rem
}
.cta h2{margin-bottom:.3rem}
.form-wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:1.5rem}
form{background:#171717;padding:1.5rem;border-radius:14px;border:1px solid #303030}
label{display:block;font-weight:800;margin:.8rem 0 .35rem}
input,select,textarea{
  width:100%;border:1px solid #444;background:#0d0d0d;color:#fff;
  padding:.9rem;border-radius:8px;font:inherit
}
textarea{min-height:130px;resize:vertical}
button{cursor:pointer;font:inherit}
.notice{font-size:.9rem;color:#aaa;margin-top:.7rem}
.contact-panel{background:var(--orange);color:#111;padding:1.6rem;border-radius:14px}
.contact-panel a{font-weight:1000}
footer{padding:2.4rem 0;border-top:1px solid #2a2a2a;color:#aaa}
.footer-grid{display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.mobile-actions{
  display:none;position:fixed;left:0;right:0;bottom:0;z-index:80;
  background:#0c0c0c;border-top:1px solid #333;padding:.55rem;gap:.55rem
}
.mobile-actions a{flex:1}
.chat-launch{
  position:fixed;right:18px;bottom:22px;z-index:90;
  width:58px;height:58px;border-radius:50%;border:0;background:var(--orange);
  color:#111;font-size:1.5rem;font-weight:1000;box-shadow:0 10px 30px rgba(0,0,0,.4)
}
.chatbox{
  display:none;position:fixed;right:18px;bottom:92px;z-index:95;
  width:min(360px,calc(100vw - 36px));background:#111;border:1px solid #3b3b3b;
  border-radius:15px;overflow:hidden;box-shadow:0 22px 60px rgba(0,0,0,.55)
}
.chatbox.open{display:block}
.chat-head{background:var(--orange);color:#111;padding:1rem;font-weight:1000}
.chat-body{padding:1rem}
.chat-body p{color:#ddd}
.chat-body select,.chat-body input,.chat-body textarea{margin-bottom:.7rem}
.page-hero{padding:5rem 0 3.5rem;background:linear-gradient(135deg,#0b0b0b,#242424)}
.page-hero h1{font-size:clamp(2.7rem,7vw,5.4rem)}
.small{font-size:.92rem;color:#aaa}
@media(max-width:900px){
  nav a:not(.nav-cta){display:none}
  .cards,.review-grid{grid-template-columns:1fr 1fr}
  .split,.form-wrap{grid-template-columns:1fr}
  .hero{min-height:610px;background-position:62% center}
}
@media(max-width:640px){
  .cards,.review-grid{grid-template-columns:1fr}
  .hero-content{padding:4rem 0 6.5rem}
  .hero{background-position:68% center}
  .cta{align-items:flex-start;flex-direction:column}
  .mobile-actions{display:flex}
  .chat-launch{bottom:78px}
  .chatbox{bottom:145px}
  body{padding-bottom:66px}
}
