
:root{
  --navy:#0b2e64;
  --navy2:#09305f;
  --blue:#0f4ea8;
  --bg:#f3f6fb;
  --card:#ffffff;
  --text:#0a1a33;
  --muted:#5b6b7f;
  --line:#d6deea;
  --shadow: 0 14px 30px rgba(6,20,42,.12);
  --radius:14px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;background:var(--bg);color:var(--text)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:1120px;margin:0 auto;padding:0 16px}
.muted{color:var(--muted)}
.sep{opacity:.7}
.center{text-align:center}
.small{font-size:13px}
.mt16{margin-top:16px}
.mt24{margin-top:24px}

/* Header (white like reference) */
.headerWrap{background:#fff;border-bottom:1px solid var(--line); position:sticky; top:0; z-index:50}
.header{display:flex;align-items:center;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px}
.logoBox{
  width:48px;height:38px;border-radius:8px;background:linear-gradient(135deg,var(--navy),var(--blue));
  position:relative; box-shadow:0 10px 22px rgba(11,46,100,.18);
}
.logoBox:before{
  content:""; position:absolute; left:10px; right:10px; bottom:8px; top:12px;
  border:2px solid rgba(255,255,255,.88); border-bottom:none; border-radius:8px 8px 2px 2px;
}
.brandText .name{font-weight:900;font-size:18px;line-height:1}
.brandText .sub{font-weight:900;letter-spacing:2px;font-size:11px;color:#3a4b66}

.nav{margin-left:auto;display:flex;gap:18px;align-items:center}
.nav a{font-weight:800;color:#243a5a}
.nav a:hover{text-decoration:underline}
.nav a.active{color:var(--blue)}

.actions{display:flex;gap:10px;align-items:center}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:9px 12px;border-radius:10px;border:1px solid var(--line);
  font-weight:900;font-size:12.5px; background:#fff;
}
.btn.primary{background:linear-gradient(180deg,#1b5fb7,#0c3f87); border-color:transparent; color:#fff}
.btn.ghost{background:#f6f8fc}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.burger{display:none;border:1px solid var(--line);background:#fff;border-radius:10px;padding:8px 10px;font-size:18px}

/* Hero */
.hero{
  position:relative;
  border-bottom:1px solid var(--line);
  background:#0b2e64;
}
.hero .heroBg{
  background-size:cover; background-position:center;
  min-height:440px;
}
.heroOverlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(6,20,42,.35), rgba(6,20,42,.55));
}
.heroInner{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
}
.heroCard{
  text-align:center;
  padding:26px 18px;
  max-width:900px;
  color:#fff;
}
.heroCard h1{margin:0 0 10px;font-size:44px; font-weight:950}
.heroCard p{margin:0 0 18px; font-weight:800; opacity:.95; line-height:1.4}
.heroBtns{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.btnLg{padding:12px 16px;border-radius:12px;font-size:13.5px}

/* Quick icons row */
.quick{
  margin-top:-26px; position:relative; z-index:3;
}
.quickGrid{
  display:grid; gap:0;
  grid-template-columns:repeat(3,1fr);
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.quickItem{
  padding:18px 14px;
  text-align:center;
  border-right:1px solid var(--line);
}
.quickItem:last-child{border-right:none}
.quickIcon{
  width:44px;height:34px;margin:0 auto 10px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(180deg,#1b5fb7,#0c3f87);color:#fff;font-weight:950;
}
.quickTitle{font-weight:950;color:#1f3555}

/* Section titles */
.section{padding:42px 0}
.h2{
  text-align:center;
  font-size:28px; font-weight:950;
  margin:0;
}
.hrLine{
  height:2px; width:120px; margin:12px auto 0;
  background:linear-gradient(90deg, transparent, #1b5fb7, transparent);
}

/* Why */
.whyRow{
  margin-top:22px;
  background:#fff;border:1px solid var(--line);border-radius:12px;
  box-shadow:var(--shadow);
  display:grid; gap:0;
  grid-template-columns:repeat(5,1fr);
  overflow:hidden;
}
.whyItem{padding:18px 12px; text-align:center; border-right:1px solid var(--line)}
.whyItem:last-child{border-right:none}
.whyIcon{
  width:42px;height:42px;margin:0 auto 10px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:#eef4ff; border:1px solid #d8e6ff; color:#0f4ea8; font-weight:950;
}
.whyTitle{font-weight:950;font-size:12.5px;color:#1f3555}

/* Service area bar */
.areaBar{
  margin-top:26px;
  background:linear-gradient(180deg,#0b2e64,#092a58);
  color:#fff;
  padding:16px 0;
}
.areaBar h3{margin:0 0 8px;text-align:center;font-weight:950}
.areaBar p{margin:0;text-align:center;font-weight:800;opacity:.92}

/* Split */
.split{display:grid;gap:16px;grid-template-columns:1.15fr .85fr;align-items:stretch}
.split img{border-radius:12px;border:1px solid var(--line);box-shadow:var(--shadow)}
.card{
  background:#fff;border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow);
  padding:18px;
}
.card h3{margin:0 0 10px;font-weight:950;color:#14345f}
.check{margin:0; padding-left:18px; color:#2b3f5e; font-weight:700}
.check li{margin:10px 0}
.cardBtns{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}

/* Reviews */
.reviewsGrid{display:grid;gap:14px;grid-template-columns:repeat(3,1fr);margin-top:18px}
.review{
  background:#fff;border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow);
  padding:16px;
}
.review p{margin:0;font-style:italic;color:#203a60;line-height:1.55}
.review .who{margin-top:10px;font-weight:950;color:#0f4ea8}

/* Services page cards */
.servicesGrid{display:grid;gap:14px;grid-template-columns:repeat(3,1fr);margin-top:18px}
.serviceCard{background:#fff;border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow);overflow:hidden}
.serviceCard img{height:170px;width:100%;object-fit:cover}
.serviceBody{padding:14px}
.serviceBody h3{margin:0 0 8px;font-weight:950;color:#14345f}
.serviceBody p{margin:0;color:#3a4b66;font-weight:650;line-height:1.45}

/* Contact */
.contactGrid{display:grid;gap:16px;grid-template-columns:1fr 1fr;align-items:start;margin-top:18px}
.infoRow{display:flex;gap:12px;align-items:flex-start;margin:10px 0}
.infoIcon{width:38px;height:38px;border-radius:12px;background:#eef4ff;border:1px solid #d8e6ff;display:flex;align-items:center;justify-content:center;color:#0f4ea8;font-weight:950}
label{display:block;font-weight:900;color:#14345f;margin:12px 0 8px}
input,textarea{width:100%;padding:11px 12px;border-radius:10px;border:1px solid var(--line);background:#f8fbff}
input:focus,textarea:focus{outline:none;border-color:#90b7ff;box-shadow:0 0 0 3px rgba(80,140,255,.18)}
.w100{width:100%}
.mapBox{margin-top:14px;border-radius:12px;border:1px dashed #cdd8ea;background:#f7faff;padding:26px;text-align:center;color:#5b6b7f}

/* Footer */
.footer{background:#0b2e64;color:#fff;margin-top:42px}
.footerInner{padding:22px 0;text-align:center}
.footerInner a{color:#fff;text-decoration:underline;font-weight:850}
.sticky{position:fixed;left:16px;right:16px;bottom:16px;display:none;text-align:center;padding:14px 16px;border-radius:14px;background:linear-gradient(180deg,#1b5fb7,#0c3f87);color:#fff;font-weight:950;box-shadow:0 18px 40px rgba(6,20,42,.25)}

.mobileMenu{display:none;border-top:1px solid var(--line);background:#fff;padding:10px 0}
.mobileMenu a{display:block;padding:12px 16px;font-weight:850;color:#243a5a}
.mobileMenu a:hover{background:#f5f8fe}

@media (max-width: 980px){
  .whyRow{grid-template-columns:repeat(2,1fr)}
  .whyItem:nth-child(2n){border-right:none}
  .servicesGrid,.reviewsGrid{grid-template-columns:1fr}
  .split,.contactGrid{grid-template-columns:1fr}
  .heroCard h1{font-size:34px}
}
@media (max-width: 820px){
  .nav{display:none}
  .burger{display:inline-flex}
  .sticky{display:block}
}
