
:root{--navy:#0b1f33;--orange:#f27a1a}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:#f5f6f7;color:#111}
header{background:var(--navy);padding:18px 0}
header .bar{display:flex;align-items:center;justify-content:space-between;gap:14px}
header img{height:56px;width:auto;display:block}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.nav{display:flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.nav a{color:#fff;text-decoration:none;font-weight:800;opacity:.94}
.nav a:hover{opacity:1;text-decoration:underline}
.nav .btn{white-space:nowrap}
.container{max-width:1120px;margin:auto;padding:0 18px}
.btn{display:inline-block;padding:12px 14px;border-radius:10px;background:var(--orange);color:#111;font-weight:800;text-decoration:none}
.btn.alt{background:#fff;color:var(--navy);border:1px solid rgba(255,255,255,.25)}
.hero{padding:26px 0}
.hero h1{margin:0 0 8px;color:var(--navy);font-size:28px}
.hero p{margin:0 0 16px;color:#333;line-height:1.55}
.badges{display:flex;gap:10px;flex-wrap:wrap;margin:10px 0 0}
.badge{background:#fff;border:1px solid #e6e7ea;border-radius:999px;padding:8px 12px;font-weight:650;color:#243}
.section{padding:18px 0}
h2{margin:0 0 12px;color:var(--navy)}
.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px}
.gallery img{width:100%;border-radius:12px;border:1px solid #e6e7ea;background:#fff;box-shadow:0 6px 18px rgba(0,0,0,.06)}
footer{background:var(--navy);color:#fff;padding:18px 0;margin-top:24px}
footer a{color:#fff}
.small{font-size:13px;opacity:.9}

/* Trust + Chips */
.trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:14px}
.card{background:#fff;border:1px solid #e8eef5;border-radius:14px;padding:14px;box-shadow:0 1px 0 rgba(0,0,0,.04)}
.card h3{margin:0 0 6px 0;font-size:15px}
.card p{margin:0;color:#333;line-height:1.45}
.star{color:#f39c12}

.chips{display:flex;flex-wrap:wrap;gap:10px;margin:10px 0 0}
.chip{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:999px;border:1px solid #e6e7ea;background:#fff;color:#1f3a4a;font-weight:750}
.chip--outline{background:transparent}

/* Social buttons */
.social-buttons{display:flex;flex-wrap:wrap;gap:12px;margin-top:10px}
.social-btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:12px;border:1px solid #e6e7ea;background:#fff;color:#0b2438;font-weight:850;text-decoration:none;min-width:140px}
.social-btn:hover{box-shadow:0 8px 24px rgba(0,0,0,.08)}

/* Contact form (Netlify) */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;align-items:start}
.form{background:#fff;border:1px solid #e6e7ea;border-radius:14px;padding:14px}
.form label{display:block;font-weight:850;color:#0b2438;margin:0 0 6px}
.form input,.form textarea{width:100%;padding:12px;border-radius:12px;border:1px solid #dde3ea;font:inherit}
.form textarea{min-height:120px;resize:vertical}
.form .row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form .actions{display:flex;gap:10px;align-items:center;flex-wrap:wrap;margin-top:10px}
.note{font-size:13px;color:#425b6a;line-height:1.45}
.btn--secondary{background:#fff;color:#0b2438;border:2px solid #0b2438}
.btn--secondary:hover{filter:brightness(1.02)}

/* Lightbox */
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.8);display:none;align-items:center;justify-content:center;padding:18px;z-index:9999}
.lightbox.is-open{display:flex}
.lightbox__inner{max-width:min(980px,100%);max-height:85vh;position:relative}
.lightbox__img{max-width:100%;max-height:85vh;border-radius:14px;display:block}
.lightbox__close{position:absolute;top:-12px;right:-12px;width:42px;height:42px;border-radius:999px;border:0;background:#fff;font-weight:900;cursor:pointer;box-shadow:0 8px 24px rgba(0,0,0,.25)}
.lightbox__cap{color:#fff;text-align:center;margin-top:10px;font-weight:800;opacity:.95}

/* Floating call button (mobile first) */
.fab{position:fixed;right:14px;bottom:14px;z-index:9998}
.fab__btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 16px;border-radius:999px;background:var(--orange);color:#0b2438;font-weight:950;text-decoration:none;box-shadow:0 12px 28px rgba(0,0,0,.25)}
.fab__btn:active{transform:translateY(1px)}

/* Gallery tweaks */
.gallery img{cursor:zoom-in}

@media (max-width:860px){
  .trust-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  header .bar{flex-wrap:wrap;justify-content:center}
  .nav{justify-content:center}
  .fab{right:12px;bottom:12px}
}

@media (min-width:861px){
  .fab{display:none}
}



/* Trust section */
.trust { padding: 28px 0 6px; }
.trustGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trustCard{
  background: #fff;
  border: 1px solid rgba(15, 33, 53, .12);
  border-radius: 16px;
  padding: 14px 14px;
}
.trustCard h3{ margin:0 0 6px; font-size: 16px; }
.trustCard p{ margin:0; color: rgba(15,33,53,.78); font-size: 14px; }
.trustNote{
  margin-top: 12px;
  display:flex;
  gap:10px;
  align-items:center;
  color: rgba(15,33,53,.8);
  font-size: 14px;
}
.trustNote .stars{ color: var(--orange); letter-spacing: 1px; }

/* WhatsApp button (kept on-brand) */
.btn.whatsapp{
  border: 1px solid rgba(15, 33, 53, .18);
  background: #fff;
  color: var(--navy);
}
.btn.whatsapp:hover{ transform: translateY(-1px); }

/* Mobile action bar */
.mobileBar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  gap: 10px;
  z-index: 50;
}
.mobileBar .mBtn{
  flex: 1;
  text-align:center;
  padding: 12px 10px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(15,33,53,.14);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(15,33,53,.10);
}
.mobileBar .mBtn.call{
  background: var(--orange);
  color: #0b1a2a;
  border-color: rgba(0,0,0,.08);
}
.mobileBar .mBtn.quote{
  background: var(--navy);
  color: #fff;
  border-color: rgba(0,0,0,.08);
}

@media (max-width: 760px){
  .trustGrid{ grid-template-columns: 1fr; }
  .mobileBar{ display:flex; }
  body{ padding-bottom: 78px; }
}
