/* Global font consistency */
/* Global font consistency */
html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #1a2449;
}



/* ===== GLOBAL FONT UNIFICATION ===== */
html, body, button, input, select, textarea {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
}
h1, h2, h3, h4, h5, h6, .feature__title {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
  letter-spacing: 0.2px;
}


/* Global font override */
html, body {
    font-family: Helvetica, Arial, sans-serif !important;
}

:root{
  --navy:#1A2449;
  --blue:#455EAA;
  --slate:#626A8A;
  --bg:#F6F7FB;
  --text:#0E1427;
  --card:#FFFFFF;
  --border:rgba(26,36,73,.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(--text);background:var(--bg)}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* Header */
.header{position:sticky;top:0;background:rgba(255,255,255,.9);backdrop-filter:saturate(150%) blur(10px);border-bottom:1px solid var(--border);z-index:50}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:14px}
.brand{display:flex;align-items:center;gap:12px;min-width:220px}
.brand img{height:42px;width:auto;display:block}
.nav{display:flex;gap:18px;align-items:center}
.nav a{padding:10px 8px;border-radius:10px;color:var(--navy);font-weight:600}
.nav a:hover{background:rgba(69,94,170,.08)}
.cta{display:flex;gap:10px;align-items:center}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 14px;border-radius:12px;border:1px solid var(--border);background:#fff;font-weight:700}
.btn-primary{background:var(--blue);border-color:var(--blue);color:#fff}
.btn-primary:hover{filter:brightness(.95)}
.btn:hover{filter:brightness(.98)}
.burger{display:none;border:1px solid var(--border);background:#fff;border-radius:12px;padding:10px 12px;font-weight:800;color:var(--navy)}

/* Hero */
.hero{padding:54px 0 26px}
.hero-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:22px;align-items:stretch}
.hero-card{background:var(--card);border:1px solid var(--border);border-radius:22px;padding:26px;box-shadow:0 10px 30px rgba(26,36,73,.06)}
.kicker{color:var(--blue);font-weight:800;letter-spacing:.02em;text-transform:uppercase;font-size:12px}
.h1{font-size:42px;line-height:1.05;margin:10px 0 10px;color:var(--navy)}
.lead{font-size:16px;line-height:1.55;color:rgba(14,20,39,.82);margin:0 0 18px}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:10px}
.badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.badge{font-size:13px;padding:8px 10px;border:1px solid var(--border);border-radius:999px;background:rgba(69,94,170,.06);color:var(--navy);font-weight:650}
.hero-side{display:grid;gap:14px}
.side-card{background:var(--card);border:1px solid var(--border);border-radius:22px;padding:18px}
.side-title{font-weight:800;color:var(--navy);margin:0 0 8px}
.side-text{margin:0;color:rgba(14,20,39,.8);line-height:1.55}

/* Sections */
.section{padding:30px 0}
.section-title{font-size:28px;margin:0 0 8px;color:var(--navy)}
.section-sub{margin:0 0 18px;color:rgba(14,20,39,.78);line-height:1.55}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.card{background:var(--card);border:1px solid var(--border);border-radius:18px;padding:18px}
.card h3{margin:0 0 8px;color:var(--navy)}
.card p{margin:0;color:rgba(14,20,39,.8);line-height:1.55}
.list{margin:0;padding-left:18px;color:rgba(14,20,39,.82);line-height:1.7}

/* Gallery placeholder */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.ph{aspect-ratio:4/3;border-radius:14px;border:1px dashed rgba(26,36,73,.22);background:linear-gradient(180deg,rgba(69,94,170,.08),rgba(26,36,73,.03));display:flex;align-items:center;justify-content:center;color:rgba(26,36,73,.55);font-weight:700;text-align:center;padding:10px}

/* FAQ */
.faq{display:grid;gap:10px}
.faq details{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:14px}
.faq summary{cursor:pointer;font-weight:800;color:var(--navy)}
.faq p{margin:10px 0 0;color:rgba(14,20,39,.82);line-height:1.6}

/* Footer */
.footer{padding:30px 0;margin-top:24px;border-top:1px solid var(--border);background:#fff}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:14px}
.small{color:rgba(14,20,39,.72);line-height:1.6;font-size:14px}
.footer a{color:var(--navy);font-weight:650}

/* Page header */
.pagehead{padding:26px 0 8px}
.pagehead h1{margin:0;color:var(--navy);font-size:36px}
.pagehead p{margin:10px 0 0;color:rgba(14,20,39,.8);line-height:1.6}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
  .nav{display:none;position:absolute;left:18px;right:18px;top:64px;background:#fff;border:1px solid var(--border);border-radius:18px;padding:10px;flex-direction:column;align-items:stretch}
  .nav a{padding:12px 12px}
  .burger{display:inline-flex}
}


.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


/* Top contact strip */
.top-contact{
  position: sticky;
  top: 0;
  z-index: 9998;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #ffffff;
  border-bottom: 1px solid rgba(26,36,73,.10);
}
.top-contact .contact-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1A2449;
  font-weight: 600;
  font-size: 14px;
}
.top-contact .contact-link:hover{ text-decoration: underline; }
.top-contact .icon{
  width: 18px;
  height: 18px;
  fill: #455EAA;
}
@media (max-width: 520px){
  .top-contact{
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
  }
  .top-contact .contact-link span{
    display: none; /* show icons only on small screens */
  }
  .top-contact .icon{
    width: 20px;
    height: 20px;
  }
}


/* Areas + postcodes tables */
.areas-intro{max-width: 980px; margin: 0 auto 18px auto;}
.areas-regions{max-width: 1100px; margin: 0 auto;}
.region-block{margin: 22px 0;}
.region-block h2{margin: 0 0 10px 0; font-size: 20px; color: #1A2449;}
.table-wrap{overflow-x:auto; border: 1px solid rgba(26,36,73,.12); border-radius: 14px; background:#fff;}
.areas-table{width:100%; border-collapse: collapse; min-width: 620px;}
.areas-table th, .areas-table td{padding: 12px 14px; border-bottom: 1px solid rgba(26,36,73,.10); vertical-align: top;}
.areas-table thead th{background: rgba(69,94,170,.08); color:#1A2449; text-align:left; font-weight: 800;}
.areas-table tbody tr:last-child td{border-bottom:none;}
.areas-table .postcode{white-space:nowrap; font-weight: 800;}
.area-name{font-weight: 700; color:#1A2449;}
.area-towns{margin-top: 4px; font-size: 13px; color: rgba(26,36,73,.75);}
@media (max-width: 520px){
  .region-block h2{font-size: 18px;}
}


/* Split services layout */
.services-split{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 26px auto 8px auto;
}
.service-group{
  border: 1px solid rgba(26,36,73,.12);
  border-radius: 18px;
  padding: 18px 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(26,36,73,.06);
}
.service-group h2{
  margin: 0 0 8px 0;
  color:#1A2449;
  font-size: 20px;
}
.service-group p{
  margin: 0 0 12px 0;
  color: rgba(26,36,73,.75);
  line-height: 1.5;
}
.service-group .bullets{
  margin: 0 0 14px 0;
}
.service-group .btn{
  display: inline-block;
  margin-top: 6px;
}

/* Services page: media-enhanced blocks */
.service-group--with-media{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.service-group--with-media .service-group__content{
  padding: 18px 16px;
}
.service-group--with-media .service-group__media{
  background: rgba(26,36,73,.04);
}
.service-group--with-media .service-group__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 980px){
  .services-split{ grid-template-columns: 1fr; }
  .service-group--with-media{ grid-template-columns: 1fr; }
  .service-group--with-media .service-group__media{ height: 220px; }
}


/* Service quick links */
.service-quicklinks{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
  margin-bottom: 8px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(69,94,170,.25);
  background: rgba(69,94,170,.08);
  color:#1A2449;
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
}
.chip:hover{ text-decoration: underline; }



/* Bifold manufacturer logos */
.bifold-logos{margin: 32px auto;}
.bifold-logos h2{color:#1A2449;margin-bottom:6px;}
.bifold-logos p{color:rgba(26,36,73,.75);margin-bottom:14px;}
.logo-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
  gap:16px;
  align-items:center;
}
.logo-item{
  border:1px solid rgba(26,36,73,.12);
  border-radius:14px;
  padding:14px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.logo-item img{
  max-width:100%;
  max-height:60px;
  object-fit:contain;
  filter:none;
  opacity:0.9;
}
.logo-item img:hover{
  filter:none;
  opacity:1;
}



/* Screenshot-style header */
.site-header{position: sticky; top: 0; z-index: 9999; background:#fff;}
.topbar{background:#fff;}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 0;
  gap: 18px;
}
.brand__logo{height: 68px; width:auto; display:block;}
.topbar__contacts{
  display:flex; gap: 34px; align-items:center; justify-content:flex-end;
}
.contact{
  display:flex;
  flex-direction:column;
  gap: 8px;
  align-items:center;
  text-align:center;
  text-decoration:none;
  color:#1A2449;
}
.contact .icon{width:28px; height:28px; fill:#1A2449; opacity:.92;}
.contact--wa .icon{fill:#25D366;}
.contact__value{font-weight:900; font-size:20px; letter-spacing:.2px;}
.contact__label{font-size:13px; color: rgba(26,36,73,.65); margin-top:2px;}
.contact__text{display:flex; flex-direction:column; line-height:1.05;}
.navbar{background:#1A2449;}
.navbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 12px;
}
.nav{
  display:flex; gap: 30px; align-items:center;
}
.nav__link, .nav__dropdownBtn{
  color:#fff; text-decoration:none; font-weight:800; font-size:14px;
  letter-spacing:.6px; text-transform:uppercase;
  background:transparent; border:0; cursor:pointer; padding: 8px 0;
}
.nav__link:hover, .nav__dropdownBtn:hover{opacity:.9; text-decoration:underline;}
.caret{font-size:12px; margin-left:6px; opacity:.9;}
.cta-pill{
  background:#455EAA; color:#fff; text-decoration:none; font-weight:900;
  padding: 12px 18px; border-radius: 12px; text-transform:uppercase; letter-spacing:.6px;
  display:inline-flex; align-items:center; gap:10px;
}
.cta-pill:hover{filter:brightness(1.05);}

.nav__toggle{
  display:none;
  background: rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px 12px;
  font-size:18px;
}

/* Dropdown */
.nav__dropdown{position:relative;}
.nav__dropdownMenu{
  position:absolute; top: 44px; left:0;
  background:#fff;
  border:1px solid rgba(26,36,73,.12);
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 14px 34px rgba(26,36,73,.18);
  padding: 10px;
  display:none;
}
.nav__dropdownMenu.is-open{display:block;}
.nav__dropdown--open .nav__dropdownMenu{display:block;}
.nav__sublink{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration:none;
  color:#1A2449;
  font-weight:800;
}
.nav__sublink:hover{background: rgba(69,94,170,.10);}

/* Mobile */
@media (max-width: 980px){
  .topbar__inner{flex-direction:column; align-items:flex-start;}
  .topbar__contacts{width:100%; justify-content:space-between; gap:14px; flex-wrap:wrap;}
  .contact__value{font-size:16px;}
  .brand__logo{height:60px;}
  .nav__toggle{display:inline-flex;}
  .nav{display:none; flex-direction:column; align-items:flex-start; gap:14px; width:100%; padding: 10px 0 0 0;}
  .nav--open{display:flex;}
  .navbar__inner{align-items:flex-start; flex-wrap:wrap;}
  .cta-pill{width:100%; justify-content:center;}
  .nav__dropdownMenu{position:static; box-shadow:none; border:0; padding: 0; background:transparent; display:none;}
  .nav__sublink{color:#fff; padding: 8px 0; border-radius: 0;}
  .nav__sublink:hover{background:transparent; text-decoration:underline;}
}


/* Larger logo for header */
.brand__logo--large{
  height: 90px;
}
@media (max-width: 980px){
  .brand__logo--large{height:70px;}
}

/* Emergency subtitle spacing */
.contact--wa .contact__label{
  color:#25D366;
  font-weight:700;
  font-size:12px;
}
.topbar__contacts{
  gap: 28px;
}

/* WhatsApp green styling */
.contact--wa .icon{fill:#25D366 !important;}
.contact--wa .contact__value{color:#25D366 !important; font-weight:900;}

/* Extra large logo like DWLG influence */
.brand__logo--large{
  height: 120px;
}
@media (max-width: 1200px){
  .brand__logo--large{height:100px;}
}
@media (max-width: 768px){
  .brand__logo--large{height:78px;}
}

/* Blue banner emphasis */
.navbar{
  background:#1A2449;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.nav__link, .nav__dropdownBtn{
  font-size:15px;
  font-weight:900;
  letter-spacing:.8px;
}
.navbar__inner{
  min-height:64px;
}

/* FINAL OVERRIDES (ensure visible changes) */
.site-header .brand__logo--large{height: 120px !important;}
@media (max-width:1200px){ .site-header .brand__logo--large{height:100px !important;} }
@media (max-width:768px){ .site-header .brand__logo--large{height:78px !important;} }

.site-header .contact--wa .contact__value{color:#25D366 !important;}

/* Left column logo layout */
.topbar__inner{
  display:grid !important;
  grid-template-columns: auto 1fr;
  align-items:center;
  gap: 30px;
}
.brand{
  grid-column: 1;
  justify-self: start;
}
.topbar__contacts{
  grid-column: 2;
  justify-self: end;
  display:flex;
  align-items:center;
  gap: 32px;
}
@media (max-width: 980px){
  .topbar__inner{
    grid-template-columns: 1fr;
  }
  .topbar__contacts{
    justify-self: stretch;
    justify-content: space-between;
  }
}



/* DESIGN OVERRIDES: white banner text, larger logo, even contact spacing */
.navbar{background:#1A2449 !important;}
.nav__link, .nav__dropdownBtn{color:#ffffff !important; opacity:1 !important;}
.nav__link:hover, .nav__dropdownBtn:hover{color:#ffffff !important; opacity:.9 !important;}

.site-header .brand__logo--large{height: 130px !important;}
@media (max-width:1200px){ .site-header .brand__logo--large{height:110px !important;} }
@media (max-width:768px){ .site-header .brand__logo--large{height:80px !important;} }

/* Evenly space WhatsApp / Phone / Email */
.topbar__contacts{
  display:grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
  justify-items: stretch !important;
}
.contact{
  width: 100%;
  border: 1px solid rgba(26,36,73,.12);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
}
.contact .icon{flex: 0 0 auto;}
.contact__text{min-width:0;}
.contact__value{white-space:nowrap;}

/* WhatsApp emphasis */
.contact--wa .contact__value{color:#25D366 !important;}
.contact--wa .icon{fill:#25D366 !important;}

@media (max-width: 980px){
  .topbar__inner{display:block !important;}
  .topbar__contacts{grid-template-columns:1fr !important;}
  .contact{padding: 12px 12px;}
}



/* DWLG-inspired but modern header tweaks */
.site-header{box-shadow: 0 8px 26px rgba(0,0,0,.10) !important;}
.topbar{border-bottom: 1px solid rgba(26,36,73,.10);}
.topbar__inner{
  display:grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 34px !important;
  align-items:center !important;
}
.site-header .brand__logo--large{height: 140px !important;}
@media (max-width:1200px){ .site-header .brand__logo--large{height:115px !important;} }
@media (max-width:768px){ .site-header .brand__logo--large{height:82px !important;} }

/* Contact row – clean blocks like DWLG (no boxes), evenly spaced */
.topbar__contacts{
  display:flex !important;
  justify-content: flex-end !important;
  gap: 46px !important;
  align-items:center !important;
}
.contact{
  width:auto !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.contact .icon{width: 34px !important; height: 34px !important;}
.contact__value{
  font-weight: 900 !important;
  font-size: 22px !important;
  letter-spacing: .2px !important;
}
.contact__label{
  font-size: 12.5px !important;
  letter-spacing: .2px !important;
  color: rgba(26,36,73,.70) !important;
  margin-top: 4px !important;
}
.contact--wa .contact__value{color:#25D366 !important;}
.contact--wa .contact__label{color:#25D366 !important; font-weight:800 !important;}
.contact--wa .icon{fill:#25D366 !important;}

/* Blue banner – DWLG-style nav, but cleaner */
.navbar{background:#1A2449 !important; box-shadow: none !important;}
.navbar__inner{min-height: 66px !important;}
.nav{gap: 32px !important;}
.nav__link, .nav__dropdownBtn{
  color:#fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: .9px !important;
  text-transform: uppercase !important;
}
.nav__link:hover, .nav__dropdownBtn:hover{opacity: .92 !important; text-decoration:none !important;}
.nav__link::after, .nav__dropdownBtn::after{
  content:'';
  display:block;
  height:2px;
  width:0;
  background: rgba(255,255,255,.85);
  transition: width .18s ease;
  margin-top: 6px;
}
.nav__link:hover::after, .nav__dropdownBtn:hover::after{width:100%;}

.cta-pill{
  background:#455EAA !important;
  border-radius: 999px !important;
  padding: 12px 18px !important;
  box-shadow: 0 10px 22px rgba(69,94,170,.35);
}

/* Responsive */
@media (max-width: 980px){
  .topbar__inner{grid-template-columns: 1fr !important; gap: 10px !important;}
  .topbar__contacts{
    gap: 14px !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
  }
  .contact__value{font-size: 16px !important;}
  .contact .icon{width:28px !important; height:28px !important;}
}



/* Commercial brand logos (text-based tiles if image logos not provided) */
.brand-logos{margin: 28px auto 10px auto;}
.brand-logos h2{margin:0 0 10px 0; color:#1A2449;}
.brand-logos p{margin:0 0 14px 0; color:rgba(26,36,73,.75);}
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.brand-tile{
  border: 1px solid rgba(26,36,73,.12);
  border-radius: 16px;
  padding: 16px 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(26,36,73,.06);
}
.brand-mark{
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .2px;
  color:#1A2449;
}
.brand-sub{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(26,36,73,.72);
  line-height: 1.3;
}
@media (max-width: 980px){
  .brand-grid{grid-template-columns: 1fr;}
}




/* Areas page: note + full-width map layout */
.areas-note{
  padding: 26px 0 24px 0;
  text-align: center;
}
.areas-note p{
  max-width: 980px;
  margin: 0 auto;
  color: rgba(26,36,73,.70);
  line-height: 1.7;
  font-size: 16px;
}
.areas-map{
  background: #f6f7fb;
  padding: 26px 0 0 0;
}
.areas-map iframe{
  display:block;
  width: 100%;
  height: 520px;
  border: 0;
}
@media (max-width: 768px){
  .areas-map iframe{height: 420px;}
}




/* Testimonials hero layout (DWLG-modern inspired) */
.test-hero{
  position: relative;
  padding: 70px 0 56px 0;
  background: linear-gradient(180deg, rgba(26,36,73,.85), rgba(26,36,73,.85));
  background-size: cover;
  background-position: center;
  color: #fff;
}
.test-hero__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.35);
}
.test-hero__inner{
  position: relative;
  z-index: 1;
}
.test-hero h1{
  margin: 0 0 8px 0;
  font-size: 54px;
  letter-spacing: .4px;
}
.test-hero p{
  margin: 0 0 28px 0;
  max-width: 920px;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
}

/* Cards */
.test-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.tcard{
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 18px 18px 16px 18px;
  backdrop-filter: blur(4px);
}
.tname{
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}
.trole{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.82);
}
.tquote{
  margin: 12px 0 14px 0;
  color: rgba(255,255,255,.92);
  line-height: 1.6;
}
.tstars{
  font-size: 18px;
  letter-spacing: 2px;
  color: #f5c542; /* gold */
}

/* Responsive */
@media (max-width: 980px){
  .test-hero h1{font-size: 38px;}
  .test-grid{grid-template-columns: 1fr; }
}





/* FAQ CTA buttons */
.faq-hero__inner{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}
.faq-cta{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.faq-btn--wa{background:#25D366;color:#fff;}
.faq-btn--call{background:#455EAA;color:#fff;}
.faq-btn--email{background:#1A2449;color:#fff;}

@media (max-width: 980px){
  .faq-hero__inner{
    grid-template-columns: 1fr;
  }
  .faq-cta{
    flex-direction: row;
    flex-wrap: wrap;
  }
}




/* FAQ spacing improvements */
.faq-hero{
  padding: 110px 0 90px 0;
}

.faq-hero h1{
  margin-bottom: 14px;
}

.faq-hero p{
  margin-bottom: 24px;
}

.faq-cta{
  margin-top: 12px;
}

.faq-cta .faq-btn{
  margin-bottom: 4px;
}

/* Main FAQ content spacing */
.faq-list, .faq-section, .content{
  padding-top: 70px !important;
  padding-bottom: 80px !important;
}

.faq-item, .faq-question, .faq-answer{
  margin-bottom: 22px;
}

.faq-item{
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(26,36,73,.08);
}

.faq-item:last-child{
  border-bottom: none;
}




/* FAQ CTA buttons on RIGHT */
.faq-hero__inner{
  grid-template-columns: 1fr auto !important;
}

.faq-hero__inner h1,
.faq-hero__inner p{
  grid-column: 1;
}

.faq-cta{
  grid-column: 2;
  justify-self: end;
  align-items: flex-end;
  text-align: right;
}

@media (max-width: 980px){
  .faq-hero__inner{
    grid-template-columns: 1fr !important;
  }
  .faq-cta{
    grid-column: 1;
    justify-self: flex-start;
    align-items: flex-start;
    text-align: left;
  }
}




/* FAQ numbering line spacing */
.faq-list li,
.faq-item,
.faq-question,
.faq-answer{
  line-height: 1.5;
}




/* FAQ hero Ask a Question button */
.faq-btn--quote{
  background:#f5c542;
  color:#1A2449;
  font-weight:900;
}



/* Premium FAQ styling */
.faq-hero__inner{
  align-items: center;
}
.faq-hero__inner h1{
  text-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.faq-hero__inner p{
  font-size: 17px;
}
.faq-cta .faq-btn{
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
}
.faq-btn--call{background: rgba(69,94,170,.95);}
.faq-btn--email{background: rgba(26,36,73,.95);}
.faq-btn--wa{background: rgba(37,211,102,.95);}
.faq-btn--quote{background: rgba(245,197,66,.98);}

.faq-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.faq-btn{transition: transform .15s ease, filter .15s ease;}

.section{
  background: #f6f7fb;
}
.section .container{
  max-width: 1060px;
}
.faq-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin-top: 18px;
}

details.faq{
  background: #fff;
  border: 1px solid rgba(26,36,73,.10);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(26,36,73,.08);
  overflow: hidden;
}
details.faq summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  font-weight: 900;
  color: #1A2449;
  letter-spacing: .1px;
  position: relative;
  padding-right: 54px;
}
details.faq summary::-webkit-details-marker{display:none;}
details.faq summary::after{
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #1A2449;
  background: rgba(69,94,170,.10);
}
details.faq[open] summary::after{
  content: "–";
  background: rgba(69,94,170,.16);
}
details.faq p{
  margin: 0;
  padding: 0 18px 18px 18px;
  color: rgba(26,36,73,.78);
  line-height: 1.65;
  font-size: 15px;
}
details.faq:hover{
  border-color: rgba(69,94,170,.28);
  box-shadow: 0 18px 36px rgba(26,36,73,.10);
}
details.faq{transition: box-shadow .18s ease, border-color .18s ease;}

@media (max-width: 980px){
  .faq-grid{grid-template-columns: 1fr;}
}



/* FAQ hero single white CTA */
.faq-btn--white{
  background: #ffffff !important;
  color: #1A2449 !important;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.75);
}
.faq-btn--white:hover{
  background: #f4f6ff !important;
  color: #1A2449 !important;
}




/* Areas hero with map */
.areas-hero{
  position: relative;
  height: 520px;
  overflow: hidden;
}
.areas-hero__map iframe{
  width:100%;
  height:100%;
  border:0;
}
.areas-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(26,36,73,.65), rgba(26,36,73,.85));
}
.areas-hero__inner{
  position:absolute;
  left:0; right:0; bottom:32px;
  color:#fff;
}
.areas-hero h1{
  font-size: 52px;
  margin:0 0 8px 0;
}
.areas-hero p{
  max-width: 880px;
  color: rgba(255,255,255,.9);
  line-height:1.6;
}
@media (max-width: 980px){
  .areas-hero{height:420px;}
  .areas-hero h1{font-size:36px;}
}





/* If areas are paragraphs instead of lists */
.areas-directory p{
  background:#fff;
  border:1px solid rgba(26,36,73,.10);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(26,36,73,.06);
}

@media (max-width: 1100px){
  .areas-directory ul{grid-template-columns: repeat(3, minmax(0,1fr));}
}
@media (max-width: 820px){
  .areas-directory ul{grid-template-columns: repeat(2, minmax(0,1fr));}
}
@media (max-width: 520px){
  .areas-directory ul{grid-template-columns: 1fr;}
}




/* Align Areas page colouring to FAQ page */

body{
  background:#f6f7fb;
}

/* Areas content sections */
.areas-note,
.container.content,
.areas-list,
.areas-directory,
.areas-directory-table{
  background: transparent;
}

.container.content{
  padding-top: 60px;
  padding-bottom: 70px;
}

/* Areas tables / lists sit on white cards like FAQ */
.areas-table-wrap,
.areas-list ul,
.areas-list table,
.areas-content,
.areas-block{
  background:#ffffff;
  border-radius:18px;
  border:1px solid rgba(26,36,73,.10);
  box-shadow: 0 12px 28px rgba(26,36,73,.06);
}

/* Text tone alignment */
.container.content h2,
.container.content h3{
  color:#1A2449;
}

.container.content p,
.container.content li{
  color: rgba(26,36,73,.78);
}

/* Spacing similar to FAQ */
.container.content > * + *{
  margin-top: 22px;
}




/* Match Commercial hero colour treatment to FAQ hero */
.commercial-hero,
.pagehero--commercial{
  position: relative;
  background-size: cover;
  background-position: center;
}

.commercial-hero::before,
.pagehero--commercial::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(26,36,73,.62);
  z-index:0;
}

.commercial-hero > *,
.pagehero--commercial > *{
  position: relative;
  z-index: 1;
}

.commercial-hero h1,
.pagehero--commercial h1{
  text-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.commercial-hero p,
.pagehero--commercial p{
  color: rgba(255,255,255,.9);
  text-shadow: 0 8px 20px rgba(0,0,0,.35);
}




/* FAQ hero – match Testimonials image quality */
.faq-hero{
  background-size: cover;
  background-position: center;
  position: relative;
}

.faq-hero__overlay{
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px) saturate(1.08);
  -webkit-backdrop-filter: blur(2px) saturate(1.08);
}

.faq-hero h1{
  text-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.faq-hero p{
  color: rgba(255,255,255,.9);
  text-shadow: 0 8px 20px rgba(0,0,0,.35);
}




/* Force logo top-left positioning while keeping size */
.site-header .topbar__inner{
  justify-content: space-between !important;
}

.site-header .brand{
  margin-right: auto !important;
  display: flex !important;
  align-items: center !important;
}

.site-header .brand img,
.site-header .brand__logo--large{
  display:block;
  margin-left:0 !important;
}




/* Reduced side margins – wider content */
.container{
  max-width: 1320px !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

@media (max-width: 768px){
  .container{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}




/* Header contacts: move left and reduce font size slightly */
.topbar__contacts{
  justify-content: flex-start !important;
  margin-left: 24px;
}

.contact{
  align-items: flex-start !important;
  text-align: left !important;
}

.contact__value{
  font-size: 19px !important;
}

.contact__label{
  font-size: 11.5px !important;
}




/* FAQ hero tidy up */
.faq-hero h1{
  color:#ffffff !important;
  font-size: 54px !important;
  letter-spacing: .3px;
}

.faq-hero p{
  font-size: 20px !important;
  color: rgba(255,255,255,.92) !important;
}

@media (max-width: 900px){
  .faq-hero h1{font-size: 38px !important;}
  .faq-hero p{font-size: 17px !important;}
}


/* Contact form */
.form{display:grid;gap:12px}
.form input,.form textarea{width:100%;padding:12px 12px;border-radius:12px;border:1px solid rgba(26,36,73,.18);font:inherit}
.form input:focus,.form textarea:focus{outline:2px solid rgba(69,94,170,.35);border-color:rgba(69,94,170,.45)}
.form__row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form__actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
@media (max-width:720px){.form__row{grid-template-columns:1fr}}

/* Mobile nav open */
@media (max-width: 920px){
  .nav.nav--open{display:flex}
  .nav__toggle{display:inline-flex}
}

/* Simple form */
.form{max-width:720px}
.form__row{display:grid;gap:6px;margin:12px 0}
.form__label{font-weight:800;color:var(--navy)}
.form__input{width:100%;padding:12px 14px;border-radius:12px;border:1px solid var(--border);background:#fff;font:inherit}
.form__input:focus{outline:2px solid rgba(69,94,170,.25);border-color:rgba(69,94,170,.45)}

/* ===== Gallery ===== */
.page-hero { padding: 44px 0 10px; }
.page-hero h1 { margin: 0 0 8px; }
.page-hero .note { margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(0,0,0,.04); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 920px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}
.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery-card__cap {
  padding: 12px 14px;
  font-weight: 700;
}

.gallery-card__ph {
  height: 220px;
  display: grid;
  place-content: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(13,45,107,.08), rgba(83,111,170,.12));
}
.gallery-card__phTitle { font-weight: 900; letter-spacing: .3px; }
.gallery-card--placeholder { cursor: default; }
.gallery-card--placeholder:hover { transform: none; box-shadow: 0 10px 28px rgba(0,0,0,.08); }

.gallery-help {
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.03);
}

/* ===== Lightbox ===== */
.no-scroll { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.lightbox--open { display: block; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
.lightbox__panel {
  position: relative;
  max-width: 980px;
  width: calc(100% - 28px);
  margin: 42px auto;
  background: #0b0f18;
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0,0,0,.4);
  overflow: hidden;
}
.lightbox__img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  background: #0b0f18;
}
.lightbox__cap {
  padding: 12px 14px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  background: rgba(255,255,255,.12);
  color: #fff;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 32px;
  background: rgba(255,255,255,.12);
  color: #fff;
}
.lightbox__prev { left: 10px; }
.lightbox__next { right: 10px; }
@media (max-width: 560px) {
  .lightbox__nav { display: none; }
  .lightbox__panel { margin: 18px auto; }
}

.gallery-code {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #0b0f18;
  color: rgba(255,255,255,.92);
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.45;
}


/* ===== HOMEPAGE HERO (DESIGN MATCH) ===== */
.home-hero{ padding:0; }
.home-hero__grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 520px;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,.06);
}
.home-hero__copy{
  padding: 70px 60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.home-hero__copy h1{
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 18px 0;
  white-space: pre-line;
}
.home-hero__sub{
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 18px 0;
  color: var(--brand, #2f5aa6);
}
.home-hero__serving{
  margin: 0 0 22px 0;
  color: rgba(0,0,0,.55);
  font-style: italic;
}
.home-hero__actions{ display:flex; gap:12px; flex-wrap:wrap; }
.home-hero__image{
  background-size: cover;
  background-position: center;
  min-height: 520px;
  border-left: 1px solid rgba(0,0,0,.06);
}
@media (max-width: 900px){
  .home-hero__grid{ grid-template-columns: 1fr; }
  .home-hero__copy{ padding: 46px 22px; }
  .home-hero__image{ min-height: 280px; border-left: none; border-top: 1px solid rgba(0,0,0,.06); }
}

/* ===== COMMERCIAL BRAND LOGOS STRIP ===== */
.brand-logos{
  width:100%;
  height:auto;
  display:block;
  margin-top:18px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}


/* ===== SERVICE TILES (DWLG-INSPIRED) ===== */
.section--tiles .section-sub{ margin-top:6px; margin-bottom:18px; color: rgba(0,0,0,.6); }
.tiles{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tile{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.tile h3{ margin:0; font-size: 18px; }
.tile p{ margin:0; color: rgba(0,0,0,.65); }
.btn--small{ padding:10px 12px; border-radius: 10px; font-weight: 800; display:inline-flex; width:max-content; }
@media (max-width: 1000px){
  .tiles{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .tiles{ grid-template-columns: 1fr; }
}

/* ===== LATEST WORK STRIP ===== */
.latest-work{ background: #f6f8fb; border-top: 1px solid rgba(0,0,0,.06); }
.latest-work .card{ display:flex; flex-direction:column; gap:10px; }

/* ===== NEWSLETTER (STATIC FORM) ===== */
.newsletter{
  display:grid;
  grid-template-columns: 1fr 1fr auto;
  gap:10px;
  margin-top:10px;
}
.newsletter input{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color:#fff;
}
.newsletter input::placeholder{ color: rgba(255,255,255,.7); }
.newsletter button{
  padding:10px 14px;
  border-radius:10px;
  border:0;
  font-weight:900;
  cursor:pointer;
}
@media (max-width: 900px){
  .newsletter{ grid-template-columns: 1fr; }
}

/* ===== COMMERCIAL BRANDS WRAP ===== */
.brands-wrap{ margin-top: 16px; }


/* ===== LAMINATED BANNER ===== */
.laminated-banner{
  padding: 0;
  background: #0f2345;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.laminated-banner__inner{
  position: relative;
  padding: 22px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  border-radius: 14px;
  margin-top: 18px;
  margin-bottom: 18px;
  color:#fff;
  /* glossy laminate look */
  background:
    linear-gradient(180deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,0) 35%),
    linear-gradient(135deg, rgba(47,90,166,.95) 0%, rgba(13,27,42,.95) 55%, rgba(0,0,0,.55) 120%);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  overflow:hidden;
}
.laminated-banner__inner:before{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.22) 45%, rgba(255,255,255,0) 70%);
  transform: rotate(-12deg);
  pointer-events:none;
}
.laminated-banner__copy h2{
  margin:0 0 6px 0;
  font-size: 20px;
  letter-spacing: .2px;
}
.laminated-banner__copy p{
  margin:0;
  color: rgba(255,255,255,.82);
}
.laminated-banner__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}
@media (max-width: 820px){
  .laminated-banner__inner{ flex-direction:column; align-items:flex-start; }
  .laminated-banner__actions{ width:100%; }
}


/* ===== LAMINATED STRIP BANNER (MATCH STYLE) ===== */
.laminated-strip{
  background:#fff;
  overflow:hidden;
}
.laminated-strip__inner{
  position:relative;
  padding: 12px 0;
}
.laminated-strip__track{
  display:flex;
  gap: 52px;
  align-items:center;
  width:max-content;
  animation: laminatedMarquee 18s linear infinite;
  padding-left: 36px;
}

.laminated-strip__item{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  color: #2f5aa6;
  text-transform: uppercase;
  font-size: clamp(14px, 1.6vw, 22px);
  white-space: nowrap;
}

.laminated-strip__icon{
  height: 34px;
  width: auto;
  display:block;
  opacity: .95;
}
@keyframes laminatedMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .laminated-strip__track{ animation: none; }
}

/* ===== SERVICE TILE IMAGE ===== */
.tile-img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:10px;
}

/* ===== FEATURE SLAB (MOCKUP STYLE) ===== */
.feature-slab{
  padding: 28px 0;
  background: #f6f8fb;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.feature-slab__inner{}
.feature{
  background: radial-gradient(900px 380px at 20% 10%, rgba(71,120,214,.30), rgba(0,0,0,0) 55%),
              linear-gradient(135deg, #142a4d 0%, #0d1b2a 75%);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
  overflow: hidden;
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 340px;
}
.feature__copy{
  padding: 46px 44px;
  color: #fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 16px;
}
.feature__title{
  margin:0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .2px;
}
.feature__kicker{
  display:flex;
  flex-direction:column;
  gap: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.feature__kitem{
  display:flex;
  align-items:center;
  gap: 12px;
}
.feature__icon{
  width: 34px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
}
.feature__desc{
  margin:0;
  color: rgba(255,255,255,.80);
  max-width: 52ch;
  line-height: 1.6;
}
.feature__actions{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 6px; }
.feature__media{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
}
.feature__img{
  width:100%;
  max-width: 520px;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
}
.feature__img img{
  width:100%;
  height: 100%;
  display:block;
  object-fit: cover;
}
@media (max-width: 980px){
  .feature{
  background: radial-gradient(900px 380px at 20% 10%, rgba(71,120,214,.30), rgba(0,0,0,0) 55%),
              linear-gradient(135deg, #142a4d 0%, #0d1b2a 75%);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
  overflow: hidden;
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 340px;
}
  .feature__copy{ padding: 34px 22px; }
  .feature__media{ padding: 18px; }
}

.feature__intro{
  margin:0;
  font-weight:600;
  color: rgba(255,255,255,.9);
}
.feature__list{
  margin: 6px 0 6px 0;
  padding-left: 18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 6px 16px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.feature__list li{
  list-style: disc;
}
@media (max-width: 900px){
  .feature__list{ grid-template-columns: 1fr; }
}

/* ===== FEATURE VARIANTS ===== */

.feature-emergency .feature{
  background: radial-gradient(900px 380px at 20% 10%, rgba(255,140,90,.30), rgba(0,0,0,0) 55%),
              linear-gradient(135deg, #4a1c12 0%, #1a0a06 75%);
}

.feature-bifold .feature{
  background: radial-gradient(900px 380px at 20% 10%, rgba(46,160,214,.30), rgba(0,0,0,0) 55%),
              linear-gradient(135deg, #0f3c5c 0%, #081b2a 75%);
}

.feature-doors .feature{
  background: linear-gradient(135deg, rgba(62, 150, 214, 0.85), rgba(17, 68, 112, 0.95));
}
.feature-windows .feature{
  background: radial-gradient(900px 380px at 20% 10%, rgba(92,190,142,.30), rgba(0,0,0,0) 55%),
              linear-gradient(135deg, #0f3f2a 0%, #071b12 75%);
}
.feature-commercial .feature{
  background: radial-gradient(900px 380px at 20% 10%, rgba(180,120,214,.30), rgba(0,0,0,0) 55%),
              linear-gradient(135deg, #2f1a46 0%, #140a22 75%);
}

/* ===== FEATURE GRID SIDE BY SIDE ===== */
.feature-grid__inner{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
}
.feature-grid .feature-slab{
  padding: 0;
}
.feature-grid .feature{
  min-height: 300px;
}
@media (max-width: 980px){
  .feature-grid__inner{
    grid-template-columns: 1fr;
  }
}

/* ===== COMMERCIAL IMAGE GRID ===== */
.commercial-gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.commercial-gallery .feature__img{
  max-width:100%;
}

/* ===== BIGGER SERVICE IMAGES ===== */
.feature-grid .feature{
  min-height: 380px;
}
.feature__media{
  padding: 18px;
}
.feature__img{
  max-width: 100% !important;
}
.feature__img img{
  min-height: 260px;
}
.commercial-gallery .feature__img img{
  min-height: 220px;
}
@media (max-width: 980px){
  .feature__img img,
  .commercial-gallery .feature__img img{
    min-height: 220px;
  }
}

/* ===== HERO TRUST SECTION ===== */
.hero-trust{
  padding: 60px 0 40px;
  background: #f6f8fb;
}
.hero-trust__inner{
  max-width: 900px;
}
.hero-trust h2{
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 16px;
}
.hero-trust p{
  font-size: 17px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 14px;
}

/* ===== WHY CHOOSE US STRIP ===== */
.why-us{
  padding: 76px 0;
  background: #ffffff;
  color: #0b1220;
}
.why-us h2{
  color: #0b1220;
  text-align: center;
  margin: 0 0 26px;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.why-us__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.why-us__item{
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  padding: 26px 22px;
  min-height: 176px;
  box-shadow: 0 10px 24px rgba(11,18,32,.06);
}
.why-us__icon{
  font-size: 36px;
  margin-bottom: 10px;
}
.why-us__item h3{
  margin: 6px 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: #0b1220;
  text-align: center;
}
.why-us__item p{
  margin: 0;
  color: #334155;
  line-height: 1.55;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 900px){
  .why-us__grid{ grid-template-columns: 1fr; }
  .why-us{ padding: 56px 0; }
}

/* ===== PREMIUM SERVICES INTRO ===== */
.services-intro-premium{
  padding:80px 0 60px;
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.services-intro-premium__inner{
  max-width:900px;
}
.services-intro-premium h2{
  font-size:clamp(28px,3vw,38px);
  margin-bottom:18px;
}
.services-intro-premium p{
  font-size:17px;
  line-height:1.75;
  color:#2f2f2f;
  margin-bottom:14px;
}
.services-intro-premium__note{
  margin-top:18px;
  font-weight:600;
  color:#2f5aa6;
}

/* ===== 4 COLUMN SERVICES SECTION ===== */
.services-4col{
  padding: 70px 0 60px;
  background: #f6f8fb;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.services-4col__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom: 22px;
}
.services-4col__head h2{ margin:0; font-size: clamp(24px, 2.6vw, 34px); }
.services-4col__head p{ margin:0; color: rgba(0,0,0,.62); max-width: 56ch; }

.services-4col__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.svc-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  text-decoration:none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.svc-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.svc-card__img{
  height: 150px;
  background-size: cover;
  background-position: center;
}
.svc-card__body{
  padding: 16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.svc-card__body h3{
  margin:0;
  font-size: 16px;
  letter-spacing: .2px;
}
.svc-card__body p{
  margin:0;
  color: rgba(0,0,0,.62);
  line-height: 1.55;
  font-size: 14px;
}
.svc-card__cta{
  margin-top: 4px;
  font-weight: 800;
  color: #2f5aa6;
  font-size: 14px;
}
@media (max-width: 1100px){
  .services-4col__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .services-4col__head{ flex-direction:column; align-items:flex-start; }
  .services-4col__grid{ grid-template-columns: 1fr; }
  .svc-card__img{ height: 170px; }
}

/* ===== HERO TRUST INLINE ===== */
.hero-trust-inline{
  margin-top: 28px;
  max-width: 720px;
}
.hero-trust-inline h3{
  font-size: 22px;
  margin-bottom: 10px;
}
.hero-trust-inline p{
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(0,0,0,.68);
  margin-bottom: 10px;
}

/* ===== CREDIBILITY STRIP ===== */
.cred-strip{
  background:#4664a8;
  padding:55px 0;
  margin-top:10px;
}
.cred-top{
  color:#fff;
  text-align:center;
  font-weight:700;
  letter-spacing:.08em;
  margin-bottom:35px;
}
.cred-logos{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap:26px;
  align-items:center;
}
.cred-logos img{
  background:#fff;
  padding:18px;
  border-radius:14px;
  max-width:100%;
  height:70px;
  object-fit:contain;
}
@media(max-width:900px){
  .cred-logos{grid-template-columns:repeat(2,1fr);}
}


/* --- REMOVE HEADER/BANNER SHADOW LINES --- */
.site-header{box-shadow:none !important;}
.topbar{border-bottom:0 !important;}
.laminated-strip{}
/* ---------------------------------------- */


/* --- Subtle divider under animated banner only --- */
.laminated-strip{
  }
/* ----------------------------------------------- */


/* --- Logo clipping / positioning fix --- */
.topbar__inner{ align-items: center !important; }
.brand{ overflow: visible !important; display:flex !important; align-items:center !important; }
.brand__logo, .brand__logo--large{
  height: 74px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
}
.topbar{ overflow: visible !important; }
.site-header{ overflow: visible !important; }
/* -------------------------------------- */



/* --- Move logo further left --- */
.topbar__inner {
  padding-left: 6px !important;
}
.brand {
  margin-left: -18px !important;
}
/* -------------------------------- */


/* ABOUT PAGE PRETTY */

.about-hero{background: linear-gradient(135deg, rgba(15,36,68,.06), rgba(59,97,168,.06)); padding: 46px 0 34px;}
.about-hero__inner{display:grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items:center;}
.about-hero .kicker{letter-spacing:.14em; font-weight:700; color: rgba(15,36,68,.75); font-size: 12px; margin-bottom: 10px;}
.about-hero h1{margin:0 0 14px; font-size: clamp(34px, 4vw, 52px); line-height:1.05;}
.about-hero .lead{font-size: 16.5px; line-height:1.6; color: rgba(15,36,68,.82); margin:0;}
.about-hero__chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px;}
.chip{display:inline-flex; align-items:center; padding:8px 12px; border-radius:999px; background:#ffffff; border:1px solid rgba(15,36,68,.10); color: rgba(15,36,68,.85); font-weight:600; font-size:13px;}
.about-hero__image{border-radius:18px; overflow:hidden; border:1px solid rgba(15,36,68,.10); box-shadow: 0 18px 50px rgba(15,36,68,.08); background:#fff;}
.about-hero__image img{display:block; width:100%; height:auto;}

.about-body{padding: 34px 0 54px;}
.about-split{display:grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items:start;}
.card--soft{background:#ffffff; border:1px solid rgba(15,36,68,.10); border-radius:18px; padding:22px; box-shadow: 0 18px 50px rgba(15,36,68,.06);} 
.about-tiles{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px;}
.tile{display:flex; gap: 12px; align-items:flex-start; background:#fff; border:1px solid rgba(15,36,68,.10); border-radius:16px; padding:14px 14px; box-shadow: 0 12px 30px rgba(15,36,68,.05);} 
.tile__icon{width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:12px; background: rgba(59,97,168,.10); font-size:18px;}
.tile__title{font-weight:800; color: rgba(15,36,68,.92);}
.tile__sub{color: rgba(15,36,68,.65); font-size: 13px; margin-top:2px;}

.about-gallery{margin-top:22px; display:grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items:stretch;}
.about-gallery__item{border-radius:18px; overflow:hidden; border:1px solid rgba(15,36,68,.10); background:#fff; box-shadow: 0 18px 50px rgba(15,36,68,.06);} 
.about-gallery__item img{display:block; width:100%; height:auto;}
.promise{border-radius:18px; border:1px solid rgba(15,36,68,.10); background: linear-gradient(135deg, rgba(15,36,68,.04), rgba(59,97,168,.06)); padding:22px; box-shadow: 0 18px 50px rgba(15,36,68,.06);} 
.promise ul{margin:12px 0 0; padding-left:18px; color: rgba(15,36,68,.78); line-height:1.6;}
.promise li{margin:8px 0;}
.promise__cta{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px;}

.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:12px 14px; border-radius:14px; text-decoration:none; font-weight:800;}
.btn--primary{background:#3b61a8; color:#fff;}
.btn--primary:hover{filter:brightness(.95);} 
.btn--ghost{background:#fff; color:#0f2444; border:1px solid rgba(15,36,68,.16);} 
.btn--ghost:hover{background: rgba(15,36,68,.04);} 

@media (max-width: 980px){
  .about-hero__inner{grid-template-columns: 1fr;}
  .about-split{grid-template-columns: 1fr;}
  .about-gallery{grid-template-columns: 1fr;}
  .about-tiles{grid-template-columns: 1fr;}
}


/* ABOUT PAGE ENHANCEMENTS */
.about-hero{
  background: linear-gradient(135deg, rgba(15,36,68,1) 0%, rgba(42,86,160,1) 100%);
  color:#fff;
  padding: 46px 0;
}
.about-hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch;
}
.about-hero__copy .eyebrow{
  letter-spacing: .14em;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 10px;
}
.about-hero__copy h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}
.about-hero__copy .lead{
  font-size: 16px;
  line-height: 1.6;
  opacity: .95;
  max-width: 60ch;
}
.about-hero__chips{
  display:flex; flex-wrap:wrap; gap:10px; margin-top: 16px;
}
.chip{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}
.about-hero__media{ display:flex; justify-content:flex-end; }
.about-hero__card{
  width: 100%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 18px;
  padding: 18px;
  display:grid;
  gap: 14px;
}
.about-hero__stat{
  display:flex; gap: 14px; align-items: baseline;
  padding: 12px 12px;
  background: rgba(15,36,68,.25);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
}
.about-hero__stat .num{ font-size: 28px; font-weight: 800; }
.about-hero__stat .lbl{ font-size: 13px; opacity: .95; line-height:1.2; }

.section--soft{ background: rgba(15,36,68,.035); }
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: start;
}
.pill-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.pill-list span{
  background:#fff;
  border:1px solid rgba(15,36,68,.12);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
}
.card--elev{
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15,36,68,.10);
}
.mb-8{ margin-bottom: 8px; }
.badge-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}
.badge{
  display:flex; gap:10px; align-items:center;
  background: rgba(15,36,68,.04);
  border: 1px solid rgba(15,36,68,.10);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 13px;
}
.badge__icon{ font-size: 16px; }
.note{
  margin-top: 12px;
  font-size: 12px;
  opacity: .8;
  background: rgba(42,86,160,.08);
  border: 1px dashed rgba(42,86,160,.25);
  padding: 10px 12px;
  border-radius: 14px;
}

.promise{
  background: #fff;
  border: 1px solid rgba(15,36,68,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15,36,68,.06);
}
.promise__head{ display:flex; justify-content:space-between; gap: 14px; align-items: baseline; flex-wrap:wrap; }
.promise__grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.promise__item{
  background: rgba(15,36,68,.03);
  border: 1px solid rgba(15,36,68,.10);
  border-radius: 16px;
  padding: 14px;
}
.promise__title{ font-weight: 800; margin-bottom: 6px; }
.promise__text{ opacity: .85; font-size: 13px; line-height: 1.5; }

.section-head{ margin-bottom: 14px; }
.gallery2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.shot{
  margin:0;
  background:#fff;
  border:1px solid rgba(15,36,68,.10);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(15,36,68,.06);
}
.shot img{ width:100%; height:auto; display:block; }
.cta-row{
  display:flex; gap: 14px; align-items:center;
  margin-top: 18px;
}
.cta-row .link{ font-weight: 700; text-decoration: none; }

@media (max-width: 920px){
  .about-hero__inner{ grid-template-columns: 1fr; }
  .about-hero__media{ justify-content:flex-start; }
  .split{ grid-template-columns: 1fr; }
  .promise__grid{ grid-template-columns: 1fr; }
  .gallery2{ grid-template-columns: 1fr; }
}
/* END ABOUT PAGE ENHANCEMENTS */


/* --- CLEAN PROFESSIONAL TRUST BADGES (NO ANIMATION) --- */
.badge{
  background:#ffffff !important;
  border:1px solid rgba(26,36,73,.14) !important;
  box-shadow: 0 6px 14px rgba(26,36,73,.06) !important;
  border-radius: 14px !important;
  padding: 14px 14px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: .2px;
  transition: none !important;
}

.badge__icon{
  font-size: 18px !important;
  opacity: .85 !important;
}

.badge:hover{
  transform: none !important;
  box-shadow: 0 6px 14px rgba(26,36,73,.06) !important;
  background:#ffffff !important;
}
/* ----------------------------------------------------- */


/* --- Light blue-grey gradient for trust badges section --- */
.badge{
  background: linear-gradient(135deg, #f4f7fb 0%, #e9eff7 100%) !important;
  border: 1px solid rgba(26,36,73,.12) !important;
  box-shadow: 0 8px 18px rgba(26,36,73,.06) !important;
}

.section--soft{
  background: linear-gradient(180deg, #f5f8fc 0%, #eef3f9 100%) !important;
}
/* -------------------------------------------------------- */


/* --- Home page hero text vertical adjustment --- */
.home-hero,
.hero,
.hero-card,
.hero-grid {
  position: relative;
}

.hero .hero-card,
.home-hero .hero-card {
  padding-top: 42px !important;
}
/* --------------------------------------------- */


/* --- PERFECTLY CENTER HOME HERO TEXT --- */
.hero, .home-hero{
  display:flex;
  align-items:center;
}

.hero-grid{
  align-items:center !important;
}

.hero-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-top: 0 !important;
}
/* -------------------------------------- */


/* --- FOOTER (MATCH DESIGN) --- */
.site-footer{
  background:#14264a;
  color:#fff;
  margin-top: 60px;
}
.site-footer a{ color:#fff; text-decoration:none; }
.site-footer a:hover{ text-decoration: underline; }

.footer-top{ padding: 46px 0 26px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr 1.05fr;
  gap: 34px;
  align-items:start;
}
.footer-logo img{ height: 64px; width:auto; display:block; }
.footer-lead{ margin: 18px 0 8px; font-style: italic; font-weight: 700; }
.footer-text{ margin: 0; opacity:.88; line-height:1.6; max-width: 46ch; }

.footer-social{ display:flex; gap: 14px; margin-top: 22px; }
.social-btn{
  width: 52px; height: 52px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 800;
}

.footer-title{
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
}
.footer-list{ list-style:none; padding:0; margin:0; display:grid; gap: 10px; }
.footer-list a{ opacity:.92; }
.footer-list a:hover{ opacity:1; }

.contact-list{ display:grid; gap: 18px; }
.contact-row{ display:grid; grid-template-columns: 56px 1fr; gap: 14px; align-items:center; }
.contact-ic{
  width: 56px; height: 56px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(98,132,196,.55);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 18px;
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 18px 0;
}
.footer-bottom__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.footer-brandname{ color: rgba(140,176,255,1); font-weight: 800; }
.to-top{
  width: 44px; height: 44px; border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
}
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-title{ font-size: 22px; }
  .footer-bottom__inner{ flex-direction: column; align-items:flex-start; }
}
/* --- END FOOTER --- */



/* ===== PSD-inspired header (logo left, contact blocks right) ===== */
.site-header--psd .topbar-psd{
  background:#fff;
  border-bottom:1px solid var(--border);
}
.site-header--psd .topbar-psd__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 0 14px;
}
.site-header--psd .brand-psd{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.site-header--psd .brand-psd__logo{
  width:320px;
  max-width:100%;
  height:auto;
}
.site-header--psd .contactbar-psd{
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  gap:34px;
  flex-wrap:wrap;
}
.site-header--psd .cblock{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:6px;
  min-width:210px;
  color:var(--navy);
}
.site-header--psd .cblock__icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
}
.site-header--psd .cblock__icon .icon{
  width:34px;
  height:34px;
  fill:var(--navy);
}
.site-header--psd .cblock--wa{ color:#1FAA59; }
.site-header--psd .cblock--wa .cblock__icon .icon{ fill:#1FAA59; }
.site-header--psd .cblock__value{
  font-weight:900;
  font-size:18px;
  letter-spacing:.2px;
  line-height:1.1;
}
.site-header--psd .cblock__label{
  font-weight:800;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.85;
  line-height:1.15;
}

/* Make nav row sit tight to header */
.site-header--psd .navbar{ margin-top:0; }

/* Responsive: stack contacts under logo */
@media (max-width: 980px){
  .site-header--psd .topbar-psd__inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .site-header--psd .contactbar-psd{
    width:100%;
    justify-content:space-between;
    gap:16px;
  }
  .site-header--psd .cblock{
    min-width:0;
    flex:1 1 200px;
  }
}
/* Mobile: make blocks wrap neatly */
@media (max-width: 560px){
  .site-header--psd .brand-psd__logo{ width:260px; }
  .site-header--psd .contactbar-psd{ gap:10px; }
  .site-header--psd .cblock__value{ font-size:16px; }
}




/* ===============================
   Core Services — Expanded + Unison
   Inspired by your request: same style, bigger images, readable text.
   Desktop: horizontal rows. Mobile: stacks.
================================= */

.services-4col__grid--wide{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}

.svc-card--wide{
  display:grid;
  grid-template-columns: 420px 1fr;
  align-items:stretch;
  border-radius: 18px;
  overflow:hidden;
}

.svc-card--wide .svc-card__img{
  min-height: 260px;
  background-size: contain;           /* show full image */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #ffffff;
}

.svc-card--wide .svc-card__body{
  padding: 22px 22px 18px;
}

.svc-card--wide .svc-card__body h3{
  letter-spacing: .06em;
}

.svc-card--wide .svc-card__body p{
  margin-top: 10px;
  max-width: 52ch;
}

/* Make the "showcase" (previously feature slabs) match the same card language */
.core-showcase .feature-slab{
  padding: 0;
}

.core-showcase .feature-slab__inner{
  padding: 0;
}

.core-showcase .feature{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(15,36,68,.10);
  background: #0f2444;               /* deep navy like your existing design */
  color: #fff;
  margin-top: 18px;
}

.core-showcase .feature__copy{
  padding: 26px 22px;
}

.core-showcase .feature__title{
  text-transform: uppercase;
  letter-spacing: .06em;
}

.core-showcase .feature__intro,
.core-showcase .feature__list li{
  color: rgba(255,255,255,.88);
}

.core-showcase .feature__media{
  background: #fff;
}

.core-showcase .feature__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;               /* show full image */
  background: #fff;
}

/* Horizontal "row" feel for showcase on desktop */
@media (min-width: 980px){
  .core-showcase .feature{
    display:grid;
    grid-template-columns: 1fr 420px; /* text + image */
  }
  .core-showcase .feature__media{
    min-height: 320px;
  }
}

/* Responsive stacking */
@media (max-width: 980px){
  .svc-card--wide{
    grid-template-columns: 1fr;
  }
  .svc-card--wide .svc-card__img{
    min-height: 220px;
  }
  .core-showcase .feature{
    display:block;
  }
  .core-showcase .feature__media{
    min-height: 220px;
  }
}

.checklist{list-style:none;padding:0;margin:14px 0 0;display:grid;gap:10px}
.checklist li{padding-left:26px;position:relative;line-height:1.6;color:rgba(14,20,39,.82)}
.checklist li:before{content:'✓';position:absolute;left:0;top:0;color:var(--navy);}


/* --- Force main nav to stay on one line on desktop --- */
.nav {
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav__link,
.nav__dropdownBtn {
  font-size: 14px;
  padding: 10px 12px;
}

@media (max-width: 1100px){
  .nav {
    flex-wrap: wrap; /* allow wrap on tablets/mobiles */
    white-space: normal;
  }
}



/* --- Remove line/shadow from animated banner --- */
.laminated-strip,
.laminated-strip__inner,
.laminated-strip__track {
  box-shadow: none !important;
  border: none !important;
}


/* --- Remove any remaining separator line around animated banner --- */
.laminated-strip{
  border-top: 0 !important;
  border-bottom: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}



/* --- Nav spacing refinement (fit Free Quotes, no wrap) --- */
.nav{
  gap: 6px;
}
.nav__link{
  padding: 10px 10px;
  font-size: 13.5px;
  letter-spacing: .04em;
}
.nav__cta{
  padding: 10px 14px;
  white-space: nowrap;
}



/* --- Remove shadow from top services strip --- */
.top-services-strip,
.services-strip,
.header-services,
.services-bar {
  box-shadow: none !important;
  border: none !important;
}



/* --- FORCE remove any remaining header/service strip lines --- */
.top-services-strip,
.services-strip,
.header-services,
.services-bar,
.header-top,
.top-bar,
.site-header,
.site-header * {
  box-shadow: none !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  outline: 0 !important;
}

.testimonial-meta{
  margin:6px 0 12px;
  font-size:.9rem;
  font-weight:600;
  color:rgba(14,20,39,.65);
  letter-spacing:.04em;
  text-transform:uppercase;
}



/* --- Testimonials Enhancements --- */
.testimonial-stars{
  color:#f5b301;
  letter-spacing:2px;
  font-size:1.05rem;
  margin:4px 0 6px;
}

.featured-testimonial{
  background:linear-gradient(180deg,#0f2444,#0b1b34);
  color:#fff;
}

.featured-box{
  max-width:760px;
  margin:auto;
  text-align:center;
  padding:54px 28px;
  border-radius:22px;
  background:rgba(255,255,255,.04);
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.featured-testimonial h3{
  margin-top:10px;
  font-size:1.6rem;
}

.featured-testimonial blockquote{
  font-size:1.15rem;
  line-height:1.7;
  margin:18px auto 24px;
  max-width:60ch;
  color:rgba(255,255,255,.92);
}



/* --- Featured boxed testimonial style --- */
.testimonial-card--boxed{
  border:1px solid rgba(15,36,68,.18);
  border-radius:18px;
  padding:26px 24px;
  background:#fff;
  box-shadow:0 12px 34px rgba(15,36,68,.08);
}



/* --- Testimonials: boxed consistency --- */
.testimonial-card--boxed{
  border:1px solid rgba(15,36,68,.14);
  border-radius:18px;
  padding:26px 24px;
  background:#ffffff;
  box-shadow:0 10px 28px rgba(15,36,68,.08);
}

/* Featured testimonial style removed to align all cards */



/* --- Testimonials grid: lock to 4 columns on desktop --- */
@media (min-width: 1200px){
  .test-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}



/* --- Brand logos: consistent height --- */
.cred-logos{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
}
.cred-logos img{
  height: 52px;
  width: auto;
  object-fit: contain;
  display:block;
}
@media (max-width: 520px){
  .cred-logos img{ height:44px; }
}




/* --- Services dropdown panel (visible on white dropdown) --- */
.nav__dropdownMenu{
  min-width: min(980px, calc(100vw - 40px));
}
.nav__dropdownPanel{padding:18px 18px 14px; max-width:980px}
.nav__dropdownKicker{margin:0; font-weight:800; letter-spacing:.08em; text-transform:uppercase; font-size:.78rem; color:rgba(26,36,73,.75)}
.nav__dropdownIntro{margin:8px 0 14px; color:rgba(26,36,73,.78); max-width:70ch}
.nav__dropdownCols{display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px}
.nav__dropdownCols strong{display:block; margin:0 0 6px; color:#0f2444; font-size:.95rem}
.nav__miniList{list-style:none; padding:0; margin:0; display:grid; gap:6px}
.nav__miniList li{color:rgba(14,20,39,.82); font-size:.88rem; line-height:1.25}
.nav__dropdownActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
@media (max-width: 1000px){ .nav__dropdownCols{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width: 560px){ .nav__dropdownCols{grid-template-columns:1fr;} }


/* Brand logos strip */
.brand-strip{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap:18px;
  margin-top:18px;
  align-items:center;
}
.brand-item{
  background:#fff;
  border:1px solid rgba(26,36,73,.10);
  border-radius:16px;
  padding:26px 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px rgba(26,36,73,.06);
}

.brand-item img{
  max-height:90px;
  max-width:100%;
  object-fit:contain;
  filter:none;
  opacity:.9;
  transition:transform .2s ease, filter .2s ease, opacity .2s ease;
}

.brand-item:hover img{
  filter:none;
  opacity:1;
  transform:scale(1.03);
}


/* Trusted systems strip (professional partner logos) */
.trusted-systems{
  margin-top: 18px;
}
.trusted-systems__inner{
  background: linear-gradient(180deg, rgba(15,36,68,.06), rgba(15,36,68,0));
  border: 1px solid rgba(26,36,73,.10);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: 0 18px 40px rgba(26,36,73,.08);
}
.trusted-systems__kicker{
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(26,36,73,.65);
}
.trusted-systems__title{
  margin: 10px 0 8px;
  color: #0f2444;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.15;
}
.trusted-systems__subtitle{
  margin: 0 0 18px;
  color: rgba(14,20,39,.75);
  max-width: 70ch;
}
.trusted-systems__strip{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.trusted-systems__logo{
  flex: 1 1 200px;
  min-width: 160px;
  background: #fff;
  border: 1px solid rgba(26,36,73,.10);
  border-radius: 18px;
  padding: 22px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 24px rgba(26,36,73,.06);
}
.trusted-systems__logo img{
  max-height: 62px;
  max-width: 100%;
  object-fit: contain;
  opacity: .92;
  filter: none;
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}
.trusted-systems__logo:hover img{
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

/* Mobile: allow horizontal swipe if needed */
@media (max-width: 600px){
  .trusted-systems__strip{
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .trusted-systems__logo{
    flex: 0 0 78%;
    scroll-snap-align: center;
  }
  .trusted-systems__strip::-webkit-scrollbar{ height: 0; }
}


/* Promo ticks banner under hero */
.promo-ticks{
  background: #4a67a5; /* matches site blue strip vibe */
  padding: 18px 0;
}
.promo-ticks__inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 28px;
  flex-wrap: wrap;
}
.promo-ticks__item{
  position:relative;
  display:inline-flex;
  align-items:center;
  padding-left: 34px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:#ffffff;
  line-height:1.1;
  white-space: nowrap;
}
.promo-ticks__item::before{
  content:"✓";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%) scale(1);
  font-size: 26px;
  font-weight: 900;
  opacity: 1;
  animation: promoTick 1.2s ease-in-out infinite;
}
.promo-ticks__item:nth-child(1)::before{ animation-delay: 0s; }
.promo-ticks__item:nth-child(2)::before{ animation-delay: .2s; }
.promo-ticks__item:nth-child(3)::before{ animation-delay: .4s; }

@keyframes promoTick{
  0%{ transform: translateY(-50%) scale(1); opacity: 1; }
  40%{ transform: translateY(-58%) scale(1.12); opacity: .9; }
  80%{ transform: translateY(-50%) scale(1); opacity: 1; }
  100%{ transform: translateY(-50%) scale(1); opacity: 1; }
}

@media (max-width: 720px){
  .promo-ticks{ padding: 14px 0; }
  .promo-ticks__inner{ gap: 14px; }
  .promo-ticks__item{
    font-size: 18px;
    letter-spacing: 1.5px;
    padding-left: 26px;
  }
  .promo-ticks__item::before{
    font-size: 18px;
  }
}


/* Premium CTA */
.premium-cta{
  padding: 44px 0;
  background: var(--navy);
  color:#fff;
}
.premium-cta .container{ text-align:left; }
.premium-cta__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 34px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}
.premium-cta__eyebrow{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 10px;
}
.premium-cta__title{
  margin: 0 0 10px 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}
.premium-cta__text{
  margin: 0 0 22px 0;
  max-width: 70ch;
  color: rgba(255,255,255,0.90);
  font-size: 16px;
}
.cta-tiles{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}
.cta-tile{
  flex: 1 1 260px;
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration:none;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  color:#fff;
}
.cta-tile:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.24);
}
.cta-tile__icon{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 18px;
}
.cta-tile__value{
  font-weight: 800;
  font-size: 18px;
  line-height: 1.15;
}
.cta-tile__label{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-top: 4px;
}
@media (max-width: 560px){
  .premium-cta__inner{ padding: 26px 20px; }
  .cta-tile{ flex-basis: 100%; }
  .cta-tile__value{ font-size: 16px; }
}


/* --- Need help today: full-width premium strip --- */
.premium-cta{
  background: var(--hopkins-navy, #13294b);
  color:#fff;
  padding: 26px 0;
  overflow:hidden;
  animation: premiumSlideIn .7s ease-out both;
}
.premium-cta .container{ max-width: 1200px; }

.premium-cta__card{
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.premium-cta__eyebrow{
  color: rgba(255,255,255,.75);
  font-weight: 700;
  letter-spacing: .14em;
}

.premium-cta__title{ color:#fff; margin: 6px 0 6px; }
.premium-cta__subtitle{ color: rgba(255,255,255,.85); max-width: 60ch; }

.premium-cta__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 22px;
}

.premium-cta__content{ flex: 1 1 auto; }

.premium-cta__tiles{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

.premium-cta__tile{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  box-shadow: none;
  text-decoration:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.premium-cta__tile:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.28); }

.premium-cta__tile-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.12);
}

.premium-cta__tile-text{ display:flex; flex-direction:column; line-height:1.1; }
.premium-cta__tile-label{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.premium-cta__tile-value{
  font-size: 17px;
  font-weight: 800;
  color:#fff;
}

/* Button color cues (match header vibe) */
.premium-cta__tile--call{ background: rgba(0,0,0,.25); border-color: rgba(255,255,255,.18); }
.premium-cta__tile--email{ background: rgba(0,0,0,.25); border-color: rgba(255,255,255,.18); }
.premium-cta__tile--whatsapp{ background: rgba(37, 211, 102, .18); border-color: rgba(37, 211, 102, .45); }
.premium-cta__tile--whatsapp .premium-cta__tile-icon{ background: rgba(37, 211, 102, .35); }

/* Subtle motion */
@keyframes premiumSlideIn{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes whatsappPulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(37, 211, 102, .35); }
  50%{ box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}
.premium-cta__tile--whatsapp{ animation: whatsappPulse 2.2s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce){
  .premium-cta{ animation: none; }
  .premium-cta__tile--whatsapp{ animation: none; }
  .premium-cta__tile{ transition:none; }
}

@media (max-width: 860px){
  .premium-cta{ padding: 22px 0; }
  .premium-cta__inner{ flex-direction: column; align-items:flex-start; }
  .premium-cta__tiles{ width:100%; }
  .premium-cta__subtitle{ max-width: none; }
}


/* Latest work thumbnails */
.latest-thumbs{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.latest-thumb{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  background:#0f1c38;
}
.latest-thumb img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
  opacity:.9;
}
.latest-thumb span{
  position:absolute;
  left:12px;
  bottom:12px;
  background:rgba(15,28,56,.85);
  color:#fff;
  padding:6px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  letter-spacing:.05em;
}
@media(max-width:900px){
  .latest-thumbs{grid-template-columns:repeat(2,1fr);}
  .latest-thumb img{height:140px;}
}


/* === Section 6 only: force text white, leave CTA buttons unchanged === */
.feature-slab,
.feature-slab h1, .feature-slab h2, .feature-slab h3, .feature-slab h4,
.feature-slab p, .feature-slab li, .feature-slab span, .feature-slab strong {
  color: #ffffff !important;
}

/* Do NOT touch buttons */
.feature-slab .btn { 
  color: inherit; 
}


/* Fix ghost buttons in Section 6 */
.feature-slab .btn--ghost{
  color: #ffffff !important;
  background: transparent !important;
  border: 2px solid rgba(255,255,255,0.9) !important;
}

.feature-slab .btn--ghost:hover{
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
}


/* Doors Fitting & Repairs standalone section */
.doors-repairs-section{padding:80px 0;background:#eaf2ff;}
.doors-repairs-section h2{margin-bottom:10px;color:#0a1b33;}
.doors-repairs-section p{max-width:700px;margin-bottom:30px;color:#12294d;}
.doors-repairs-section__inner{display:grid;grid-template-columns:1.15fr 0.85fr;gap:44px;align-items:center;}
.doors-repairs-copy{min-width:0;}
.doors-repairs-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:26px;}
.doors-repairs-section ul{list-style:disc;padding-left:20px;color:#12294d;}
.doors-repairs-section li{margin-bottom:10px;}
.doors-repairs-media{min-width:0;}
.doors-repairs-media img{display:block;width:100%;height:auto;border-radius:20px;border:1px solid rgba(0,0,0,0.08);box-shadow:0 14px 30px rgba(0,0,0,0.10);}
@media (max-width: 920px){
  .doors-repairs-section__inner{grid-template-columns:1fr;}
  .doors-repairs-media{order:2;}
}


/* Section 6 (Feature slabs) – blue background + readable white text */
.feature-slab{
  background: var(--navy);
  border-color: rgba(255,255,255,.12);
}
.feature-slab .kicker,
.feature-slab p,
.feature-slab li{
  color: rgba(255,255,255,.86);
}
.feature-slab h2,
.feature-slab h3{
  color: #ffffff;
}
.feature-slab .btn{
  border-color: rgba(255,255,255,.18);
}
.feature-slab .btn--primary{
  background: #3b61a8; /* keep premium CTA */
  color: #ffffff;
}
.feature-slab .btn--ghost{
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,.55);
}
.feature-slab .btn--ghost:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.75);
}


/* === Section 6: navy blue background for all service slabs === */
.feature-slab{
  background: #0b1f3a !important;
}


/* === Force all Section 6 slabs to match Emergency style === */
.feature-slab{
  background: linear-gradient(135deg, #0b1f3a 0%, #102e57 100%) !important;
  border-radius: 22px;
  overflow: hidden;
}

.feature-slab .feature__media img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.feature-slab .feature__content{
  padding: 60px 60px;
}

.feature-slab .feature__content h2,
.feature-slab .feature__content h3{
  font-weight: 700;
}


/* === Remove copper background from Emergency Services slab only === */
.feature-slab.emergency,
.feature-slab--emergency,
#emergency,
#emergency-services{
  background: linear-gradient(135deg, #0b1f3a 0%, #102e57 100%) !important;
}


/* ======================================================================
   Section 6 consistency lock (layout / colours / backgrounds)
   ====================================================================== */
.feature-slab{ background: var(--navy) !important; }

/* Ensure every slab uses the same card + two-column layout */
.feature-slab .container.feature-slab__inner{ padding-left: 0; padding-right: 0; }
.feature-slab .feature{
  grid-template-columns: 1.1fr 1fr !important;
  border-radius: 16px !important;
}

/* Copy + media spacing consistent */
.feature-slab .feature__copy{ padding: 46px 44px !important; }
.feature-slab .feature__media{ padding: 28px !important; }

/* Image card consistent size */
.feature-slab .feature__img{
  max-width: 520px !important;
  width: 100% !important;
}
.feature-slab .feature__img img{
  aspect-ratio: 4 / 5;
  height: auto !important;
}

/* Remove any odd inline colouring inside intro text */
.feature-slab .feature__intro span{
  color: inherit !important;
  font-weight: inherit !important;
}

/* Bullets consistent weight and spacing */
.feature-slab .feature__list{ font-size: 15px !important; }
.feature-slab .feature__list li{ font-weight: 600; }
.feature-slab .feature__list li strong{ font-weight: 700; }

@media (max-width: 900px){
  .feature-slab .feature{ grid-template-columns: 1fr !important; }
  .feature-slab .feature__copy{ padding: 34px 22px !important; }
  .feature-slab .feature__media{ padding: 18px !important; }
  .feature-slab .feature__img{ max-width: 100% !important; }
}



/* =========================================================
   New Main Header (Photoshop-inspired) — 2026-01-23
   Replaces .topbar-psd across all pages (Option A)
   ========================================================= */
.header-main{
  background:#fff;
  border-bottom:1px solid rgba(15,36,68,.10);
}
.header-main__inner{
  display:flex;
  align-items:center;
  gap:18px;
  padding:14px 0;
}
.header-brand{display:flex; align-items:center; text-decoration:none;}
.header-brand__logo{
  height:64px;
  width:auto;
  display:block;
}
.header-contacts{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:28px;
}
.hcontact{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#0f2444;
  padding:6px 8px;
  border-radius:12px;
  transition:background .15s ease, transform .15s ease;
}
.hcontact:hover{ background:rgba(15,36,68,.04); transform:translateY(-1px); }
.hcontact__icon{ display:inline-flex; align-items:center; justify-content:center; }
.hcontact__icon .icon{ width:34px; height:34px; }
.hcontact__text{ display:flex; flex-direction:column; line-height:1.1; }
.hcontact__kicker{
  font-weight:700;
  font-size:14px;
  letter-spacing:.2px;
  opacity:.92;
}
.hcontact__value{
  font-weight:800;
  font-size:28px;
  letter-spacing:.2px;
}
.hcontact__label{
  font-size:14px;
  opacity:.75;
  margin-top:2px;
}
.hcontact--wa{ color:#1bbd5a; }
.hcontact--wa .hcontact__kicker,
.hcontact--wa .hcontact__value{ color:#1bbd5a; }
.hcontact--wa .hcontact__icon .icon--wa{ fill:#1bbd5a; }
.hcontact--email .hcontact__value{ font-size:18px; font-weight:800; }

/* Make sure old topbar spacing doesn't affect layout */
.site-header--psd .topbar-psd{ display:none !important; }

/* Responsive */
@media (max-width: 1080px){
  .header-brand__logo{ height:56px; }
  .hcontact__value{ font-size:24px; }
  .header-contacts{ gap:16px; }
}
@media (max-width: 860px){
  .header-main__inner{ align-items:flex-start; }
  .header-contacts{
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:12px;
  }
  .hcontact{ padding:8px 10px; }
  .hcontact__value{ font-size:20px; }
  .hcontact--email .hcontact__value{ font-size:16px; }
}
@media (max-width: 620px){
  .header-main__inner{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px 0;
  }
  .header-brand{ justify-content:center; }
  .header-contacts{
    margin-left:0;
    justify-content:center;
  }
  .hcontact__icon .icon{ width:30px; height:30px; }
  .hcontact__kicker{ font-size:13px; }
  .hcontact__label{ font-size:13px; }
}



/* === IMAGE-BASED HEADER (Option 2) === */
.header-imagebar{
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(15,36,68,.10);
}
.header-imagebar img{
  display:block;
  width:100%;
  height:auto;
  max-height: 120px;
  object-fit: contain;
}
.header-imagebar .hib-link{
  position:absolute;
  top:0;
  bottom:0;
}

/* Click zones are set as percentages so it stays responsive */
.header-imagebar .hib-link--home{ left: 0%; width: 32%; }
.header-imagebar .hib-link--wa{ left: 32%; width: 28%; }
.header-imagebar .hib-link--phone{ left: 60%; width: 22%; }
.header-imagebar .hib-link--email{ left: 82%; width: 18%; }

@media (max-width: 720px){
  .header-imagebar img{ max-height: 160px; }
}


/* === REMOVE SHADOW / OUTLINE FROM MOVING BANNER ICON === */
.laminated-strip__icon {
  box-shadow: none !important;
  filter: none !important;
  outline: none !important;
  border: none !important;
  background: transparent !important;
}


/* === FORCE HIGH-RES HS ICON DISPLAY SIZE (NO BLUR) === */
.laminated-strip__icon {
  height: 20px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}


/* === ENLARGE MOVING BANNER HS ICON === */
.laminated-strip__icon {
  height: 26px;
  width: auto;
}


/* === HOME: SERVICES COLOUR SCHEME (MATCH HEADER) === */
.services-intro-premium{
  background: #ffffff !important;
  border-bottom: 1px solid var(--border) !important;
}
.services-intro-premium h2,
.services-intro-premium strong{
  color: var(--navy) !important;
}
.services-intro-premium p{
  color: rgba(26,36,73,.82) !important;
}
.services-intro-premium__note{
  color: var(--blue) !important;
}

/* 4-col services cards (if used) */
.services-4col{
  background: var(--bg) !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
}
.services-4col__head h2{ color: var(--navy) !important; }
.services-4col__head p{ color: rgba(98,106,138,.95) !important; }

.svc-card{
  border: 1px solid var(--border) !important;
}
.svc-card h3,
.svc-card strong{
  color: var(--navy) !important;
}
.svc-card p,
.svc-card .muted{
  color: var(--slate) !important;
}

/* Feature slabs (section 6 on homepage) */
.feature-slab{
  background: var(--bg) !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
}
.feature__copy{
  color: #ffffff;
}
.feature__intro{
  color: rgba(255,255,255,.88) !important;
}
.feature__list li{
  color: rgba(255,255,255,.92) !important;
}

/* Buttons inside services sections */
.services-intro-premium .btn--primary,
.feature-slab .btn--primary,
.services-4col .btn--primary{
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}
.services-intro-premium .btn--primary:hover,
.feature-slab .btn--primary:hover,
.services-4col .btn--primary:hover{
  background: #0f2c5c !important;
  border-color: #0f2c5c !important;
}
.services-intro-premium .btn--ghost,
.feature-slab .btn--ghost,
.services-4col .btn--ghost{
  border-color: rgba(26,36,73,.22) !important;
  color: var(--navy) !important;
}
.services-intro-premium .btn--ghost:hover,
.feature-slab .btn--ghost:hover,
.services-4col .btn--ghost:hover{
  background: rgba(69,94,170,.08) !important;
  border-color: rgba(69,94,170,.18) !important;
}


/* === HOMEPAGE BRAND COLOUR OVERRIDES (REMOVE GREEN / PURPLE / ORANGE) === */
.home-hero *, 
.services-intro-premium *, 
.feature-slab *, 
.hero-trust *, 
.why-us * {
  color: #0b2a55;
}

.home-hero__sub,
.hero-trust p,
.feature__intro,
.feature__list li,
.services-intro-premium p {
  color: #4a5f7a;
}

.btn--primary {
  background: #0b2a55;
  border-color: #0b2a55;
}

.btn--primary:hover {
  background: #2f5fa7;
  border-color: #2f5fa7;
}

.btn--ghost {
  color: #0b2a55;
  border-color: #0b2a55;
}

.btn--ghost:hover {
  background: #0b2a55;
  color: #fff;
}

.why-us__icon {
  color: #2f5fa7;
}

.promo-ticks__item {
  color: #0b2a55;
}


/* === HOMEPAGE FIX: WHITE TEXT + BRAND BACKGROUNDS === */
.home-hero,
.services-intro-premium,
.feature-slab,
.hero-trust,
.why-us {
  background: #0b2a55;
}

.home-hero *, 
.services-intro-premium *, 
.feature-slab *, 
.hero-trust *, 
.why-us * {
  color: #ffffff !important;
}

.home-hero p,
.services-intro-premium p,
.feature-slab p,
.hero-trust p,
.why-us p {
  color: #e6ecf5 !important;
}

.btn--primary {
  background: #ffffff;
  color: #0b2a55;
  border-color: #ffffff;
}

.btn--primary:hover {
  background: #2f5fa7;
  border-color: #2f5fa7;
  color: #ffffff;
}

.btn--ghost {
  color: #ffffff;
  border-color: #ffffff;
}

.btn--ghost:hover {
  background: #ffffff;
  color: #0b2a55;
}


/* === GLOBAL TEXT COLOUR LOGIC === */
/* Light sections → dark text */
body {
  color: #0b2a55;
}

.section,
.services-intro-premium {
  color: #0b2a55;
}

.section p,
.services-intro-premium p {
  color: #4a5f7a;
}

/* === DARK SECTIONS → WHITE TEXT === */
.home-hero,
.feature-slab,
.hero-trust,
.why-us {
  background: #0b2a55;
}

.home-hero *,
.feature-slab *,
.hero-trust *,
.why-us * {
  color: #ffffff !important;
}

.home-hero p,
.feature-slab p,
.hero-trust p,
.why-us p {
  color: #e6ecf5 !important;
}

/* Buttons adapt */
.home-hero .btn--primary,
.feature-slab .btn--primary,
.hero-trust .btn--primary,
.why-us .btn--primary {
  background: #ffffff;
  color: #0b2a55;
  border-color: #ffffff;
}

.home-hero .btn--ghost,
.feature-slab .btn--ghost,
.hero-trust .btn--ghost,
.why-us .btn--ghost {
  color: #ffffff;
  border-color: #ffffff;
}


/* === HOMEPAGE BRAND CLEANUP (V21) === */
:root{
  --hs-navy:#0b2a55;
  --hs-blue:#2f5fa7;
  --hs-ink:#0b2a55;
  --hs-muted:#4a5f7a;
  --hs-soft:#e6ecf5;
}

/* Section theme helpers */
.bg-light{ background:#fff !important; }
.bg-dark{ background:var(--hs-navy) !important; }

.bg-light, .bg-light *{ color:var(--hs-ink); }
.bg-light p, .bg-light .muted{ color:var(--hs-muted) !important; }

.bg-dark, .bg-dark *{ color:#fff !important; }
.bg-dark p, .bg-dark .muted{ color:var(--hs-soft) !important; }

/* Buttons look consistent on both themes */
.bg-dark .btn--primary{
  background:#fff !important;
  color:var(--hs-navy) !important;
  border-color:#fff !important;
}
.bg-dark .btn--primary:hover{
  background:var(--hs-blue) !important;
  border-color:var(--hs-blue) !important;
  color:#fff !important;
}
.bg-dark .btn--ghost{
  color:#fff !important;
  border-color:#fff !important;
}
.bg-dark .btn--ghost:hover{
  background:#fff !important;
  color:var(--hs-navy) !important;
}

/* Remove non-brand accent colors in homepage CTA tiles */
.premium-cta .cta-tile,
.premium-cta .cta-tile--call,
.premium-cta .cta-tile--whatsapp,
.premium-cta .cta-tile--email{
  background:rgba(255,255,255,.08) !important;
  border:1px solid rgba(255,255,255,.22) !important;
}
.premium-cta .cta-tile:hover{
  background:rgba(255,255,255,.14) !important;
}

/* Tighten homepage spacing a touch */
.home-hero{ padding-top:56px !important; padding-bottom:56px !important; }
.services-intro-premium{ padding-top:56px !important; padding-bottom:56px !important; }
.feature-slab{ padding-top:48px !important; padding-bottom:48px !important; }

/* Ensure feature slabs don't inherit odd inline colors */
.feature__intro span{ color:inherit !important; }

/* Keep the moving strip clean */
.laminated-strip__icon{
  box-shadow:none !important;
  filter:none !important;
  outline:none !important;
}



/* === V22 FIX: HERO COPY IS A LIGHT CARD, SO USE DARK TEXT INSIDE === */
.home-hero.bg-dark .home-hero__copy{
  background:#ffffff !important;
}

.home-hero.bg-dark .home-hero__copy,
.home-hero.bg-dark .home-hero__copy *{
  color: var(--hs-ink) !important;
}

.home-hero.bg-dark .home-hero__copy p{
  color: var(--hs-muted) !important;
}

/* Buttons inside hero card should be brand (not inverted) */
.home-hero.bg-dark .home-hero__copy .btn--primary{
  background: var(--hs-navy) !important;
  border-color: var(--hs-navy) !important;
  color:#ffffff !important;
}

.home-hero.bg-dark .home-hero__copy .btn--primary:hover{
  background: var(--hs-blue) !important;
  border-color: var(--hs-blue) !important;
}

.home-hero.bg-dark .home-hero__copy .btn--ghost{
  background: transparent !important;
  border-color: var(--hs-navy) !important;
  color: var(--hs-navy) !important;
}

.home-hero.bg-dark .home-hero__copy .btn--ghost:hover{
  background: var(--hs-navy) !important;
  color:#ffffff !important;
}



/* === V23: SECTION 6 TEXT WHITE (KEEP CTA BUTTONS UNCHANGED) === */
/* Covers common variants just in case */
#section-6, .section-6, .services-section-6, .section-six {
  color:#ffffff !important;
}

#section-6 *, .section-6 *, .services-section-6 *, .section-six * {
  color:#ffffff !important;
}

/* Do NOT affect buttons */
#section-6 .btn, .section-6 .btn, .services-section-6 .btn, .section-six .btn,
#section-6 .btn *, .section-6 .btn *, .services-section-6 .btn *, .section-six .btn * {
  all: unset;
}



/* === V24: MATCH SECTION 6 "DOOR FITTING" STYLE ACROSS ALL FEATURE SLABS === */
.feature-slab .feature{
  background: linear-gradient(135deg, rgba(62, 150, 214, 0.85), rgba(17, 68, 112, 0.95)) !important;
}

/* Keep the image side clean and consistent */
.feature-slab .feature__media{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)) !important;
}

/* Text colour logic: dark text on this blue slab (matches your screenshot) */
.feature-slab.bg-light .feature__copy,
.feature-slab.bg-light .feature__copy *{
  color: #0b2a55 !important;
}
.feature-slab.bg-light .feature__intro,
.feature-slab.bg-light .feature__desc,
.feature-slab.bg-light .feature__copy p{
  color: #173a6b !important;
}

/* Bullet points and strong items */
.feature-slab.bg-light .feature__list li,
.feature-slab.bg-light .feature__list strong{
  color: #0b2a55 !important;
}

/* DO NOT change CTA buttons (leave existing button styling) */



/* === V25: 'Repair specialists you can trust' → BLACK TEXT === */
.hero-trust,
.hero-trust *{
  color:#0b1f3a !important;
}

.hero-trust p{
  color:#1a1a1a !important;
}



/* === V26: FREE QUOTES / SUPPLY & FIT / REPAIRS & PARTS BANNER → BLUE === */
.promo-ticks{
  background: linear-gradient(135deg, #2f5fa7, #0b2a55) !important;
}

.promo-ticks *,
.promo-ticks li{
  color:#ffffff !important;
}

.promo-ticks .tick,
.promo-ticks .icon{
  color:#ffffff !important;
}



/* === V27: WHY CHOOSE HOPKINS SECURITY → BLACK TEXT === */
.why-us,
.why-us *{
  color:#0b1f3a !important;
}

.why-us p{
  color:#1a1a1a !important;
}



/* === V28: HOMEPAGE INTRO TEXT → BLACK === */
/* Targets the intro / precision section copy */
.services-intro-premium p,
.section .precision-intro p,
.section .intro-copy p{
  color:#0b1f3a !important;
}



/* === V29: BRANDS WE WORK WITH SECTION → BLACK TEXT === */
.brand-strip,
.brand-strip *,
.brand-strip ~ .section-head,
.brand-strip ~ .section-head *,
.section .brand-strip,
.section .brand-strip *{
  color:#0b1f3a !important;
}

.section .brand-strip p,
.section .section-head p{
  color:#1a1a1a !important;
}



/* === V30: TESTIMONIAL NAME/LOCATION (e.g., Sara – Whyteleafe, Surrey) → WHITE === */
.testimonial,
.testimonial *,
.testimonial-author,
.testimonial-author *{
  color:#ffffff !important;
}



/* === V31 FORCE: TESTIMONIAL SECTION NAME/LOCATION WHITE === */
.testimonials,
.testimonials *,
.testimonial-card,
.testimonial-card *,
blockquote,
blockquote *,
.testimonial-name,
.testimonial-location{
  color:#ffffff !important;
}



/* === V32: Featured testimonial styling to match reference === */
.featured-testimonial{
  background: radial-gradient(1200px 600px at 50% 35%, rgba(47,95,167,0.25), rgba(11,42,85,0.98)) !important;
  padding: 72px 0 !important;
}

.featured-testimonial .container{
  max-width: 1100px;
}

.featured-testimonial .featured-box{
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 48px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.featured-testimonial .testimonial-stars{
  color: #f5c542;
  letter-spacing: 3px;
  font-size: 20px;
  margin-bottom: 14px;
}

.featured-testimonial h3{
  color: #ffffff !important;
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 14px;
}

.featured-testimonial .testimonial-meta{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.38) !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
}

.featured-testimonial blockquote{
  margin: 0 0 24px;
  color: rgba(255,255,255,0.92) !important;
  font-size: 18px;
  line-height: 1.75;
}

.featured-testimonial blockquote:before,
.featured-testimonial blockquote:after{
  content: "";
}

.featured-testimonial a.btn{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #ffffff !important;
  color: var(--hs-navy, #0b2a55) !important;
  border: 1px solid rgba(255,255,255,0.9) !important;
  font-weight: 800;
}

.featured-testimonial a.btn:hover{
  background: rgba(255,255,255,0.92) !important;
  border-color: rgba(255,255,255,0.92) !important;
}



/* === V33: FORCE HOMEPAGE FEATURED TESTIMONIAL TO MATCH SCREENSHOT === */
.section.featured-testimonial{
  background: radial-gradient(1200px 650px at 50% 35%, rgba(47,95,167,0.22), rgba(11,42,85,0.98)) !important;
}

.section.featured-testimonial .featured-box{
  max-width: 820px !important;
  border-radius: 32px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,0.40) !important;
}

.section.featured-testimonial .testimonial-stars{
  font-size: 22px !important;
  margin-bottom: 16px !important;
}

.section.featured-testimonial h3{
  font-size: 36px !important;
  margin-bottom: 18px !important;
  color: #fff !important;
}

.section.featured-testimonial .testimonial-meta{
  color: rgba(255,255,255,0.35) !important;
  text-transform: uppercase !important;
  letter-spacing: .16em !important;
  font-weight: 800 !important;
}

.section.featured-testimonial blockquote{
  color: rgba(255,255,255,0.92) !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
}

.section.featured-testimonial a.btn,
.section.featured-testimonial a.btn.btn--ghost{
  background: #fff !important;
  color: #0b2a55 !important;
  border: 1px solid rgba(255,255,255,0.95) !important;
  border-radius: 999px !important;
  padding: 12px 22px !important;
}
.section.featured-testimonial a.btn:hover,
.section.featured-testimonial a.btn.btn--ghost:hover{
  background: rgba(255,255,255,0.92) !important;
}



/* === Forced darker testimonial background to match top banner === */
.testimonials-section, 
#testimonials, 
.testimonial-section {
    background: linear-gradient(135deg, #0d1f3b, #122a52) !important;
}

.testimonials-section::before,
#testimonials::before {
    display:none !important;
}


/* === V35: FINISHING PASS (SPACING + MOBILE) === */

/* Better default spacing rhythm */
.section, .feature-slab, .services-intro-premium, .hero-trust, .why-us, .latest-work, .brand-strip, .featured-testimonial{
  padding-top: 72px;
  padding-bottom: 72px;
}
@media (max-width: 900px){
  .section, .feature-slab, .services-intro-premium, .hero-trust, .why-us, .latest-work, .brand-strip, .featured-testimonial{
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media (max-width: 600px){
  .section, .feature-slab, .services-intro-premium, .hero-trust, .why-us, .latest-work, .brand-strip, .featured-testimonial{
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

/* Container padding on small screens */
@media (max-width: 600px){
  .container{ padding-left: 16px !important; padding-right: 16px !important; }
}

/* Fluid headings */
h1{ font-size: clamp(34px, 5.2vw, 56px) !important; line-height: 1.05 !important; }
h2{ font-size: clamp(26px, 3.6vw, 40px) !important; line-height: 1.12 !important; }
h3{ font-size: clamp(20px, 2.8vw, 28px) !important; line-height: 1.18 !important; }

/* Paragraph readability */
p{ line-height: 1.7 !important; }
@media (max-width: 600px){
  p{ font-size: 16px !important; }
}

/* NAV: wrap nicely on tablet, scroll on mobile (no layout break) */
@media (max-width: 980px){
  .navbar__inner{ flex-wrap: wrap; justify-content: center; }
  .nav{ width: 100%; justify-content: center; flex-wrap: wrap; gap: 18px; }
  .cta-pill{ margin-left: auto; }
}
@media (max-width: 600px){
  .navbar__inner{ padding-top: 10px; padding-bottom: 10px; }
  .nav{
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 6px;
  }
  .nav::-webkit-scrollbar{ height: 0; }
  .nav__link, .nav__dropdownBtn{ font-size: 12px !important; padding: 10px 0 !important; white-space: nowrap; }
  .cta-pill{ padding: 10px 14px !important; border-radius: 999px !important; font-size: 12px !important; }
}

/* HERO: stack image + copy on mobile and keep copy readable */
@media (max-width: 900px){
  .home-hero__grid{ grid-template-columns: 1fr !important; gap: 18px !important; }
  .home-hero__media{ order: -1; }
}
@media (max-width: 600px){
  .home-hero__copy{ padding: 18px !important; border-radius: 20px !important; }
}

/* FEATURE SLABS: consistent stacking */
@media (max-width: 900px){
  .feature{ grid-template-columns: 1fr !important; }
  .feature__media{ min-height: 260px; }
}
@media (max-width: 600px){
  .feature__media{ min-height: 220px; }
  .feature__copy{ padding: 18px !important; }
  .feature__list{ columns: 1 !important; }
}

/* Promo ticks: keep neat on small screens */
@media (max-width: 600px){
  .promo-ticks ul{ display: grid !important; grid-template-columns: 1fr !important; gap: 10px !important; }
  .promo-ticks li{ justify-content: center !important; }
}

/* Touch-friendly buttons */
.btn, .cta-pill, .btn--primary, .btn--ghost, .btn--secondary{
  min-height: 44px;
}



/* === Darker blue for service feature sections (bifold/door panels) === */
.service-block, 
.service-section, 
.feature-section, 
.section-6, 
.bifold-section {
    background: linear-gradient(135deg, #0f2a4a, #163b6a) !important;
}


/* === Force white text on darker blue service sections === */
.service-block, 
.service-section, 
.feature-section, 
.section-6, 
.bifold-section {
    background: linear-gradient(135deg, #0c2340, #133a6a) !important;
    color: #ffffff !important;
}

.service-block h1, .service-block h2, .service-block h3, .service-block p, .service-block li,
.service-section h1, .service-section h2, .service-section h3, .service-section p, .service-section li,
.feature-section h1, .feature-section h2, .feature-section h3, .feature-section p, .feature-section li,
.section-6 h1, .section-6 h2, .section-6 h3, .section-6 p, .section-6 li,
.bifold-section h1, .bifold-section h2, .bifold-section h3, .bifold-section p, .bifold-section li {
    color: #ffffff !important;
}

/* Keep CTA buttons unchanged */
.service-block .btn, .service-section .btn, .feature-section .btn, .section-6 .btn, .bifold-section .btn {
    color: unset !important;
}


/* === Match service section background to top banner dark navy === */
.service-block, 
.service-section, 
.feature-section, 
.section-6, 
.bifold-section {
    background: linear-gradient(135deg, #0b1f3a, #132b4f) !important;
    color: #ffffff !important;
}

.service-block h1, .service-block h2, .service-block h3, .service-block p, .service-block li,
.service-section h1, .service-section h2, .service-section h3, .service-section p, .service-section li,
.feature-section h1, .feature-section h2, .feature-section h3, .feature-section p, .feature-section li,
.section-6 h1, .section-6 h2, .section-6 h3, .section-6 p, .section-6 li,
.bifold-section h1, .bifold-section h2, .bifold-section h3, .bifold-section p, .bifold-section li {
    color: #ffffff !important;
}

/* Keep CTA buttons unchanged */
.service-block .btn, .service-section .btn, .feature-section .btn, .section-6 .btn, .bifold-section .btn {
    color: unset !important;
}


/* === FORCE service slabs to EXACT top-banner navy + white text === */
.service-block, 
.service-section, 
.feature-section, 
.section-6, 
.bifold-section {
    background: #0b1f3a !important; /* top banner navy */
    color: #ffffff !important;
}

.service-block *, 
.service-section *, 
.feature-section *, 
.section-6 *, 
.bifold-section * {
    color: #ffffff !important;
}

/* Do not affect CTA buttons */
.service-block .btn, 
.service-section .btn, 
.feature-section .btn, 
.section-6 .btn, 
.bifold-section .btn {
    color: unset !important;
}


/* === V44 LIGHT HERO REVERT (MATCH SCREENSHOT) === */
.home-hero {
  background: #ffffff !important;
  padding: 80px 0 !important;
}

.home-hero h1 {
  color: #0b1f3a !important;
  font-weight: 800;
  font-size: clamp(40px, 4vw, 64px);
}

.home-hero h2,
.home-hero .hero-sub,
.home-hero .highlight {
  color: #2f5fa7 !important;
  font-weight: 700;
}

.home-hero p {
  color: #6b7280 !important;
}

.home-hero .btn-primary {
  background: #0b1f3a;
  color: #ffffff;
}

.home-hero .btn-outline {
  border: 2px solid #0b1f3a;
  color: #0b1f3a;
  background: transparent;
}


/* === V45: REMOVE HERO FRAME/BORDER – FULL WIDTH CLEAN HERO === */
.home-hero{
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  max-width: 100% !important;
  background: #ffffff !important;
}

/* remove any inner 'card' look */
.home-hero__copy,
.home-hero .card,
.home-hero .hero-card{
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* keep content constrained, not the hero itself */
.home-hero .container,
.home-hero .wrapper{
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}


/* === V46 HERO: FLUSH TO BANNER + SUBTLE GRADIENT EDGE === */

/* Remove any gap above hero */
.home-hero{
  margin-top: 0 !important;
  padding-top: 70px !important; /* internal spacing only */
  border-top: 0 !important;
}

/* If header/nav adds spacing below it, neutralise it */
header, .site-header, .top-banner{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Subtle gradient edge like previous version */
.home-hero::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:6px;
  background: linear-gradient(90deg, #0b1f3a, #2f5fa7, #0b1f3a);
}

/* Ensure hero positioning allows pseudo element */
.home-hero{
  position: relative;
}


/* === V47: HOMEPAGE HERO (MATCH PROVIDED STYLE) + NO BLACK TEXT === */
:root {
  --hs-navy: #0b1f3a;
  --hs-blue: #2f5fa7;
}

.home-hero {
  background: #ffffff !important;
  padding: 84px 0 !important;
  position: relative;
  margin-top: 0 !important;
}

.home-hero .container,
.home-hero .wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.home-hero h1,
.home-hero .home-hero__title {
  color: var(--hs-navy) !important;
  font-weight: 900;
  line-height: 1.04;
  font-size: clamp(44px, 4.4vw, 68px);
  letter-spacing: -0.02em;
}

.home-hero .home-hero__lead,
.home-hero .home-hero__sub,
.home-hero h2 {
  color: var(--hs-blue) !important;
  font-weight: 800;
  font-size: clamp(20px, 1.8vw, 26px);
  margin-top: 18px;
}

.home-hero p {
  color: #6b7280 !important;
}

.home-hero .hero-cta,
.home-hero .home-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.home-hero .btn {
  min-height: 44px;
  padding: 14px 26px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.home-hero .btn-primary {
  background: var(--hs-blue);
  color: #ffffff !important;
  border: 2px solid var(--hs-blue);
}

.home-hero .btn-outline {
  background: #ffffff;
  color: var(--hs-navy) !important;
  border: 2px solid var(--hs-navy);
}

.home-hero .home-hero__media img {
  border-radius: 0 !important;
}

@media (max-width: 900px) {
  .home-hero {
    padding: 56px 0 !important;
  }
}


/* === V48 HERO SOFT FADE (NO BORDER, PREMIUM BLEND) === */
.home-hero{
  background:
    linear-gradient(to bottom, #0b1f3a 0%, #ffffff 160px) !important;
  margin-top: 0 !important;
  border-top: none !important;
}

.home-hero::before{
  display:none !important;
}

.home-hero > *{
  position: relative;
  z-index: 2;
}


/* === V49 HERO REVERT: CLEAN LIGHT STYLE, BRAND BLUES, NO GRADIENT === */
.home-hero {
  background: #ffffff !important;
  margin-top: 0 !important;
  border: none !important;
  padding: 80px 0 !important;
}

.home-hero::before {
  display:none !important;
}

.home-hero h1,
.home-hero .home-hero__title {
  color: #0b1f3a !important;
}

.home-hero .home-hero__lead,
.home-hero .home-hero__sub,
.home-hero h2 {
  color: #2f5fa7 !important;
}

.home-hero p {
  color: #6b7280 !important;
}



/* === V50: HERO EXACT MATCH (REMOVE ALL BORDERS/CARDS/ODD OVERRIDES) === */
.home-hero{
  background: #f5f7fb !important;
  padding: 0 !important;
  margin: 0 !important;
}

.home-hero .container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-hero__grid{
  display: grid !important;
  grid-template-columns: 1.05fr 1fr !important;
  min-height: 560px !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.home-hero__copy{
  padding: 84px 72px !important;
  background: #ffffff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.home-hero__copy h1{
  color: #0b1f3a !important;
  font-weight: 900 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.02em !important;
  font-size: clamp(44px, 4.6vw, 72px) !important;
  margin: 0 0 20px 0 !important;
}

.home-hero__sub{
  color: #2f5fa7 !important;
  font-weight: 800 !important;
  font-size: 28px !important;
  margin: 0 0 14px 0 !important;
}

.home-hero__serving{
  color: #6b7280 !important;
  font-style: italic !important;
  margin: 0 0 26px 0 !important;
}

.home-hero__actions{
  display:flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.home-hero__actions .btn--primary{
  background: #2f5fa7 !important;
  border: 2px solid #2f5fa7 !important;
  color: #ffffff !important;
  border-radius: 18px !important;
  padding: 14px 26px !important;
  font-weight: 800 !important;
}

.home-hero__actions .btn--ghost{
  background: #ffffff !important;
  border: 2px solid #0b1f3a !important;
  color: #0b1f3a !important;
  border-radius: 18px !important;
  padding: 14px 26px !important;
  font-weight: 800 !important;
}

.home-hero__image{
  min-height: 560px !important;
  border: none !important;
  border-left: none !important;
  border-top: none !important;
  border-radius: 0 !important;
  background-size: cover !important;
  background-position: center !important;
}

@media (max-width: 900px){
  .home-hero .container{ padding: 0 16px; }
  .home-hero__grid{ grid-template-columns: 1fr !important; min-height: auto !important; }
  .home-hero__copy{ padding: 42px 22px !important; }
  .home-hero__image{ min-height: 320px !important; }
  .home-hero__sub{ font-size: 22px !important; }
}



/* === V51: FORCE GET A QUOTE BUTTON TEXT WHITE === */
.free-quote-btn,
.get-quote,
.quote-btn,
.btn-quote,
a[href*="quote"],
button[href*="quote"]{
  color:#ffffff !important;
}


/* === V52: ALL 'GET A QUOTE' BUTTONS WHITE TEXT (CONSISTENT) === */
.get-quote,
.get-quote *,
.free-quote,
.free-quote *,
.free-quote-btn,
.btn-quote,
.quote-btn,
a.get-quote,
a.free-quote,
a.btn-quote,
.services .btn-primary,
.section6 .btn-primary,
.service-block .btn-primary,
.service-card .btn-primary,
.btn-primary{
  color:#ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus{
  color:#ffffff !important;
}


/* === V53: CENTER ICONS IN 'WHY CHOOSE' SECTION === */
.why-choose .card,
.why-choose .feature,
.why-choose .why-card,
.why-choose .box,
.why-choose .item {
  text-align: center;
}

.why-choose .icon,
.why-choose .emoji,
.why-choose .feature-icon,
.why-choose img:first-child,
.why-choose svg:first-child {
  display: block;
  margin: 0 auto 14px auto !important;
}

/* reinforce all Get a Quote buttons white */
.btn-primary,
.get-quote,
.free-quote,
.btn-quote {
  color:#ffffff !important;
}



/* ===============================
   FINAL OVERRIDE: Quote button text on blue slabs
   Ensures "GET A QUOTE" is always readable (white)
   =============================== */
.feature-slab .btn.btn--primary,
.feature-slab a.btn.btn--primary,
.feature-slab button.btn.btn--primary,
.services-4col .btn.btn--primary,
.services-intro-premium .btn.btn--primary{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.28);
}

/* Keep non-primary buttons inheriting */
.feature-slab .btn:not(.btn--primary),
.services-4col .btn:not(.btn--primary){
  color: inherit;
}



/* ===============================
   FIX: Center icons in "Why choose" cards
   =============================== */
.why-us__item{
  text-align: center;
}

.why-us__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: rgba(17, 64, 168, 0.06);
  border: 1px solid rgba(11, 18, 32, 0.08);
  font-size: 30px;
  line-height: 1;
}

.trusted-systems__strip--simple{ margin-top:18px; }


/* ===== Utilities ===== */
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* ===== Services jump dropdown ===== */
.section--tight{ padding: 22px 0; }

.service-jump__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(26,36,73,0.04), rgba(26,36,73,0.02));
  border: 1px solid rgba(26,36,73,0.10);
}

.service-jump__label .kicker{
  display:block;
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color: rgba(26,36,73,0.70);
  margin-bottom:2px;
}

.service-jump__title{
  font-size:16px;
  color:#1a2449;
}

.service-jump__control{
  min-width: 260px;
  max-width: 420px;
  width: 100%;
}

.service-jump__select{
  width:100%;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding:12px 42px 12px 14px;
  border-radius:12px;
  border: 1px solid rgba(26,36,73,0.18);
  background: #ffffff;
  color:#1a2449;
  font-weight:600;
  line-height:1.2;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(26,36,73,0.70) 50%),
    linear-gradient(135deg, rgba(26,36,73,0.70) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

.service-jump__select:focus{
  outline:none;
  box-shadow: 0 0 0 4px rgba(36, 97, 255, 0.18);
  border-color: rgba(36, 97, 255, 0.55);
}

@media (max-width: 720px){
  .service-jump__inner{ flex-direction:column; align-items:stretch; }
  .service-jump__control{ min-width: 0; }
}

/* --- Brands We Work With (homepage) --- */
.brands-showcase{
  background:#f7f9fc;
}
.brands-showcase .section-head{
  margin-bottom:48px;
}
.brands-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(210px, 1fr));
  gap:22px;
  align-items:stretch;
}
.brand-card{
  background:#fff;
  border-radius:18px;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 26px rgba(15, 23, 42, 0.08);
  border:1px solid rgba(15, 23, 42, 0.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.brand-card img{
  max-width:170px;
  max-height:64px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:none;
  opacity:1;
}
.brand-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 36px rgba(15, 23, 42, 0.10);
  border-color:rgba(15, 23, 42, 0.10);
}
.brand-card:hover img{
  filter:none;
  opacity:1;
}
@media (max-width:520px){
  .brands-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .brand-card{ padding:20px; }
  .brand-card img{ max-width:140px; max-height:56px; }
}


/* About hero readability – force white text */
.about-hero h1,
.about-hero .lead,
.about-hero .chip {
  color: #ffffff !important;
}

.about-hero .lead {
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}


/* About hero image */
.about-hero__image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .about-hero__image {
    margin-top: 20px;
  }
}

/* Hero right card image */
.hero-card--image {
  padding: 0;
  overflow: hidden;
}

.hero-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .hero-card--image {
    margin-top: 20px;
  }
}


/* About hero – add real bifold image to right panel */
.about-hero__media{
  position: relative;
  overflow: hidden;
}
.about-hero__visual{
  position:absolute;
  inset:0;
}
.about-hero__visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.03);
}
.about-hero__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(26,36,73,.75), rgba(69,94,170,.35));
  z-index:0;
}
.about-hero__card{
  position:relative;
  z-index:1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

/* About hero stat card fixes */
.about-hero__stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.about-hero__stat .stat-number {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.about-hero__stat .stat-title {
  font-size: 22px;
  font-weight: 600;
}

.about-hero__stat .stat-text {
  font-size: 16px;
  opacity: 0.9;
}


/* About stats strip (moved out of hero image area) */
.about-stats{
  padding: 22px 0 6px;
  background: #F6F7FB;
}
.about-stats__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.about-stat{
  background: #ffffff;
  border: 1px solid rgba(26,36,73,.12);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 10px 24px rgba(26,36,73,.06);
}
.about-stat__title{
  font-weight: 900;
  font-size: 20px;
  color: #1A2449;
  letter-spacing: .2px;
}
.about-stat__text{
  margin-top: 6px;
  color: rgba(26,36,73,.78);
  line-height: 1.45;
  font-size: 14px;
}
@media (max-width: 980px){
  .about-stats__grid{grid-template-columns: 1fr;}
}


/* About expertise section */
.about-expertise{
  padding: 70px 0;
  background: #ffffff;
}
.about-expertise__inner{
  max-width: 900px;
}
.about-eyebrow{
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: #6B7AA6;
  margin-bottom: 14px;
}
.about-expertise h2{
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1A2449;
}
.about-expertise p{
  font-size: 17px;
  line-height: 1.65;
  color: #3B4468;
}
.about-expertise__strong{
  margin-top: 18px;
  font-weight: 600;
}
@media (max-width: 768px){
  .about-expertise h2{
    font-size: 28px;
  }
}

/* --- Services nested dropdown (Bifolds/Doors/Windows) --- */
.nav__subdropdown{display:block;}
.nav__subdropdownBtn{width:100%; display:flex; align-items:center; justify-content:space-between; background:transparent; border:0; cursor:pointer; text-align:left;}
.nav__subdropdownMenu{display:none; padding: 4px 0 8px;}
.nav__subdropdownMenu.is-open{display:block;}
.nav__sublink--nested{padding-left:26px; font-size: .95em;}

/* Hover support (desktop) so menus open on cursor-over */
@media (min-width: 981px){
  .nav__dropdown:hover .nav__dropdownMenu{display:block;}
  .nav__subdropdown:hover .nav__subdropdownMenu{display:block;}
}

/* keep nested menus tidy on mobile */
@media (max-width: 860px){
  .nav__sublink--nested{padding-left:18px;}
}

/* === Services dropdown: force uniform type sizes === */
.nav__dropdownMenu,
.nav__dropdownMenu .nav__sublink,
.nav__dropdownMenu .nav__subdropdownBtn,
.nav__dropdownMenu .nav__sublink--nested{
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}


/* About – real bifold image strip */
.about-real-bifold-strip { margin-top: 32px; }
.real-bifold-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 20px;
}
.real-bifold-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0,0,0,.14);
}
@media(max-width:900px){
  .real-bifold-grid{grid-template-columns:1fr}
  .real-bifold-grid img{height:220px}
}


/* Mini trust strip (About) */
.mini-trust-strip{  background:#2a3b4f;
  padding:42px 0;
}
.mini-trust-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
  align-items:center;
}
.mini-trust-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:#fff;
  text-align:center;
}
.mini-ico{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  opacity:.95;
}
.mini-ico svg{
  width:44px;
  height:44px;
}
.mini-trust-label{
  font-weight:600;
  letter-spacing:.02em;
}
@media (max-width: 900px){
  .mini-trust-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
}
@media (max-width: 520px){
  .mini-trust-grid{grid-template-columns:1fr;}
}

/* About – real bifold image strip */
.about-real-bifold-strip { margin: 32px 0 0; }
.real-bifold-grid{
  display:grid;
  grid-template-columns: 2fr 2fr 1.2fr;
  gap: 18px;
  align-items:stretch;
}
.real-shot{margin:0;}
.real-bifold-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 24px 48px rgba(0,0,0,.14);
}
@media(max-width: 900px){
  .real-bifold-grid{grid-template-columns:1fr; }
  .real-bifold-grid img{ height:220px; }
}

/* Work you can see */
.work-you-can-see-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:24px;
}
.work-you-can-see-grid img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}
@media(max-width:768px){
  .work-you-can-see-grid{grid-template-columns:1fr;}
  .work-you-can-see-grid img{height:240px;}
}


/* Hero CTA buttons */
.hero-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  line-height:1;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  will-change: transform;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background:#0B1F3A;
  color:#fff;
  box-shadow:0 14px 28px rgba(11,31,58,.22);
}
.btn-primary:hover{
  box-shadow:0 18px 36px rgba(11,31,58,.26);
  transform: translateY(-1px);
}
.btn-outline{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}
.btn-outline:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.55);
  transform: translateY(-1px);
}
@media (max-width:520px){
  .hero-cta{ gap:10px; }
  .btn{ width:100%; justify-content:center; padding:14px 18px; }
}


/* Services dropdown polish */
.services-dropdown,
.dropdown-menu {
  --dd-pad-y: 10px;
  --dd-pad-x: 14px;
  --dd-radius: 14px;
  --dd-hover: rgba(255,255,255,0.06);
}

.services-dropdown a,
.services-dropdown .submenu-toggle,
.dropdown-menu a,
.dropdown-menu .submenu-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: var(--dd-pad-y) var(--dd-pad-x);
  font-size: 16px;
  font-weight: 600; /* uniform */
  line-height: 1.25;
  border-radius: 12px;
}

.services-dropdown a:hover,
.services-dropdown .submenu-toggle:hover,
.dropdown-menu a:hover,
.dropdown-menu .submenu-toggle:hover{
  background: var(--dd-hover);
}

.services-dropdown a:focus-visible,
.services-dropdown .submenu-toggle:focus-visible,
.dropdown-menu a:focus-visible,
.dropdown-menu .submenu-toggle:focus-visible{
  outline: 2px solid rgba(255,255,255,0.35);
  outline-offset: 2px;
}

/* tighter list spacing inside dropdown panels */
.services-dropdown .dropdown-link + .dropdown-link,
.dropdown-menu .dropdown-link + .dropdown-link{
  margin-top: 4px;
}

/* Ensure nested dropdown panels align nicely */
.dropdown-menu .submenu{
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* Arrow alignment */
.submenu-toggle::after{
  content: "›";
  transform: rotate(90deg);
  opacity: .75;
  font-size: 18px;
  line-height: 1;
}

/* Desktop hover open (keeps click too) */
@media (hover:hover) {
  .nav-item.dropdown:hover > .dropdown-menu,
  .nav-item.dropdown:focus-within > .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .submenu-parent:hover > .submenu,
  .submenu-parent:focus-within > .submenu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}


/* Open states for click toggle */
.dropdown-menu,
.submenu{
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.dropdown-menu.is-open,
.submenu.is-open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


/* Icon strip – refined */
.mini-trust-strip{
  background:#2a3b4f;
  padding:34px 0;
  margin-top:0;
}
.mini-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  align-items:center;
}
.mini-trust-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:#fff;
  text-align:center;
}
.mini-ico{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  opacity:.96;
}
.mini-ico svg{
  width:40px;
  height:40px;
}
.mini-trust-label{
  font-weight:650;
  letter-spacing:.01em;
  font-size:15px;
  line-height:1.2;
}

@media (max-width:900px){
  .mini-trust-strip{padding:28px 0;}
  .mini-trust-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
}

@media (max-width:520px){
  .mini-trust-strip{padding:22px 0;}
  .mini-trust-grid{grid-template-columns:1fr;gap:12px;}
  .mini-trust-item{gap:10px;}
  .mini-trust-label{font-size:14px;}
}


/* Work you can see – polish */
.work-cap{
  margin-top:10px;
  font-size:14px;
  line-height:1.35;
  color:rgba(255,255,255,0.78);
  letter-spacing:.01em;
}
.work-you-can-see figure img{
  border-radius:18px;
  box-shadow:0 24px 48px rgba(0,0,0,.14);
}
@media (hover:hover){
  .work-you-can-see figure img{
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .work-you-can-see figure:hover img{
    transform: translateY(-2px) scale(1.01);
    box-shadow:0 28px 60px rgba(0,0,0,.16);
  }
}


/* Header nav polish */
@media (min-width: 992px){
  .dropdown-menu{
    max-width: 420px; /* reduced from wide panel */
  }
}

/* Smooth open/close feel */
.dropdown-menu,
.submenu{
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}


/* ===============================
   Mobile spacing pass (final)
   =============================== */
@media (max-width: 768px){

  /* Global section spacing */
  section{
    padding-top: 36px;
    padding-bottom: 36px;
  }

  /* Hero */
  .hero,
  .hero-section{
    padding-top: 56px;
    padding-bottom: 28px;
  }

  /* Hero CTA spacing */
  .hero-cta{
    margin-top: 14px;
  }

  /* Icon strip */
  .mini-trust-strip{
    padding-top: 22px;
    padding-bottom: 22px;
  }

  /* Reduce gap after icon strip */
  .mini-trust-strip + section{
    padding-top: 28px;
  }

  /* Image-heavy sections */
  .work-you-can-see,
  .about-real-bifold-strip{
    padding-top: 28px;
    padding-bottom: 28px;
  }

  /* Buttons */
  .btn{
    min-height: 48px;
  }

  /* Prevent WhatsApp bubble overlap (common class names) */
  .whatsapp,
  .whatsapp-float,
  .wa-widget{
    bottom: 88px !important;
  }

  /* Footer */
  footer{
    padding-top: 36px;
    padding-bottom: 36px;
  }
}


/* About page polish */
.about-page .about-section{
  position: relative;
}
.about-page .about-section:nth-of-type(even){
  background: radial-gradient(900px 380px at 15% 0%, rgba(11,31,58,0.06), transparent 60%),
              radial-gradient(700px 380px at 85% 20%, rgba(11,31,58,0.04), transparent 55%);
}
.about-page .about-section .section-title,
.about-page .about-section h2{
  letter-spacing: -0.02em;
}
.about-page .about-section p{
  max-width: 64ch;
  line-height: 1.65;
}

/* Promise cards */
.promise-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.promise-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}
.promise-title{
  font-weight: 750;
  margin-bottom: 8px;
}
.promise-text{
  opacity: 0.88;
  line-height: 1.55;
}
@media (max-width: 900px){
  .promise-grid{ grid-template-columns: 1fr; }
}


/* Contact conversion polish */
.contact-hero{
  padding: 72px 0 40px;
  background: radial-gradient(1100px 420px at 20% 0%, rgba(11,31,58,0.10), transparent 60%),
              radial-gradient(900px 420px at 85% 20%, rgba(11,31,58,0.06), transparent 55%);
}
.contact-hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}
.contact-hero-copy h1{
  margin: 0 0 10px;
}
.contact-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.contact-actions .btn{ min-height: 48px; }
.contact-reassurance{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 16px;
  opacity: .92;
}
.contact-hero-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}
.contact-card-title{
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-card-sub{
  opacity: .88;
  line-height: 1.5;
}
.form-privacy{
  margin-top: 10px;
  font-size: 13px;
  opacity: .78;
  max-width: 60ch;
}
@media (max-width: 900px){
  .contact-hero-grid{ grid-template-columns: 1fr; }
  .contact-hero{ padding: 56px 0 30px; }
}


/* About micro-polish */
.about-divider{
  height:1px;
  background:linear-gradient(to right, transparent, rgba(255,255,255,.18), transparent);
  margin: 12px 0 0;
}
.about-page .service-pill{
  padding: 8px 14px;
  font-size: 14px;
  opacity: .9;
}
.about-page .service-pill:hover{
  opacity: 1;
}


/* About – tighten What We Do & Our Promise */
.about-page h2{
  margin-bottom: 12px;
}
.what-do-checklist.compact{
  margin-top: 14px;
  gap: 10px;
}
.what-do-checklist.compact li{
  font-size: 15px;
}

.promise-grid.refined{
  margin-top: 18px;
  gap: 16px;
}
.promise-grid.refined .promise-card{
  padding: 18px;
  border-radius: 16px;
}
.promise-grid.refined h3{
  margin-bottom: 6px;
  font-size: 17px;
}
.promise-grid.refined p{
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width:768px){
  .promise-grid.refined{
    gap: 14px;
  }
}

/* Brand logos – full colour */
.brand-logos img,
.brands img,
.trusted-brands img{
  filter: none !important;
  opacity: 1 !important;
}


/* About: unify What we do + Our Promise as a set */
.about-core-set{
  padding: 70px 0 56px;
  background: radial-gradient(1100px 420px at 18% 0%, rgba(11,31,58,0.09), transparent 60%),
              radial-gradient(900px 420px at 85% 15%, rgba(11,31,58,0.06), transparent 55%);
}
.about-core-set > .container > section{
  padding: 0;
  background: transparent;
}
.about-core-set h2{
  margin-top: 0;
}
.about-core-set .promise-grid,
.about-core-set .what-do-checklist{
  max-width: 900px;
}

/* Consistent card sizing inside the set */
.about-core-set .promise-grid{
  margin-top: 22px;
  gap: 18px;
}
.about-core-set .promise-card{
  min-height: 160px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
@media (max-width: 900px){
  .about-core-set .promise-card{ min-height: auto; }
}

/* About images: consistent radius, shadow, height */
.about-page img{
  border-radius: 18px;
}
.about-page .work-you-can-see img,
.about-page .about-showcase img,
.about-page .real-bifold-grid img,
.about-page figure img{
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}

@media (min-width: 992px){
  .about-page .work-you-can-see img,
  .about-page .about-showcase img,
  .about-page figure img{
    height: 320px;
    object-fit: cover;
    width: 100%;
  }
}


/* About set v2: unify What we do + Our Promise */
.about-page .about-core-block{
  background: radial-gradient(1100px 420px at 18% 0%, rgba(11,31,58,0.09), transparent 60%),
              radial-gradient(900px 420px at 85% 15%, rgba(11,31,58,0.06), transparent 55%);
}
.about-page .about-core-block--top{
  padding: 70px 0 18px;
}
.about-page .about-core-block--bottom{
  padding: 18px 0 56px;
  margin-top: 0;
}
.about-page .about-core-block--top h2,
.about-page .about-core-block--bottom h2{
  margin-top: 0;
}

/* Consistent promise card sizing */
.about-page .promise-grid{
  gap: 18px;
}
@media (min-width: 992px){
  .about-page .promise-card{
    min-height: 170px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }
}

/* About images: consistent radius/shadow/height (exclude logos) */
.about-page img{
  border-radius: 18px;
}
.about-page .brand-logos img,
.about-page .brands img,
.about-page .trusted-brands img{
  border-radius: 0 !important;
  box-shadow: none !important;
  height: auto !important;
}
.about-page figure img,
.about-page .work-you-can-see img,
.about-page .about-showcase img,
.about-page .real-bifold-grid img{
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}
@media (min-width: 992px){
  .about-page figure img,
  .about-page .work-you-can-see img,
  .about-page .about-showcase img,
  .about-page .real-bifold-grid img{
    height: 320px;
    width: 100%;
    object-fit: cover;
  }
}


/* Trust badges – ensure text shows (About) */
.badge-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.badge{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.badge__icon{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  flex: 0 0 34px;
}
.badge__text{ display:flex; flex-direction:column; gap: 4px; }
.badge__label{ font-weight: 750; line-height:1.15; }
.badge__sub{ opacity: .82; font-size: 13px; line-height:1.35; }

@media (max-width: 768px){
  .badge-grid{ grid-template-columns: 1fr; }
}


/* Our Promise – corrected */
.promise__head{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:70ch;
}
.promise-grid.refined{
  margin-top:18px;
}
.promise-grid.refined .promise-card{
  border-radius:16px;
  padding:18px;
}
.promise-grid.refined h3{ margin:0 0 6px; }
.promise-grid.refined p{ margin:0; }
@media (max-width: 900px){
  .promise-grid.refined{ grid-template-columns: 1fr; }
}


/* About – What we do cleanup + set cohesion */
.about-page .pill-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 18px;
}
.about-page .pill-list span{
  display:inline-flex;
  align-items:center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 650;
  font-size: 14px;
  letter-spacing: .01em;
  text-transform: none;
}

/* Ensure What we do + Our Promise feel like a continuous set */
.about-page .about-core-block--top{
  border-radius: 22px 22px 0 0;
}
.about-page .about-core-block--bottom{
  border-radius: 0 0 22px 22px;
}
@media (max-width: 900px){
  .about-page .about-core-block--top,
  .about-page .about-core-block--bottom{
    border-radius: 18px;
  }
}

/* Clean bifold strip alignment */
.about-page .real-bifold-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 2fr 2fr 1.2fr;
  gap: 18px;
}
.about-page .real-bifold-grid img{
  width:100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}
@media (max-width: 900px){
  .about-page .real-bifold-grid{ grid-template-columns: 1fr; }
  .about-page .real-bifold-grid img{ height: 220px; }
}


/* Our Promise icons */
.promise-card{
  position: relative;
}
.promise-icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  font-size: 28px;
  margin-bottom: 12px;
}


/* Our Promise – uniform sizing */
.promise-grid.refined{
  gap: 18px;
}
.promise-grid.refined .promise-card{
  padding: 20px;
}
.promise-grid.refined .promise-card h3{
  font-size: 17px;
  letter-spacing: -0.01em;
}
.promise-grid.refined .promise-card p{
  font-size: 15px;
  opacity: .88;
}


/* Promise SVG icons */
.promise-icon svg{
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

/* Commercial page: larger brand tiles using existing brand-card styling */
.brands-showcase--compact .section-head{display:none;}
.brands-grid--lg{grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));}
.brand-card--lg{padding:32px;}
.brand-card--lg img{max-width:200px; max-height:78px;}
@media (max-width: 520px){
  .brands-grid--lg{grid-template-columns:repeat(auto-fit, minmax(160px, 1fr)); gap:16px;}
  .brand-card--lg{padding:22px;}
  .brand-card--lg img{max-width:180px; max-height:72px;}
}


main {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

main p, main li, main a, main span, main label {
  font-weight: 400;
  letter-spacing: 0;
}

main h1, main h2, main h3, main h4, main h5, main h6 {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

main h2 { font-weight: 800; }
main h3 { font-weight: 700; }
main small, main .muted { font-weight: 400; }

/* Keep cards readable and consistent */
main .card p { line-height: 1.65; }

/* Trust strip (added in copy pack) */
main ul.trust-strip{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}
main ul.trust-strip li{
  font-weight: 600;
  color: var(--navy);
}
@media (max-width: 640px){
  main ul.trust-strip{ grid-template-columns: 1fr; }
}

/* =========================================
   BIG HEADINGS CONSISTENCY (site-wide)
   Only affects large headings, body text unchanged
   ========================================= */
h1, h2, h3 {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}


/* === NAV + DROPDOWN STACKING FIX (ensures Services opens above the hero on every page) === */
.header{ z-index: 9999 !important; overflow: visible !important; }
.header-inner{ overflow: visible !important; }
.nav{ position: relative; z-index: 10000 !important; overflow: visible !important; }
.nav__dropdownMenu,
.nav__subdropdownMenu{ z-index: 10001 !important; }

/* Keep hover behaviour on desktop */
@media (min-width: 981px){
  .nav__dropdown:hover .nav__dropdownMenu{display:block;}
  .nav__subdropdown:hover .nav__subdropdownMenu{display:block;}
}/* ===== Mobile burger menu panel (make links visible) ===== */
@media (max-width: 980px){

  /* when the burger toggles nav--open, show a proper panel */
  .nav{
    position: fixed;
    left: 0;
    right: 0;
    top: 140px;          /* adjust if your header is taller/shorter */
    background: #0B1F3A; /* navy */
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,.12);
    z-index: 20000;

    /* closed state */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .25s ease, opacity .2s ease;
  }

  /* open state (this class is what the JS toggles) */
  .nav.nav--open{
    max-height: calc(100vh - 140px);
    overflow: auto;
    opacity: 1;
    pointer-events: auto;
  }

  /* make the menu items readable + stacked */
  .nav a{
    display: block;
    padding: 12px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }

  .nav a:active{
    opacity: .85;
  }

  /* dropdowns inside mobile menu should expand in-flow */
  .nav__dropdownMenu,
  .nav__subdropdownMenu{
    position: static !important;
    box-shadow: none !important;
    background: transparent !important;
    border: 0 !important;
    padding: 6px 0 10px 10px;
    margin: 0;
  }
}

