
:root{
  --navy:#002B6B;
  --teal:#00A7A7;
  --teal-dark:#009C9C;
  --white:#FFFFFF;
  --text:#1F2933;
  --muted:#64748B;
  --light:#F5F8FA;
  --border:#E5EAF0;
  --shadow:0 18px 45px rgba(0,43,107,.12);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Montserrat,Arial,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%}
.container{width:min(1180px,92%);margin:0 auto}

.topbar{
  background:var(--navy);
  color:#fff;
  font-size:11px;
  padding:2px 0;
  line-height:1.25;
}
.topbar .container{
  display:flex;justify-content:space-between;gap:20px;align-items:center;flex-wrap:wrap;
}
.header{
  position:sticky;top:0;z-index:20;
  background:#fff;
  border-bottom:1px solid var(--border);
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:3px 0;
}
.logo img{width:92px;display:block;border-radius:6px}
.menu{display:flex;gap:20px;align-items:center;font-weight:800;color:var(--navy);font-size:16px}
.menu a:hover{color:var(--teal)}
.nav-actions{display:flex;gap:10px;align-items:center}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:8px 14px;border-radius:999px;
  font-weight:700;border:2px solid transparent;
  transition:.2s ease;cursor:pointer;font-size:13px;
}
.btn-primary{background:var(--navy);color:#fff}
.btn-primary:hover{background:var(--teal)}
.btn-secondary{background:var(--teal);color:#fff}
.btn-secondary:hover{background:var(--navy)}
.btn-outline{background:#fff;color:var(--navy);border-color:var(--navy)}
.btn-outline:hover{background:var(--navy);color:#fff}
.mobile-menu{display:none}

.hero{
  background:
    radial-gradient(circle at 80% 10%, rgba(0,167,167,.16), transparent 34%),
    linear-gradient(135deg,#fff 0%,#f6fbff 50%,#eef9f9 100%);
  padding:70px 0 54px;
}
.hero-grid{
  display:grid;grid-template-columns:1fr;gap:28px;align-items:center;text-align:center;
}
.hero-grid .lead{margin-left:auto;margin-right:auto}
.hero-grid > div:first-child{max-width:900px;margin:0 auto}
.hero-card{max-width:720px;margin:0 auto;text-align:left}
.eyebrow{
  display:inline-block;background:rgba(0,167,167,.12);color:var(--teal-dark);
  padding:8px 14px;border-radius:999px;font-weight:800;font-size:13px;letter-spacing:.3px;
}
h1,h2,h3{color:var(--navy);line-height:1.15;margin:0 0 16px}
h1{font-size:clamp(44px,6vw,78px);letter-spacing:-2px}
h2{font-size:clamp(30px,3vw,44px);letter-spacing:-.8px}
h3{font-size:22px}
.lead{font-size:19px;color:#334155;margin:0 0 26px;max-width:640px}
.hero-points{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:28px 0}
.point{
  background:#fff;border:1px solid var(--border);border-radius:16px;padding:14px;
  font-weight:700;color:var(--navy);box-shadow:0 8px 20px rgba(0,43,107,.06)
}
.hero-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:28px;box-shadow:var(--shadow);
}
.hero-card h3{margin-bottom:8px}
.hero-card ul{padding-left:20px;margin:14px 0 0}
.hero-card li{margin:9px 0}

.section{padding:76px 0}
.section-light{background:var(--light)}
.section-title{text-align:center;max-width:780px;margin:0 auto 42px}
.section-title p{color:var(--muted);font-size:17px}

.cards{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
}
.card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:26px;box-shadow:0 10px 28px rgba(0,43,107,.06);
}
.icon{
  width:48px;height:48px;border-radius:14px;background:rgba(0,167,167,.12);
  display:flex;align-items:center;justify-content:center;color:var(--teal-dark);
  font-size:24px;font-weight:900;margin-bottom:16px;
}
.card p{color:var(--muted);margin-bottom:0}

.quote-wrap{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:30px;align-items:start;
}
.quote-panel{
  background:var(--navy);color:#fff;border-radius:var(--radius);padding:34px;box-shadow:var(--shadow);
}
.quote-panel h2{color:#fff}
.quote-panel p{color:#dbeafe}
.quote-panel .mini{border-top:1px solid rgba(255,255,255,.18);padding-top:18px;margin-top:20px}
.quote-form{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:28px;box-shadow:var(--shadow);
}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.form-field{display:flex;flex-direction:column;gap:7px}
.form-field.full{grid-column:1/-1}
label{font-weight:700;color:var(--navy);font-size:14px}
input,select,textarea{
  width:100%;border:1px solid #CBD5E1;border-radius:12px;padding:13px 14px;
  font-family:inherit;font-size:15px;outline:none;background:#fff;
}
input:focus,select:focus,textarea:focus{border-color:var(--teal);box-shadow:0 0 0 3px rgba(0,167,167,.12)}
.quote-result{
  display:none;margin-top:20px;background:#f0fbfb;border:1px solid rgba(0,167,167,.35);
  border-radius:16px;padding:18px;
}
.quote-price{font-size:30px;font-weight:800;color:var(--navy);margin:4px 0}
.small{font-size:13px;color:var(--muted)}

.split{display:grid;grid-template-columns:1fr 1fr;gap:34px;align-items:center}
.feature-list{display:grid;gap:12px;margin-top:20px}
.feature{
  display:flex;gap:12px;align-items:flex-start;background:#fff;border:1px solid var(--border);
  border-radius:14px;padding:14px
}
.tick{color:var(--teal);font-weight:900}

.reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.review{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:24px}
.stars{color:#00B67A;font-size:20px;letter-spacing:1px}
.review strong{display:block;color:var(--navy);margin-top:12px}

.cta{
  background:linear-gradient(135deg,var(--navy),#014696);
  color:#fff;border-radius:30px;padding:44px;display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.cta h2{color:#fff;margin:0}
.cta p{color:#dbeafe;margin:8px 0 0}

.footer{background:#061C3D;color:#cbd5e1;padding:52px 0 24px}
.footer-grid{display:grid;grid-template-columns:1.2fr repeat(3,1fr);gap:28px}
.footer h4{color:#fff;margin:0 0 14px}
.footer a{display:block;margin:8px 0;color:#cbd5e1}
.footer a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:32px;padding-top:20px;font-size:14px;color:#94a3b8}

.page-hero{padding:60px 0;background:linear-gradient(135deg,#fff,#eef9f9)}
.page-hero p{font-size:18px;color:#475569;max-width:760px}
.whatsapp-float{
  position:fixed;right:20px;bottom:20px;z-index:30;
  background:#25D366;color:#fff;width:58px;height:58px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-weight:900;font-size:26px;
  box-shadow:0 12px 30px rgba(0,0,0,.22)
}

@media(max-width:900px){
  .menu,.nav-actions{display:none}
  .mobile-menu{display:block;color:var(--navy);font-weight:900}
  .hero-grid,.quote-wrap,.split{grid-template-columns:1fr}
  .cards,.reviews{grid-template-columns:1fr 1fr}
  .hero-points{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .cards,.reviews,.form-grid,.footer-grid{grid-template-columns:1fr}
  .cta{display:block}
  .logo img{width:92px}
  .hero{padding-top:50px}
  .section{padding:54px 0}
}

button:disabled{opacity:.65;cursor:not-allowed}

/* Layout update */
.hero-points{display:none!important}
.home-services-section{display:none!important}

.whatsapp-float{
  font-size:0;
}
.whatsapp-float::before{
  content:"";
  width:30px;
  height:30px;
  display:block;
  background:currentColor;
  -webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16.01 3.2A12.75 12.75 0 0 0 5.15 22.65L3.6 28.8l6.28-1.48A12.74 12.74 0 1 0 16.01 3.2Zm0 2.3a10.44 10.44 0 1 1-5.32 19.43l-.38-.22-3.68.87.9-3.56-.25-.39A10.44 10.44 0 0 1 16.01 5.5Zm-4.7 5.66c-.23 0-.6.08-.91.42-.31.34-1.2 1.18-1.2 2.87 0 1.7 1.23 3.34 1.4 3.57.17.23 2.38 3.8 5.86 5.18 2.9 1.14 3.49.92 4.12.86.63-.06 2.03-.83 2.32-1.64.29-.8.29-1.49.2-1.64-.09-.14-.31-.23-.66-.4-.34-.17-2.03-1-2.34-1.12-.31-.11-.54-.17-.77.17-.23.34-.89 1.12-1.09 1.35-.2.23-.4.26-.74.09-.34-.17-1.45-.54-2.77-1.72-1.02-.91-1.71-2.04-1.91-2.38-.2-.34-.02-.53.15-.7.15-.15.34-.4.51-.6.17-.2.23-.34.34-.57.11-.23.06-.43-.03-.6-.09-.17-.77-1.85-1.05-2.52-.28-.67-.56-.58-.77-.59h-.66Z"/></svg>') center/contain no-repeat;
  mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16.01 3.2A12.75 12.75 0 0 0 5.15 22.65L3.6 28.8l6.28-1.48A12.74 12.74 0 1 0 16.01 3.2Zm0 2.3a10.44 10.44 0 1 1-5.32 19.43l-.38-.22-3.68.87.9-3.56-.25-.39A10.44 10.44 0 0 1 16.01 5.5Zm-4.7 5.66c-.23 0-.6.08-.91.42-.31.34-1.2 1.18-1.2 2.87 0 1.7 1.23 3.34 1.4 3.57.17.23 2.38 3.8 5.86 5.18 2.9 1.14 3.49.92 4.12.86.63-.06 2.03-.83 2.32-1.64.29-.8.29-1.49.2-1.64-.09-.14-.31-.23-.66-.4-.34-.17-2.03-1-2.34-1.12-.31-.11-.54-.17-.77.17-.23.34-.89 1.12-1.09 1.35-.2.23-.4.26-.74.09-.34-.17-1.45-.54-2.77-1.72-1.02-.91-1.71-2.04-1.91-2.38-.2-.34-.02-.53.15-.7.15-.15.34-.4.51-.6.17-.2.23-.34.34-.57.11-.23.06-.43-.03-.6-.09-.17-.77-1.85-1.05-2.52-.28-.67-.56-.58-.77-.59h-.66Z"/></svg>') center/contain no-repeat;
}
@media(max-width:900px){
  .topbar{font-size:11px}
  .hero-grid{text-align:center}
}

/* Reviews scroller update */
.review-scroll{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:8px 4px 18px;
  -webkit-overflow-scrolling:touch;
}
.review-scroll::-webkit-scrollbar{
  height:9px;
}
.review-scroll::-webkit-scrollbar-track{
  background:#e5eaf0;
  border-radius:999px;
}
.review-scroll::-webkit-scrollbar-thumb{
  background:var(--teal);
  border-radius:999px;
}
.review-scroll .review{
  min-width:330px;
  max-width:330px;
  scroll-snap-align:start;
}
.review-meta{
  color:var(--muted);
  font-size:13px;
  margin-top:8px;
  font-weight:600;
}
.review-note{
  text-align:center;
  color:var(--muted);
  font-size:14px;
  margin-top:8px;
}
@media(max-width:620px){
  .review-scroll .review{
    min-width:82vw;
    max-width:82vw;
  }
  .menu{
    font-size:15px;
  }
}

/* Clean homepage/header update */
.topbar{display:none!important}
.header{top:0}
.nav{padding:2px 0!important;min-height:48px}
.logo img{width:86px!important}
.menu{font-size:16px!important;font-weight:800!important}
.mobile-menu{font-size:15px}
.hero-main-button{
  display:flex;
  justify-content:center;
  margin-top:26px;
}
.btn-hero{
  font-size:17px!important;
  padding:15px 30px!important;
}
.quote-contact-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.quote-contact-buttons .btn{
  flex:1;
  min-width:96px;
}
@media(max-width:900px){
  .nav{min-height:44px}
  .logo img{width:78px!important}
}

/* SEO improvement sections */
.seo-intro{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}
.seo-intro p{
  font-size:17px;
  color:#475569;
}
.seo-keywords{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:22px;
}
.seo-pill{
  background:#fff;
  border:1px solid var(--border);
  color:var(--navy);
  border-radius:999px;
  padding:9px 14px;
  font-weight:700;
  font-size:13px;
  box-shadow:0 8px 20px rgba(0,43,107,.05);
}
.service-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:30px;
}
.service-detail{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 10px 28px rgba(0,43,107,.06);
}
.service-detail h3{
  margin-bottom:10px;
}
.service-detail p{
  color:#475569;
  margin-bottom:0;
}
.seo-strip{
  background:linear-gradient(135deg,#f5fbff,#eef9f9);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  margin-top:34px;
}
.seo-strip h3{
  margin-bottom:8px;
}
@media(max-width:780px){
  .service-detail-grid{grid-template-columns:1fr}
}

/* Get Instant Quote button colour swap */
.btn-hero,
.hero-main-button .btn-primary{
  background:#00A7A7!important;
  color:#FFFFFF!important;
  border-color:#00A7A7!important;
}
.btn-hero:hover,
.hero-main-button .btn-primary:hover{
  background:#002B6B!important;
  color:#FFFFFF!important;
  border-color:#002B6B!important;
}


/* Quote calculator route map */
.route-map{
  width:100%;
  height:260px;
  border-radius:18px;
  border:1px solid var(--border);
  margin-top:14px;
  overflow:hidden;
  display:none;
  box-shadow:0 10px 24px rgba(0,43,107,.08);
}
.route-map.is-visible{
  display:block;
}
@media(max-width:780px){
  .route-map{height:220px}
}
