/* =========================
   PRO One-Page Template CSS
   (Plumber PRO)
   ========================= */

:root{
  --bg:#020617;
  --panel:rgba(15,23,42,.78);
  --card:rgba(15,23,42,.62);
  --border:rgba(148,163,184,.18);
  --muted:#94a3b8;
  --text:#e2e8f0;

  --gold:#f59e0b;
  --gold2:#fbbf24;

  /* plumber vibe */
  --accent: #f59e0b;

  --shadow:0 18px 50px rgba(0,0,0,.45);
  --radius:18px;

  --max:1140px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 15% 10%, rgba(56,189,248,.12), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(34,197,94,.09), transparent 60%),
    radial-gradient(900px 700px at 50% 100%, rgba(245,158,11,.08), transparent 60%),
    linear-gradient(180deg, #01030a, #060b16 55%, #01030a);
}

/* Layout helpers */
main{display:block}
.section{
  max-width:var(--max);
  margin:0 auto;
  padding:56px 18px;
}
.section.tight{padding-top:38px; padding-bottom:38px;}
.section.tight-top{padding-top:26px;}
h1,h2,h3{margin:0}
h2{
  font-size:28px;
  letter-spacing:-.3px;
}
p{margin:0}
.sub{
  margin-top:10px;
  color:rgba(226,232,240,.78);
  max-width:68ch;
}

/* Sticky header */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(2,6,23,.72);
  border-bottom:1px solid var(--border);
}
.topbar .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}
.logo{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:8px;
  display:block;
}

/* Nav */
.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  color:rgba(226,232,240,.78);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.22);
  background: rgba(148,163,184,.08);
}
.nav a:hover{
  background: rgba(56,189,248,.15);
  border-color: rgba(56,189,248,.35);
  color:#fff;
}

/* Hero */
.hero{
  max-width:var(--max);
  margin:0 auto;
  padding:38px 18px 24px;
}
.hero__inner{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(2,6,23,.25), rgba(2,6,23,.92)),
    url("assets/hero-bg2.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
  padding:46px 26px 26px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(56,189,248,.35);
  background: rgba(56,189,248,.12);
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  margin-bottom:14px;
}
.hero h1{
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.8px;
}
.hero h1 span{
  background: linear-gradient(135deg, rgba(56,189,248,.95), rgba(34,197,94,.9));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  margin-top:12px;
  color:rgba(226,232,240,.82);
  max-width:70ch;
  line-height:1.6;
}

/* CTA buttons */
.cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.cta.center{justify-content:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  text-decoration:none;
  color:#fff;
  font-weight:900;
  box-shadow: 0 14px 28px rgba(0,0,0,.30);
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.05);}
.btn.ghost{background: transparent;}
.btn.gold{
  border-color: rgba(245,158,11,.45);
  background: linear-gradient(135deg, rgba(245,158,11,.95), rgba(251,191,36,.92));
  color:#0b1220;
}

/* Hero meta chips */
.hero__meta{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}
.chip{
  border-radius:16px;
  border:1px solid rgba(148,163,184,.18);
  background: rgba(2,6,23,.55);
  padding:12px 12px;
  color:rgba(226,232,240,.85);
  font-size:12px;
}
.chip b{color:#fff}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.card{
  border-radius:22px;
  border:1px solid rgba(148,163,184,.16);
  background: rgba(15,23,42,.55);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  padding:16px;
}
.card img{
  width:46px;
  height:46px;
  object-fit:contain;
  display:block;
  margin-bottom:10px;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.35));
}
.card h3{font-size:16px; margin-bottom:6px;}
.card p{color:rgba(226,232,240,.78); font-size:13px; line-height:1.55;}

/* About section */
.about{
  max-width:var(--max);
  margin:0 auto;
  padding:56px 18px;
}
.about__inner{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:16px;
  align-items:stretch;
}
.about__text{
  border-radius:24px;
  border:1px solid rgba(148,163,184,.16);
  background: rgba(15,23,42,.50);
  box-shadow: var(--shadow);
  padding:22px;
}
.about__text p{margin-top:10px; color:rgba(226,232,240,.78); line-height:1.6;}
.checks{margin-top:14px; display:grid; gap:8px; color:rgba(226,232,240,.84);}
.about__media{
  border-radius:24px;
  border:1px solid rgba(148,163,184,.16);
  overflow:hidden;
  background: rgba(15,23,42,.45);
  box-shadow: var(--shadow);
}
.about__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Gallery */
.gallery.real{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.shot.real{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(148,163,184,.16);
  background: rgba(15,23,42,.50);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.shot.real img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}
.shot.real figcaption{
  padding:10px 12px;
  font-size:12px;
  color:rgba(226,232,240,.78);
}

/* Testimonials */
.t-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.t-card{
  border-radius:22px;
  border:1px solid rgba(148,163,184,.16);
  background: rgba(15,23,42,.50);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  padding:16px;
}
.stars{letter-spacing:1px; color: #fbbf24; font-weight:900;}
.t-card p{margin-top:10px; color:rgba(226,232,240,.80); line-height:1.6;}
.who{margin-top:10px; color:rgba(226,232,240,.68); font-size:12px; font-weight:800;}

/* Pricing */
.pricing{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.price{
  border-radius:22px;
  border:1px solid rgba(148,163,184,.16);
  background: rgba(15,23,42,.50);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  padding:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.price b{display:block; font-size:14px;}
.price small{display:block; margin-top:2px; color:rgba(226,232,240,.65); font-size:12px;}
.price span{font-weight:1000;}
.price.featured{
  border-color: rgba(245,158,11,.35);
  background: linear-gradient(180deg, rgba(245,158,11,.14), rgba(15,23,42,.52));
}

/* Book section */
.bookbox{
  border-radius:24px;
  border:1px solid rgba(148,163,184,.16);
  background: rgba(15,23,42,.50);
  box-shadow: var(--shadow);
  padding:22px;
}
.bookbox p{margin-top:10px; color:rgba(226,232,240,.78); line-height:1.6;}
.note{
  margin-top:12px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.18);
  background: rgba(2,6,23,.55);
  color:rgba(226,232,240,.75);
  font-size:12px;
}

/* Footer */
.footer{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px 48px;
}
.footer-card{
  border-radius:22px;
  border:1px solid rgba(148,163,184,.16);
  background: rgba(15,23,42,.40);
  padding:18px;
  text-align:center;
  color:rgba(226,232,240,.70);
}

/* Make anchor scroll land below sticky header */
#services, #gallery, #testimonials, #pricing, #book{
  scroll-margin-top: 88px;
}

/* =========================
   Floating Book Button (MATCHES .btn.gold)
   ========================= */

/* Ensure the jump lands under the sticky header */
#book{ scroll-margin-top: 110px; }

.lfs-float-btn{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 20px;
  border-radius: 999px;

  /* MATCH .btn.gold */
  border: 1px solid rgba(245,158,11,.45);
  background: linear-gradient(135deg, rgba(245,158,11,.95), rgba(251,191,36,.92));
  color: #0b1220;

  font-weight: 1000;
  font-size: 14px;
  line-height: 1;

  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,.45);
  cursor: pointer;
}

.lfs-float-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Mobile: full width bar */
@media (max-width:720px){
  .lfs-float-btn{
    left: 14px;
    right: 14px;
    width: calc(100% - 28px);
    justify-content: center;
  }
}


/* Mobile */
@media (max-width: 980px){
  .hero h1{font-size:38px}
  .hero__meta{grid-template-columns:1fr 1fr; }
  .cards{grid-template-columns:1fr 1fr}
  .gallery.real{grid-template-columns:1fr 1fr}
  .t-grid{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .about__inner{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .hero__inner{padding:34px 16px 18px;}
  .hero h1{font-size:32px}
  .nav a{font-size:12px; padding:9px 10px;}
  .logo{width:48px;height:48px;padding:7px;}
}
