:root{
  --navy:#0f1e2b;
  --red:#b21f2d;
  --gold:#d8b45a;
  --ink:#111827;
  --muted:#6b7280;
  --bg:#f6f3ee;
  --card:#ffffff;
  --border:#e5e7eb;
  --shadow:0 12px 30px rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
}

img{max-width:100%;height:auto;border-radius:12px}
a{text-decoration:none;color:inherit}
.container{width:min(1100px,92%);margin:0 auto}

/* =============================
   STICKY TOP
============================= */

.sticky-top{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:var(--navy);color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:10px 0;
}
.brand-name{font-weight:800}
.brand-sub{font-size:12px;color:rgba(255,255,255,.75)}
.top-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.tel{display:flex;gap:6px;align-items:baseline}
.tel-number{font-weight:800}

main{padding-top:70px;padding-bottom:80px}

/* =============================
   HERO SECTION
============================= */

.hero{
  margin-bottom: 32px;
  position:relative;
  min-height:680px;
  display:flex;
  align-items:center;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:url("assets/bath-hero.webp") center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(15,30,43,.88) 0%, rgba(15,30,43,.55) 45%, rgba(15,30,43,.25) 100%);
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  align-items:center;
}

.hero-copy{color:#fff}

.hero-h1{
  font-size:44px;
  font-weight:900;
  margin:0 0 18px;
  line-height:1.1;
}

/* =============================
   OFFER
============================= */

.offer{
  background:linear-gradient(135deg,#b21f2d 0%,#8f1823 100%);
  border-radius:16px;
  padding:18px 22px;
  margin:16px 0 24px;
  border:2px solid rgba(255,255,255,.3);
  position:relative;
}

.offer::before{
  content:"LIMITED TIME";
  position:absolute;
  top:-12px;
  left:20px;
  background:var(--gold);
  color:#1b1b1b;
  font-size:11px;
  font-weight:900;
  padding:4px 10px;
  border-radius:999px;
}

.offer-title{
  font-size:24px;
  font-weight:900;
  color:#fff;
}

.offer-sub{
  font-size:14px;
  margin-top:6px;
  color:rgba(255,255,255,.95);
}

/* =============================
   TRUST PILLS
============================= */

.trust-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:20px 0;
}

.trust-row span{
  background:rgba(255,255,255,.22);
  color:#fff;
  font-weight:800;
  font-size:14px;
  padding:9px 18px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.45);
}

/* =============================
   HERO FORM FIXED
============================= */

.card{
  background:#ffffff;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
  padding:20px;
}

.card-head{
  margin-bottom:12px;
}

.card-title{
  font-size:20px;
  font-weight:900;
}

.card-sub{
  font-size:13px;
  color:var(--muted);
  margin-top:4px;
}

.form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.form input{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--border);
  font-size:15px;
}

.form input:focus{
  outline:none;
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(178,31,45,.15);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:10px;
  font-weight:900;
  cursor:pointer;
  border:none;
}

.btn-red{
  background:var(--red);
  color:#fff;
}

.btn-gold{
  background:var(--gold);
  color:#111;
}

.btn-outline{
  background:transparent;
  border:2px solid #fff;
  color:#fff;
}

.btn-full{
  width:100%;
}

/* =============================
   SERVICE SECTION
============================= */

.section{padding:50px 0}

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}

.checks{
  list-style:none;
  padding:0;
  margin-top:20px;
  display:grid;
  gap:16px;
}

.checks li{
  background:#fff;
  border-left:6px solid var(--red);
  padding:16px 18px;
  border-radius:12px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* =============================
   REVIEWS + GALLERY
============================= */

.gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

/* =============================
   STICKY BOTTOM
============================= */

.sticky-bottom{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:rgba(15,30,43,.95);
  padding:12px 0;
}

.bottombar{
  display:flex;
  justify-content:center;
  gap:12px;
}

/* =============================
   RESPONSIVE
============================= */

@media(max-width:940px){
  .hero-grid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
}


/* =============================
   HERO TOP SPACING FIX
   Prevents hero text hiding under sticky header
============================= */

main{
  padding-top:110px; /* increased from ~70px */
  padding-bottom:80px;
}

@media(max-width:940px){
  main{
    padding-top:120px;
  }
}


/* =============================
   FIX: REMOVE TOP GAP + SMALLER PADDING
   Keeps hero background flush to top while pushing hero text below sticky header
============================= */

main{
  padding-top:70px !important;   /* small, prevents big blank band */
  padding-bottom:80px !important;
}

/* Pull hero background up to remove blank strip, but keep text pushed down */
.hero{
  margin-top:-70px;
  padding-top:70px;
}

@media (max-width: 940px){
  main{ padding-top:78px !important; }
  .hero{ margin-top:-78px; padding-top:78px; }
}


/* =============================
   HERO SPACING - SLIGHTLY MORE
============================= */

main{
  padding-top:82px !important;
}

.hero{
  margin-top:-82px;
  padding-top:82px;
}

@media (max-width: 940px){
  main{ padding-top:90px !important; }
  .hero{ margin-top:-90px; padding-top:90px; }
}


/* =============================
   HERO SPACING - HAIR MORE
============================= */

main{
  padding-top:90px !important;
}

.hero{
  margin-top:-90px;
  padding-top:90px;
}

@media (max-width: 940px){
  main{ padding-top:98px !important; }
  .hero{ margin-top:-98px; padding-top:98px; }
}


/* =============================
   NEW STICKY TOP (ROOTER-STYLE)
   Inline row + promo pill + phone + estimate
============================= */

:root{
  --stickyH: 118px;
}

.sticky-top{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:transparent !important;
  border-bottom:none !important;
  box-shadow:0 10px 26px rgba(0,0,0,.14);
}

.topbar-main{
  background:#ffffff;
  border-bottom:1px solid rgba(17,24,39,.08);
}

.topbar-main-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}

.brand-inline{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:240px;
}

.brand-mark{
  width:40px;height:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:1000;
  letter-spacing:.5px;
  color:#fff;
  background:linear-gradient(135deg,var(--red) 0%, #7f1220 100%);
  box-shadow:0 10px 18px rgba(178,31,45,.25);
  flex:0 0 auto;
}

.brand-text .brand-name{
  color:#0f1e2b;
  font-weight:900;
  line-height:1.1;
}

.brand-text .brand-sub{
  color:#6b7280;
  font-size:12px;
  font-weight:700;
  margin-top:2px;
}

.promo-pill{
  display:flex;
  align-items:baseline;
  gap:10px;
  padding:10px 16px;
  border-radius:14px;
  background:linear-gradient(135deg,#b21f2d 0%, #8f1823 100%);
  color:#fff;
  box-shadow:0 12px 26px rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.22);
  white-space:nowrap;
}

.promo-kicker{
  font-size:12px;
  font-weight:900;
  opacity:.92;
  letter-spacing:.35px;
}

.promo-amount{
  font-size:30px;
  font-weight:1000;
  line-height:1;
  letter-spacing:.2px;
}

.promo-line{
  font-size:12px;
  font-weight:800;
  opacity:.95;
}

.top-ctas{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  min-width:280px;
}

.btn-phone{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,#2563eb 0%, #1d4ed8 100%);
  color:#fff;
  font-weight:1000;
  box-shadow:0 12px 22px rgba(37,99,235,.25);
  border:1px solid rgba(255,255,255,.18);
}

.btn-phone-icon{
  width:28px;height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.16);
  font-size:14px;
  line-height:1;
}

.btn-schedule{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background:#0f1e2b;
  color:#fff;
  font-weight:1000;
  border:1px solid rgba(15,30,43,.25);
  box-shadow:0 12px 22px rgba(0,0,0,.18);
}

.btn-phone:hover, .btn-schedule:hover{
  transform:translateY(-1px);
  filter:brightness(.98);
}

.topbar-sub{
  background:var(--red);
}

.topbar-sub-inner{
  color:#fff;
  font-weight:800;
  text-align:center;
  padding:10px 0;
  font-size:14px;
}

/* Spacing so hero doesn't hide under sticky */
main{
  padding-top:var(--stickyH) !important;
}

/* Keep hero background flush (no white strip) while respecting sticky */
.hero{
  margin-top:calc(var(--stickyH) * -1);
  padding-top:var(--stickyH);
}

/* Mobile */
@media (max-width: 940px){
  :root{ --stickyH: 134px; }

  .topbar-main-inner{
    flex-wrap:wrap;
    justify-content:center;
  }

  .brand-inline{
    min-width:auto;
    justify-content:center;
    width:100%;
  }

  .promo-pill{
    width:100%;
    justify-content:center;
  }

  .top-ctas{
    width:100%;
    justify-content:center;
  }

  .topbar-sub-inner{
    font-size:13px;
    padding:9px 0;
  }
}



/* =====================================
   MOBILE TOP BAR HORIZONTAL ALIGNMENT
   ===================================== */

@media (max-width: 768px) {

  .topbar-main-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px;
  }

  .brand-inline {
    display: flex !important;
    align-items: center !important;
  }

  .brand-text {
    display: none !important; /* Hide subtitle text on mobile to keep it tight */
  }

  .btn-phone {
    display: flex !important;
    align-items: center !important;
    white-space: nowrap;
    padding: 8px 14px !important;
    font-size: 14px !important;
  }

}


/* =====================================
   MOBILE STICKY FINAL BEHAVIOR
   ===================================== */

@media (max-width: 768px) {

  /* Hide promo offer on mobile */
  .promo-pill {
    display: none !important;
  }

  /* Hide estimate button on mobile */
  .btn-schedule {
    display: none !important;
  }

  /* KEEP the licensed/insured red bar visible */
  .topbar-sub {
    display: block !important;
  }

  /* Keep layout horizontal */
  .topbar-main-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* Hide subtitle text for tight spacing */
  .brand-text {
    display: none !important;
  }

  /* Make phone button clean and centered vertically */
  .btn-phone {
    display: flex !important;
    align-items: center !important;
    white-space: nowrap;
    padding: 8px 14px !important;
    font-size: 14px !important;
  }

}


/* =====================================
   MOBILE LOGO + PHONE SIDE BY SIDE
   ===================================== */

@media (max-width: 768px) {

  .topbar-main-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px;
  }

  .brand-inline {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
  }

  .btn-phone {
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }

}


/* =====================================
   FORCE MOBILE TOP BAR INLINE (NO STACK)
   ===================================== */

@media (max-width: 768px) {

  .topbar-main-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .brand-inline {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: auto !important;
  }

  .btn-phone {
    width: auto !important;
    margin-left: auto !important;
  }

}

/* =====================================================
   SHORT DESKTOP HEIGHT FIX (1366x768 etc.)
   Goal: make HERO FORM slightly shorter so it does not
   overlap the bottom sticky, without changing structure.
   ===================================================== */

@media (min-width: 769px) and (max-height: 800px){

  /* Tighten the form card ONLY in the hero */
  .hero .card{
    padding: 16px !important;
  }

  .hero .card-head{
    padding: 0 !important;
    margin-bottom: 8px !important;
  }

  .hero .card-title{
    font-size: 18px !important;
    line-height: 1.15 !important;
  }

  .hero .card-sub{
    font-size: 13px !important;
    padding: 6px 10px !important;
    margin-top: 6px !important;
  }

  .hero .form{
    gap: 10px !important;
    padding: 0 !important;
  }

  .hero .label{
    margin: 6px 0 4px !important;
  }

  .hero .form input{
    padding: 10px 12px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
  }

  .hero .btn{
    padding: 10px 12px !important;
    border-radius: 10px !important;
  }

  .hero .fineprint{
    margin-top: 10px !important;
    font-size: 12px !important;
  }

  .hero .card-call{
    margin-top: 12px !important;
    padding-top: 12px !important;
    font-size: 13px !important;
  }

  /* Give the hero a little breathing room above the bottom sticky */
  .hero{
    padding-bottom: 18px !important;
  }
}

/* =====================================================
   STRONGER SHORT DESKTOP HEIGHT FIX (1366x768 etc.)
   Further compress HERO FORM vertically only.
   ===================================================== */

@media (min-width: 769px) and (max-height: 800px){

  .hero .card{
    padding: 12px !important;
  }

  .hero .card-title{
    font-size: 16px !important;
    margin-bottom: 4px !important;
  }

  .hero .card-sub{
    font-size: 12px !important;
    padding: 4px 8px !important;
    margin-top: 4px !important;
  }

  .hero .form{
    gap: 8px !important;
  }

  .hero .form input{
    padding: 8px 10px !important;
    font-size: 13px !important;
  }

  .hero .btn{
    padding: 8px 10px !important;
    font-size: 14px !important;
  }

  .hero .fineprint{
    font-size: 11px !important;
    margin-top: 6px !important;
  }

  .hero .card-call{
    font-size: 12px !important;
    margin-top: 8px !important;
    padding-top: 8px !important;
  }

  .hero{
    padding-bottom: 10px !important;
  }
}

/* =====================================================
   FINAL TIGHTEN FOR SHORT DESKTOP HEIGHT (1366x768)
   Micro-compress hero form a bit more.
   ===================================================== */

@media (min-width: 769px) and (max-height: 800px){

  .hero .card{
    padding: 10px !important;
  }

  .hero .card-title{
    font-size: 15px !important;
    margin-bottom: 2px !important;
  }

  .hero .card-sub{
    font-size: 11px !important;
    padding: 3px 6px !important;
    margin-top: 3px !important;
  }

  .hero .form{
    gap: 6px !important;
  }

  .hero .form input{
    padding: 7px 9px !important;
    font-size: 12.5px !important;
  }

  .hero .btn{
    padding: 7px 9px !important;
    font-size: 13px !important;
  }

  .hero .fineprint{
    font-size: 10.5px !important;
    margin-top: 4px !important;
  }

  .hero .card-call{
    font-size: 11px !important;
    margin-top: 6px !important;
    padding-top: 6px !important;
  }

  .hero{
    padding-bottom: 6px !important;
  }
}

/* =====================================================
   MICRO ADJUST (-4px feel) FOR 1366x768
   ===================================================== */

@media (min-width: 769px) and (max-height: 800px){

  .hero .card{
    padding: 8px !important; /* was 10px */
  }

  .hero .form{
    gap: 5px !important; /* slightly tighter */
  }

  .hero{
    padding-bottom: 2px !important; /* small lift above sticky */
  }
}

/* =====================================================
   ADDITIONAL -10px HEIGHT REDUCTION (SHORT DESKTOP)
   ===================================================== */

@media (min-width: 769px) and (max-height: 800px){

  .hero .card{
    padding: 6px !important; /* reduce another ~2px top/bottom */
  }

  .hero .form input{
    padding: 6px 8px !important;
  }

  .hero .btn{
    padding: 6px 8px !important;
  }

  .hero{
    padding-bottom: 0px !important; /* lift form slightly */
  }
}

/* =====================================
   SLIGHT INCREASE – LICENSED BAR TEXT
   ===================================== */

.topbar-sub{
  font-size: 15.5px !important;  /* slightly larger */
  letter-spacing: 0.2px;
}

/* HERO FORM SUBTEXT – Center + Slight Emphasis */
.hero .card-sub {
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.3px;
}

/* HERO FORM HEADLINE + SUBTEXT – Centered */
.hero .card-title{
  text-align: center;
}

.hero .card-sub{
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.3px;
}



  .trust-item{flex:1 1 100%}
}

/* =============================
   TRUST STRIP (Ratings)
============================= */

.trust-strip{
    
  background:#fff;
  color:#0b1a2a;
  padding:14px 0;
  border-top:1px solid rgba(15, 23, 42, .10);
  border-bottom:1px solid rgba(15, 23, 42, .10);
}

.trust-strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}

.trust-item{
  flex:1 1 220px;
  display:flex;
  justify-content:center;
}

.trust-brand{
  display:flex;
  align-items:center;
  gap:12px;
}


.trust-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.trust-stars{
  letter-spacing:2px;
  font-size:16px;
  line-height:1;
  color: var(--gold);
}

.trust-stars .star.dim{
  color: rgba(216,180,90,.35);
}

.trust-stars .star.half{
  color: rgba(216,180,90,.75);
}

.trust-rating{
  font-weight:900;
  font-size:13px;
  letter-spacing:.6px;
  color:#0b1a2a;
}

@media (max-width: 640px){
  .trust-strip-inner{justify-content:center}
  .trust-item{flex:1 1 100%}
}

/* Spacer between Hero and Trust Strip (prevents "butting up") */
.hero-trust-spacer{
  height: 56px;
  background: var(--bg);
}
@media (max-width: 640px){
  .hero-trust-spacer{height: 36px;}
}
/* Trust Strip logos (img-based) */
.trust-logo-img{
  width:44px;
  height:44px;
  display:block;
  flex:0 0 44px;
}

/* Hero button spacing fix */
.hero .btn + .btn{
  margin-left:16px;
}

/* Spacing above Hero Estimate Button */
.hero .btn-primary{
  margin-top: 18px;
}


/* Spacing between Bathroom list and button */
.mini-cta{margin-top: 36px;}


/* Spacing above Reviews CTA button */
.section-alt .btn-gold{
  margin-top:36px;
  display:inline-block;
}

/* =============================
   REVIEWS (Card Style - Scoped)
============================= */
.reviews-wrap .reviews.reviews-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:22px;
  margin-top:18px;
  margin-bottom:22px;
}

.reviews-wrap .review.review-card{
  background: var(--card);
  border:1px solid rgba(15, 23, 42, .10);
  border-radius:14px;
  padding:22px 22px 18px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  position:relative;
  min-height: 220px;
  display:flex;
  flex-direction:column;
}

.reviews-wrap .review-quote{
  position:absolute;
  top:14px;
  left:16px;
  font-size:42px;
  font-weight:900;
  color: rgba(178, 31, 45, .92);
  line-height:1;
}

.reviews-wrap .review.review-card p{
  margin:34px 0 18px;
  color: var(--ink);
  font-size:15px;
  line-height:1.55;
}

.reviews-wrap .review-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-top:1px solid rgba(15, 23, 42, .08);
  padding-top:14px;
  margin-top:auto;
}

.reviews-wrap .review-person{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.reviews-wrap .review-avatar{
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(15, 23, 42, .10);
  background:#fff;
  object-fit:contain;
  padding:4px;
  flex:0 0 34px;
  display:block;
}

.reviews-wrap .review-name{
  font-weight:900;
  color: var(--ink);
  line-height:1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.reviews-wrap .review-loc{
  font-size:12px;
  color: rgba(17, 24, 39, .65);
  margin-top:2px;
}

.reviews-wrap .review-stars{
  color: var(--gold);
  letter-spacing:2px;
  font-size:14px;
  white-space:nowrap;
}

/* CTA aligned left (matches "Get My Free Estimate") */
.reviews-wrap .reviews-cta{
  text-align:left;
  margin-top: 10px;
}

@media (max-width: 980px){
  .reviews-wrap .reviews.reviews-cards{grid-template-columns:1fr; gap:16px;}
  .reviews-wrap .review.review-card{min-height:auto;}
}

/* =============================
   DHR Premium Urgency Box (Scoped)
============================= */
.dhr-urgency-box{
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(248,250,252,0.96) 100%);
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: 0 18px 46px rgba(2, 6, 23, .10);
  position: relative;
  overflow: hidden;
}

.dhr-urgency-box:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(214,174,93,.35) 100%);
}

.dhr-urgency-box .why-cta-title{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 8px;
}

.dhr-urgency-box .why-cta-sub{
  color: rgba(15, 23, 42, .72);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.dhr-urgency-box .btn-full{
  margin-bottom: 10px;
}

.dhr-urgency-box .btn-full:last-child{
  margin-bottom: 0;
}

@media (max-width: 768px){
  .dhr-urgency-box{
    padding: 22px 20px 18px;
    border-radius: 16px;
  }
}

/* DHR Urgency Accent */
.dhr-urgency-box .dhr-accent{
  color: var(--gold);
  font-weight: 900;
}

/* Anchor offset so form header isn't hidden under sticky header */
#estimate {
  scroll-margin-top: 240px;
}

.gallery-sub {
  margin-top: 4px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #777;
  font-weight: 400;
  text-align: left;
}

/* FORCE: Review stars + card lift */
.reviews-wrap .review-stars {
  color: #f4b400 !important;
  font-size: 22px !important;
  letter-spacing: 2px !important;
}

.reviews-wrap .review.review-card {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08) !important;
  border-radius: 12px !important;
}

/* Micro differentiator line under value bullets */
.value-micro {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #222;
  font-weight: 600;
  line-height: 1.5;
  border-left: 4px solid #d4af37;
  padding-left: 12px;
}

.process-steps {
  margin-top: 20px;
}

.process-step {
  margin-bottom: 18px;
}

.process-step strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

/* Tighten spacing for process section only */
.process-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Reduce top padding on reviews section */
.reviews-tight {
  padding-top: 30px;
}

/* Add breathing room between gallery and Why section */
.why {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .why {
    margin-top: 50px;
  }
}

.btn-outline-dark {
  border: 2px solid #222;
  color: #222;
  font-weight: 700;
}

/* Trust footer (clean contractor credibility bar) */
.trust-footer{
  background:#f7f7f7;
  border-top:1px solid rgba(0,0,0,.08);
  padding:18px 0;
}
.trust-footer-inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr .7fr 1fr;
  gap:18px;
  align-items:center;
}
.tf-title{
  font-size:13px;
  font-weight:700;
  color:#111;
  margin-bottom:4px;
}
.tf-text{
  font-size:13px;
  color:#444;
  line-height:1.35;
}
.tf-col-cta{ text-align:right; }
.tf-call{
  display:inline-block;
  padding:10px 14px;
  border:2px solid #111;
  border-radius:10px;
  color:#111;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}
.tf-call:hover{ opacity:.9; }

@media (max-width: 900px){
  .trust-footer-inner{ grid-template-columns: 1fr 1fr; }
  .tf-col-cta{ text-align:left; }
}
@media (max-width: 560px){
  .trust-footer-inner{ grid-template-columns: 1fr; }
  .tf-call{ width:100%; text-align:center; }
}

/* Space between footer and sticky bottom bar */
.trust-footer {
  background: #f7f7f7;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 18px 0;
  margin-bottom: 0px;
}

/* Thank you page spacing */
.thankyou-main{
  padding-top: 140px; /* clears sticky header + subbar */
  padding-bottom: 40px;
}
.thankyou-card{
  padding: 24px;
}
.thankyou-title{
  margin: 0 0 8px;
}
.thankyou-sub{
  margin: 0 0 16px;
  color: var(--muted);
}
.thankyou-next-title{
  font-weight: 800;
  margin: 10px 0 8px;
}
.thankyou-cta{
  margin-top: 14px;
}
@media (max-width: 768px){
  .thankyou-main{ padding-top: 160px; }
  .thankyou-cta a{ display:block; width:100%; }
  .thankyou-cta a + a{ margin-left:0 !important; margin-top:10px; }
}

.thankyou-rating{
  margin-top:20px;
  font-weight:700;
  font-size:16px;
  text-align:center;
  color:#c8a64d; /* subtle gold */
}
.thankyou-rating span{
  color:#111;
  margin-left:6px;
}

/* --- FIX: prevent sticky-bottom from covering page content (mobile) --- */
:root{
  --sticky-bottom-h: 92px; /* adjust if needed */
}

body{
  /* Reserve space so content never sits under the fixed bottom bar */
  padding-bottom: calc(var(--sticky-bottom-h) + env(safe-area-inset-bottom));
}

.sticky-bottom{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom);
}

/* If you only want this padding on mobile */
@media (min-width: 769px){
  body{ padding-bottom: 0; }
}

/* Mobile spacing between H1 and Offer */
@media (max-width: 768px){
  .hero-h1{
    margin-bottom: 32px !important;
  }

  .offer{
    margin-top: 8px !important;
  }
}

/* Extra breathing room under red licensed bar on small screens */
@media (max-width: 768px){
  .hero-copy{
    margin-top: 8px;
  }
}

/* Hero bullet strengthening (keep size, increase clarity) */
.hero .bullets li{
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0,0,0,.45);
}
/* =====================================
   ANCHOR OFFSET FIX FOR STICKY HEADER
   Prevents anchor sections from hiding
   under the 140px sticky header
===================================== */

html{
  scroll-padding-top:140px;
}

section[id]{
  scroll-margin-top:140px;
}

[id]{
  scroll-margin-top:140px;
}

.low-key-text{
  font-size:12px;
  color:#777;
  opacity:0.9;
  line-height:1.6;
  max-width:700px;   /* tighter width */
  margin:20px auto;  /* centers it */
  padding:0 15px;
  text-align:center; /* centers text inside */
}