/* Shared site header / footer chrome (new design) */
:root{
  --navy:#2E3449;
  --navy-deep:#212534;
  --teal:#258999;
  --teal-light:#2FAFC3;
  --paper:#F6F4EF;
  --paper-dim:#EFEBE2;
  --ink:#16202B;
  --ink-soft:#4B5966;
  --line:rgba(15,39,64,0.14);
  --line-on-navy:rgba(255,255,255,0.16);
  --white:#FFFFFF;
}

#siteHeader{
  position:fixed; top:0; left:0; right:0; z-index:1050;
  background:transparent;
  transition:background .3s ease, border-color .3s ease;
  border-bottom:1px solid transparent;
  margin:0;
  padding:0;
  height:auto;
  width:100%;
}
#siteHeader.scrolled,
#siteHeader.solid{
  background:rgba(10,28,46,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line-on-navy);
}
#siteHeader .util-bar{
  background:var(--navy-deep);
  padding:7px 28px;
  display:flex; justify-content:flex-end; align-items:center; gap:22px;
  border-bottom:1px solid var(--line-on-navy);
  max-height:50px;
  opacity:1;
  overflow:hidden;
  transition:max-height .35s ease, opacity .25s ease, padding .35s ease, border-bottom-color .3s ease;
}
#siteHeader.hide-util .util-bar{
  max-height:0;
  opacity:0;
  padding-top:0;
  padding-bottom:0;
  border-bottom-color:transparent;
  pointer-events:none;
}
#siteHeader .util-bar a{
  font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.04em;
  color:rgba(255,255,255,0.65);
  text-decoration:none;
}
#siteHeader .util-bar a:hover{color:var(--teal-light);}
@media (max-width:880px){
  #siteHeader .util-bar{ gap:14px; padding:6px 16px; justify-content:center; }
  #siteHeader .util-bar a{ font-size:10px; }
}
#siteHeader nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 28px; max-width:1180px; margin:0 auto;
  float:none; width:auto; background:transparent;
}
#siteHeader .logo{
  display:flex; align-items:center; float:none; margin:0;
  text-decoration:none;
}
#siteHeader .logo img{height:52px; width:auto; display:block; max-width:none;}
#siteHeader .nav-links{
  display:flex; gap:30px; align-items:center;
  float:none; margin:0; padding:0; list-style:none;
}
#siteHeader .nav-links a{
  color:rgba(255,255,255,0.82); font-size:13.5px; font-weight:500;
  letter-spacing:0.01em; position:relative;
  text-decoration:none; text-transform:none;
}
#siteHeader .nav-links a:not(.nav-cta)::after{
  content:''; position:absolute; left:0; bottom:-5px; width:0; height:1px;
  background:var(--teal-light); transition:width .2s ease;
}
#siteHeader .nav-links a:hover,
#siteHeader .nav-links a.active{color:var(--white);}
#siteHeader .nav-links a:not(.nav-cta):hover::after,
#siteHeader .nav-links a.active:not(.nav-cta)::after{width:100%;}
#siteHeader .nav-cta{
  background:var(--teal); color:var(--white) !important; padding:9px 18px;
  font-size:13px; font-weight:600; border:1px solid var(--teal);
}
#siteHeader .nav-cta:hover{background:var(--teal-light);}
#siteHeader .burger{
  display:none; background:none; border:none; color:var(--white);
  font-size:22px; cursor:pointer; line-height:1; padding:4px 8px;
}

@media (max-width:880px){
  #siteHeader .nav-links{
    position:fixed; top:70px; left:0; right:0; background:var(--navy-deep);
    flex-direction:column; align-items:flex-start; padding:20px 28px;
    gap:18px; border-bottom:1px solid var(--line-on-navy);
    transform:translateY(-140%); transition:transform .3s ease;
    z-index:1051;
  }
  #siteHeader .nav-links.open{transform:translateY(0);}
  #siteHeader .burger{display:block;}
}

/* Clear space under fixed header on inner pages */
#wrapper.inner-page{
  padding-top:118px;
}
@media (max-width:880px){
  #wrapper.inner-page{ padding-top:108px; }
}

/* Footer */
footer.site-footer{
  background:var(--paper); color:var(--ink-soft); padding:64px 0 30px; position:relative;
  margin:0; border:0; float:none; width:100%;
  font-family:'IBM Plex Sans', sans-serif;
}
footer.site-footer::before{
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 45%, transparent 45.5%);
  background-size:14px 2px;
}
footer.site-footer .wrap{
  max-width:1180px; margin:0 auto; padding:0 28px;
}
footer.site-footer .foot-top{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px;
  padding-bottom:36px; border-bottom:1px solid var(--line);
}
footer.site-footer .foot-logo-link{display:inline-block; text-decoration:none;}
footer.site-footer .foot-brand .logo img{height:88px; width:auto; display:block;}
footer.site-footer .foot-logo-row{display:flex; align-items:center; gap:20px;}
footer.site-footer .foot-tagline{
  display:flex; flex-direction:column; gap:3px; padding-left:20px;
  border-left:1px solid var(--line);
  font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--navy); font-weight:700;
}
footer.site-footer .foot-social{display:flex; gap:12px; margin-top:18px;}
footer.site-footer .foot-social a{
  width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line); color:var(--ink-soft); text-decoration:none;
  transition:color .2s ease, border-color .2s ease, background .2s ease;
}
footer.site-footer .foot-social a:hover{color:var(--white); background:var(--teal); border-color:var(--teal);}
footer.site-footer .foot-social svg{width:16px; height:16px; fill:currentColor;}
footer.site-footer .foot-cols{display:flex; gap:60px; flex-wrap:wrap;}
footer.site-footer .foot-col h5{
  font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.1em;
  color:var(--teal); margin:0 0 14px;
}
footer.site-footer .foot-col a{
  display:block; font-size:13.5px; padding:5px 0; color:var(--ink-soft);
  text-decoration:none; transition:color .2s ease, all .2s ease;
}
footer.site-footer .foot-col a:hover{color:var(--teal); transform:translateX(4px);}
footer.site-footer .foot-bottom{
  display:flex; justify-content:space-between; padding-top:24px;
  font-size:12px; color:var(--ink-soft); flex-wrap:wrap; gap:10px;
}
footer.site-footer .foot-legal{display:flex; align-items:center; gap:8px;}
footer.site-footer .foot-legal a{color:var(--ink-soft); text-decoration:none; transition:color .2s ease;}
footer.site-footer .foot-legal a:hover{color:var(--teal); text-decoration:underline;}
footer.site-footer .foot-legal .dot{color:var(--line);}
footer.site-footer .mono{font-family:'IBM Plex Mono', monospace;}

/* Floating contact */
.float-contact{
  position:fixed; right:22px; bottom:24px; z-index:1060;
  display:flex; flex-direction:column; gap:12px;
}
.float-contact a{
  width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 16px rgba(15,39,64,0.28); transition:transform .2s ease, box-shadow .2s ease;
  text-decoration:none;
}
.float-contact a:hover{transform:translateY(-3px) scale(1.05); box-shadow:0 10px 22px rgba(15,39,64,0.34);}
.float-contact svg{width:24px; height:24px; fill:#fff;}
.float-whatsapp{background:#25D366;}
.float-call{background:var(--navy);}
.float-email{background:var(--teal);}
@media (max-width:600px){
  .float-contact{right:14px; bottom:16px; gap:10px;}
  .float-contact a{width:44px; height:44px;}
  .float-contact svg{width:21px; height:21px;}
}
