@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap");

:root{
  --bg:#f8fafa;
  --ink:#0d0e10;
  --muted:#4c515a;
  --line:#d8dbe2;

  --accent:#ffd200;
  --accent-ink:#0d0e10;

  --surface:#ffffff;
  --surface-2:#f1f3f6;

  --shadow:0 14px 40px rgba(13,14,16,.10);
  --shadow-soft:0 10px 24px rgba(13,14,16,.08);

  --radius-xl:22px;
  --radius-lg:16px;

  --topbar-h:36px;
  --nav-h:62px;
  --header-h:calc(var(--topbar-h) + var(--nav-h));
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:"Plus Jakarta Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  padding-top:var(--header-h);
}

header[id], section[id]{scroll-margin-top:calc(var(--header-h) + 16px);}

.topbar{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--topbar-h);
  z-index:1036;
  background:linear-gradient(180deg, rgba(13,14,16,.98), rgba(13,14,16,.92));
  border-bottom:1px solid rgba(255,255,255,.10);
}

.topbar-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
}

.topbar a{
  height:100%;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  font-weight:850;
  font-size:13px;
  letter-spacing:.15px;
  color:rgba(248,250,250,.96);
  line-height:1;
}

.topbar a i{color:var(--accent);}
.topbar .sep{width:1px;height:16px;background:rgba(248,250,250,.22);}

.navbar-wrap{
  position:fixed;
  top:var(--topbar-h);
  left:0;right:0;
  height:var(--nav-h);
  z-index:1030;
  background:rgba(248,250,250,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(13,14,16,.08);
}

.navbar{height:var(--nav-h);padding:0;}

.navbar-brand{
  font-weight:950;
  letter-spacing:.2px;
  color:var(--ink)!important;
  line-height:1;
}

.navbar-brand small{
  display:block;
  font-size:12px;
  font-weight:800;
  color:var(--muted);
  letter-spacing:.15px;
  margin-top:6px;
}

.nav-link{
  color:var(--ink)!important;
  font-weight:900;
  letter-spacing:.22px;
  position:relative;
  padding:10px 12px!important;
  font-size:14px;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:12px;right:12px;
  bottom:6px;
  height:2px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .26s ease;
}

.nav-link:hover::after,
.nav-link.active::after{transform:scaleX(1);}

.nav-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  background:var(--accent);
  color:var(--accent-ink)!important;
  font-weight:950;
  text-decoration:none;
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, box-shadow .18s ease;
  font-size:14px;
}

.nav-cta:hover{transform:translateY(-1px);box-shadow:var(--shadow);}

.offcanvas{background:var(--bg);}
.offcanvas .nav-link{font-size:18px;padding:14px 0!important;}

.panel{
  min-height:calc(100svh - var(--header-h));
  display:flex;
  align-items:stretch;
}

.section{padding:0;}
.section-inner{
  width:100%;
  padding:72px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero{
  position:relative;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(255,210,0,.34), rgba(255,210,0,0) 68%),
    linear-gradient(180deg, rgba(255,210,0,.12) 0%, rgba(248,250,250,1) 55%);
  overflow:hidden;
}

.hero .section-inner{padding:56px 0;}
.hero .container{width:100%;position:relative;z-index:1;}

.hero-title{
  font-weight:950;
  line-height:1.02;
  letter-spacing:-1.2px;
  font-size:clamp(42px,5vw,72px);
  margin:0 0 14px;
}

.hero-sub{
  font-size:clamp(16px,1.35vw,20px);
  color:var(--muted);
  max-width:720px;
  margin:0 0 22px;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0 22px;
}

.badge-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(13,14,16,.06);
  color:var(--ink);
  font-weight:900;
  font-size:13px;
}

.badge-pill i{font-size:16px;color:rgba(13,14,16,.72);}

.cta-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:6px;}

.btn-primary-custom{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:16px;
  background:var(--accent);
  color:var(--accent-ink);
  border:1px solid rgba(13,14,16,.08);
  text-decoration:none;
  font-weight:950;
  letter-spacing:.2px;
  transition:transform .18s ease, box-shadow .18s ease;
  box-shadow:var(--shadow-soft);
}

.btn-primary-custom:hover{transform:translateY(-1px);box-shadow:var(--shadow);}

.btn-outline-custom{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:16px;
  background:transparent;
  color:var(--ink);
  border:2px solid rgba(13,14,16,.20);
  text-decoration:none;
  font-weight:950;
  letter-spacing:.2px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn-outline-custom:hover{
  transform:translateY(-1px);
  background:rgba(13,14,16,.04);
  border-color:rgba(13,14,16,.34);
}

.hero-photo{
  width:100%;
  aspect-ratio:3/4;
  border-radius:var(--radius-xl);
  background:linear-gradient(180deg, rgba(13,14,16,.06), rgba(13,14,16,.02));
  border:1px solid rgba(13,14,16,.10);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  position:relative;
  max-height:calc(100svh - var(--header-h) - 170px);
}

.hero-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(520px 420px at 30% 20%, rgba(255,210,0,.18), rgba(255,210,0,0) 62%);
  pointer-events:none;
}

.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0;
  transition:opacity .35s ease;
  position:relative;
  z-index:1;
}

.hero-photo img.is-loaded{opacity:1;}

.photo-caption{
  margin-top:12px;
  font-weight:950;
  letter-spacing:-.2px;
  font-size:18px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.section-head{
  display:grid;
  grid-template-columns:40px 140px 1fr;
  align-items:center;
  gap:18px;
  margin-bottom:28px;
}

.section-num{font-weight:950;color:rgba(13,14,16,.40);letter-spacing:1px;}

.section-line{height:2px;background:var(--line);position:relative;}
.section-line::after{
  content:"";
  position:absolute;
  left:0;
  top:-1px;
  width:42px;
  height:4px;
  background:var(--accent);
  border-radius:99px;
}

.section-title{
  font-weight:950;
  letter-spacing:-0.6px;
  margin:0;
  font-size:clamp(26px,2.2vw,38px);
}

.section-sub{margin-top:6px;color:var(--muted);max-width:860px;}

.card-clean{
  background:var(--surface);
  border:1px solid rgba(13,14,16,.08);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  padding:18px;
  height:100%;
  transition:transform .2s ease, box-shadow .2s ease;
  position:relative;
  overflow:hidden;
}

.card-clean::before{
  content:"";
  position:absolute;
  left:14px;
  top:14px;
  width:8px;
  height:58px;
  border-radius:99px;
  background:var(--accent);
}

.card-clean:hover{transform:translateY(-3px);box-shadow:var(--shadow);}
.card-clean h3{margin:0 0 8px;padding-left:18px;font-weight:950;letter-spacing:-0.2px;font-size:20px;}
.card-clean p{margin:0;padding-left:18px;color:var(--muted);line-height:1.55;}

.cta-strip{
  padding:26px;
  border-radius:var(--radius-xl);
  background:linear-gradient(135deg, rgba(255,210,0,.28), rgba(255,210,0,.10));
  border:1px solid rgba(13,14,16,.08);
  box-shadow:var(--shadow-soft);
}

.cta-strip h3{margin:0 0 6px;font-weight:950;}
.cta-strip p{margin:0;color:var(--muted);}

.collapse-wrap{
  margin-top:16px;
  border-radius:var(--radius-xl);
  border:1px solid rgba(13,14,16,.08);
  background:var(--surface);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.collapse-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 18px;
  background:transparent;
  border:0;
  font-weight:950;
  letter-spacing:.1px;
}

.collapse-toggle i{font-size:18px;}
.collapse-toggle:hover{background:rgba(13,14,16,.03);}

.collapse-body{padding:0 18px 18px;}

.service-groups{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:10px;
}

.service-group{
  border:1px solid rgba(13,14,16,.08);
  border-radius:16px;
  padding:14px;
  background:rgba(13,14,16,.02);
}

.service-group h4{
  margin:0 0 10px;
  font-size:13px;
  font-weight:950;
  letter-spacing:.5px;
  color:rgba(13,14,16,.78);
  text-transform:uppercase;
}

.service-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.service-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--muted);
  font-weight:850;
}

.service-list li i{color:var(--ink);opacity:.7;margin-top:2px;}

.form-control,.form-select{
  border-radius:14px;
  border:1px solid rgba(13,14,16,.16);
  padding:12px 14px;
}

.form-control:focus,.form-select:focus{
  border-color:rgba(13,14,16,.30);
  box-shadow:0 0 0 .25rem rgba(255,210,0,.25);
}

.form-label{font-weight:950;}

.contact-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:100%;
}

.contact-card h3{margin-bottom:12px;font-size:22px;}

.contact-lines{
  padding-left:18px;
  display:grid;
  gap:12px;
}

.contact-line{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:950;
  font-size:18px;
}

.contact-line i{width:22px;text-align:center;color:rgba(13,14,16,.78);}
.contact-line a{text-decoration:none;color:var(--ink);}

.contact-note{
  margin-top:14px;
  padding-left:18px;
  color:var(--muted);
  font-weight:750;
}

.footer{
  padding:30px 0 42px;
  border-top:1px solid rgba(13,14,16,.10);
  background:var(--surface-2);
}

.footer-brand{font-weight:950;font-size:18px;}
.footer-sub{color:var(--muted);font-weight:750;margin-top:4px;}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 16px;
  margin:0;
  padding:0;
  list-style:none;
}

.footer-links a{
  text-decoration:none;
  font-weight:900;
  color:rgba(13,14,16,.88);
  font-size:13px;
  letter-spacing:.18px;
}

.footer-links a:hover{
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

.footer-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}

.footer-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:950;
  letter-spacing:.2px;
  transition:transform .18s ease;
}

.footer-cta.call{
  background:var(--accent);
  color:var(--accent-ink);
  border:1px solid rgba(13,14,16,.10);
  box-shadow:var(--shadow-soft);
}

.footer-cta.email{
  background:transparent;
  color:var(--ink);
  border:2px solid rgba(13,14,16,.18);
}

.footer-cta:hover{transform:translateY(-1px);}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1);
  will-change:opacity,transform;
}

.reveal.is-visible{opacity:1;transform:translateY(0);}
.reveal[data-anim="fade"]{transform:none;opacity:0;}
.reveal.is-visible[data-anim="fade"]{opacity:1;}
.reveal[data-anim="left"]{transform:translateX(-22px);}
.reveal.is-visible[data-anim="left"]{transform:translateX(0);}
.reveal[data-anim="right"]{transform:translateX(22px);}
.reveal.is-visible[data-anim="right"]{transform:translateX(0);}
.reveal[data-anim="up"]{transform:translateY(24px);}
.reveal.is-visible[data-anim="up"]{transform:translateY(0);}
.reveal[data-anim="scale"]{transform:scale(.985);opacity:0;}
.reveal.is-visible[data-anim="scale"]{transform:scale(1);opacity:1;}

.mobile-bar{
  position:fixed;
  left:0;right:0;
  bottom:0;
  z-index:1040;
  background:rgba(248,250,250,.90);
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(13,14,16,.10);
  padding:10px 12px;
  display:none;
}

.mobile-bar a{
  text-decoration:none;
  font-weight:950;
  letter-spacing:.2px;
  border-radius:14px;
  padding:12px 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
}

.mobile-call{
  background:var(--accent);
  color:var(--accent-ink);
  border:1px solid rgba(13,14,16,.08);
}

.mobile-quote{
  background:transparent;
  color:var(--ink);
  border:2px solid rgba(13,14,16,.18);
}

@media (max-width: 991.98px){
  .topbar-inner{justify-content:space-between;}
  .topbar .sep{display:none;}
  .topbar a span.label{display:none;}
  .mobile-bar{display:block;}
  .service-groups{grid-template-columns:repeat(2, minmax(0,1fr));}
  .section-inner{padding:58px 0;justify-content:flex-start;}
  .footer-ctas{justify-content:flex-start;}
  .hero-photo{max-height:calc(100svh - var(--header-h) - 210px);}
}

@media (max-width: 575.98px){
  .section-head{grid-template-columns:34px 110px 1fr;gap:14px;}
  .service-groups{grid-template-columns:1fr;}
}
