:root{
  --brand:#0f3d91;
  --muted:#6b7280;
  --bg:#f8f9fa;
  --card:#ffffff;
  --accent:#0f3d91;
  --gap:18px;
  --container-max:1200px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:#111827;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.4;
}

.container{
  width:min(100% - 40px, var(--container-max));
  margin:0 auto;
  padding:24px 0;
}

/* Header */
.site-header{background:var(--brand); color:#fff}
.header-inner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
}
.brand .logo{
  height:52px;
  width:auto;
  display:block;
  border-radius:6px;
  background:rgba(255,255,255,0);
}
.brand-text{
  font-weight:700;
  color:#fff;
  font-size:18px;
  letter-spacing:0.6px;
  line-height:1;
}

/* Toggle and nav */
.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  color:#fff;
  font-size:20px;
}
.main-nav ul{display:flex;gap:16px;list-style:none;margin:0;padding:0}
.main-nav a{color:rgba(255,255,255,0.95);padding:8px 6px;border-radius:6px}
.main-nav a:hover{background:rgba(255,255,255,0.06)}
.phone-cta{background:rgba(255,255,255,0.12);padding:8px 10px;border-radius:6px;color:#fff;font-weight:600}

/* Hero */
.hero{
  min-height:360px;
  background-image:linear-gradient(to right bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.05)), url('assets/logo.png');
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  display:flex;
  align-items:center;
  color:#fff;
}
.hero-overlay{
  width:100%;
  padding:48px 20px;
  text-align:center;
  backdrop-filter: none;
}
.hero h1{font-size:clamp(28px,4vw,44px);margin:0 0 10px}
.hero-sub{margin:0 0 16px;color:rgba(255,255,255,0.95);font-weight:600}
.hero-actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:10px}
.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:8px;
  background:#fff;
  color:var(--brand);
  text-decoration:none;
  font-weight:700;
  border:0;
  cursor:pointer;
}
.btn.primary{background:var(--accent); color:#fff}

/* Cards */
.card{
  background:var(--card);
  border-radius:10px;
  padding:20px;
  box-shadow:0 6px 18px rgba(15,61,145,0.06);
  margin:20px 0;
}

/* Services */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin-top:18px;
}
.service{background:#eef2f7;padding:14px;border-radius:8px}
.service h3{margin:0 0 6px;color:var(--brand)}

/* Areas */
.areas ul{list-style:disc;margin:12px 0 0 20px;padding:0;color:var(--muted)}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 360px;gap:20px;align-items:start}
.contact-form label{display:block;margin-bottom:10px;font-weight:600}
.contact-form input,
.contact-form textarea{
  width:100%;padding:10px;border-radius:8px;border:1px solid #d1d5db;margin-top:6px;font-size:15px;
}
.small{font-size:12px}
.muted{color:var(--muted)}
.service-note{margin-top:12px;color:var(--muted);font-weight:600}

/* Footer */
.site-footer{padding:18px 0;margin-top:24px}
.footer-inner{display:flex;gap:10px;align-items:center;justify-content:space-between;color:var(--muted)}
.footer-nav a{color:var(--muted);margin-left:10px;text-decoration:none}

/* Responsive */
@media (max-width:900px){
  .contact-grid{grid-template-columns:1fr}
  .brand .logo{height:46px}
}
@media (max-width:740px){
  .main-nav{display:none}
  .nav-toggle{display:inline-block}
  .header-inner{gap:8px}
  .phone-cta{display:none}
  .brand-text{font-size:16px}
}
@media (max-width:480px){
  .hero-overlay{padding:32px 12px}
  .hero h1{font-size:22px}
  /* On very small screens keep logo but shorten text to avoid wrap */
  .brand-text{display:none}
  .brand{gap:8px}
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}