:root{
  --primary:#0F766E;
  --primary-dark:#0A524D;
  --accent:#FF6A00;
  --accent-dark:#CC5500;
  --bg:#F8FAFB;
  --text:#1C1C1C;
  --text-light:#475569;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{text-decoration:none;color:inherit}
header{
  background:var(--primary-dark);
  color:#fff;
}
.nav{
  max-width:1100px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo-wrap{display:flex;align-items:center;gap:10px}
.logo-wrap img{width:52px;height:52px;object-fit:contain}
.brand-title{font-weight:700;font-size:20px}
nav a{
  margin-left:18px;
  font-weight:500;
  opacity:.9;
}
nav a:hover{opacity:1}
main{max-width:1100px;margin:0 auto;padding:22px 18px 40px}
.hero{
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(0,1.4fr);
  gap:26px;
  margin-top:20px;
  align-items:center;
}
.hero-text h1{
  margin:0 0 10px;
  font-size:32px;
  color:var(--primary-dark);
}
.hero-text p{
  margin:0 0 18px;
  color:var(--text-light);
  line-height:1.7;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  background:#022c22;
  color:#A7F3D0;
  font-size:12px;
  margin-bottom:10px;
}
.btn-row{display:flex;flex-wrap:wrap;gap:10px}
.btn{
  padding:11px 18px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font-weight:600;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.btn-primary{background:var(--accent);color:#fff;}
.btn-outline{border:2px solid var(--accent);color:var(--accent);background:transparent;}
.hero-media img{
  width:100%;
  border-radius:16px;
  object-fit:cover;
  box-shadow:0 14px 40px rgba(15,118,110,.38);
  min-height:220px;
}
.badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px;font-size:12px;color:var(--text-light)}
.badge{padding:4px 10px;border-radius:999px;background:#e0f2fe}
.section-title{font-size:22px;margin:30px 0 10px;color:var(--primary-dark)}
.muted{color:var(--text-light);font-size:14px;margin:0 0 16px}
.grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:16px;
}
.card{
  background:#fff;
  border-radius:14px;
  padding:16px 16px 18px;
  box-shadow:0 8px 22px rgba(15,23,42,.10);
}
.card h3{margin:4px 0 8px;font-size:17px;color:var(--primary-dark)}
.card p{margin:0;font-size:14px;color:var(--text-light);line-height:1.6}
.card img{
  width:100%;
  border-radius:10px;
  object-fit:cover;
  height:170px;
  margin-bottom:8px;
}
.services-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.tag{
  padding:5px 10px;
  border-radius:999px;
  background:#ECFEFF;
  border:1px solid #BAE6FD;
  font-size:12px;
  font-weight:600;
  color:#0369A1;
}
.two-col{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);
  gap:18px;
  margin-top:20px;
}
.info-list{padding-left:18px;margin:6px 0 0;font-size:14px;color:var(--text-light)}
.info-list li{margin-bottom:4px}
.contact-card label{font-size:13px;margin-bottom:2px;display:block;color:var(--text-light)}
.contact-card input,.contact-card textarea{
  width:100%;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid #CBD5E1;
  font-size:14px;
  margin-bottom:10px;
  font-family:inherit;
}
textarea{resize:vertical;min-height:90px}
footer{
  background:#020617;
  color:#9CA3AF;
  font-size:13px;
  padding:14px 0;
  margin-top:20px;
}
footer .wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 18px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}
footer a{color:#CBD5F5;font-size:13px}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:14px;
  margin-top:16px;
}
.gallery-grid img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:12px;
}
.page-hero{
  background:#0B1727;
  color:#E5E7EB;
  padding:28px 18px;
  margin-bottom:16px;
  border-radius:0 0 18px 18px;
}
.page-hero h1{margin:0 0 6px;font-size:26px}
.breadcrumbs{
  font-size:12px;
  opacity:.8;
}
.breadcrumbs a{color:#A5B4FC}
.pill-small{
  display:inline-flex;
  padding:3px 9px;
  border-radius:999px;
  background:#022C22;
  font-size:11px;
  color:#6EE7B7;
  align-items:center;
  gap:4px;
}
.slider{
  position:relative;
  width:100%;
  border-radius:16px;
  overflow:hidden;
  margin-top:8px;
}
.slides{
  display:flex;
  width:300%;
  animation:slide 14s infinite;
}
.slides img{
  width:100%;
  object-fit:cover;
  height:260px;
}
@keyframes slide{
  0%{margin-left:0}
  30%{margin-left:0}
  35%{margin-left:-100%}
  65%{margin-left:-100%}
  70%{margin-left:-200%}
  100%{margin-left:-200%}
}
.spider-note{
  font-size:12px;
  color:var(--text-light);
  margin-top:6px;
}
.cols-2{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) minmax(0,1fr);
  gap:18px;
}
.list-check{padding-left:18px;font-size:14px;color:var(--text-light)}
.list-check li{margin-bottom:5px}
.contact-columns{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
  gap:20px;
  margin-top:12px;
}
.contact-info p{margin:4px 0;font-size:14px;color:var(--text-light)}
.map-box{
  background:#020617;
  border-radius:14px;
  padding:12px;
  color:#E5E7EB;
  font-size:13px;
}
.map-box strong{display:block;margin-bottom:6px}
.social-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:6px;font-size:13px}
.social-pill{
  padding:5px 9px;
  border-radius:999px;
  background:#020617;
  color:#E5E7EB;
}
.social-pill span{opacity:.8}
.hero-kpi{display:flex;flex-wrap:wrap;gap:16px;margin-top:10px;font-size:13px;color:var(--text-light)}
.hero-kpi-card span{display:block}
.hero-kpi-card strong{font-size:16px;color:#F97316}
@media (max-width:850px){
  .hero,.two-col,.cols-2,.contact-columns{grid-template-columns:1fr}
  .hero{margin-top:10px}
  nav{display:none}
  .slides img{height:210px}
}
