:root{
  --navy:#0b1a33;
  --blue:#0a86c7;
  --blue2:#0d78b5;
  --orange:#f28c18;
  --text:#0f172a;
  --muted:#475569;
  --border:#e5e7eb;
  --shadow: 0 20px 50px rgba(2,6,23,.12);
  --shadow2: 0 10px 24px rgba(2,6,23,.12);
  --max: 1200px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}
a{color:inherit}
.container{
  width: min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

/* HEADER */
.topbar{
  background:#fff;
  border-bottom:1px solid #f1f5f9;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

/* Logo image only */
.brand{
  display:flex;
  align-items:center;
  min-width: 220px;
  text-decoration:none;
}
.brand-logo{
  height:44px;           /* adjust as needed */
  width:auto;
  display:block;
  object-fit:contain;
}

.phone{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex:1;
  font-weight:800;
  color:#0b2a5a;
  letter-spacing:.3px;
  white-space:nowrap;
}
.phone svg{width:18px;height:18px;fill:#0b2a5a}
.phone-link{
  text-decoration:none;
  font-weight:900;
}

.topnav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
  min-width: 320px;
}
.topnav a{
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  letter-spacing:.2px;
  color:#0b2a5a;
  padding:8px 2px;
  border-bottom:2px solid transparent;
}
.topnav a:hover{
  border-bottom-color: rgba(11,42,90,.35);
}

/* Mobile button kept (no dropdown row) */
.menu-btn{
  display:none;
  border:1px solid #e2e8f0;
  background:#fff;
  border-radius: 10px;
  padding:10px 12px;
  font-weight:900;
  cursor:pointer;
}

/* HERO */
.hero{
  position:relative;
  background: var(--navy);
  overflow:hidden;
  min-height: 520px;
}
.hero-media{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.10), rgba(0,0,0,.10)),
    url("https://images.unsplash.com/photo-1505693314120-0d443867891c?auto=format&fit=crop&w=1800&q=70");
  background-size: cover;
  background-position: left center;
  transform: translateZ(0);
}
.hero::before{
  content:"";
  position:absolute;
  inset:-200px -200px -200px 45%;
  background: linear-gradient(135deg, var(--blue2), var(--blue));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.hero::after{
  content:"";
  position:absolute;
  inset:-220px -220px -220px 55%;
  background: rgba(0,0,0,.20);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 5% 100%);
  opacity:.55;
  mix-blend-mode: multiply;
}

.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:32px;
  padding:54px 0 48px;
  align-items:start;
}

.hero-copy{
  padding-left: 6px;
  max-width: 720px;
  color:#fff;
}
.hero-copy h1{
  margin:0;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: 4px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(0,0,0,.18);
}
.hero-copy .slogan{
  margin:14px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  letter-spacing:.3px;
  text-shadow: 0 2px 0 rgba(0,0,0,.12);
}
.hero-copy .tagline{
  margin-top: 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 0 rgba(0,0,0,.12);
}
.hero-copy p{
  margin:16px 0 0;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  text-shadow: 0 2px 0 rgba(0,0,0,.12);
}

/* Right form card */
.estimate-card{
  background:#fff;
  border:1px solid rgba(255,255,255,.35);
  border-radius: 2px;
  box-shadow: var(--shadow);
  width: min(420px, 100%);
  justify-self:end;
  margin-top: 10px;
}
.estimate-card .pad{
  padding:18px 18px 16px;
}
.estimate-card h3{
  margin:0 0 8px;
  color:#0b2a5a;
  font-weight: 900;
  font-size: 18px;
}
.estimate-card p{
  margin:0 0 14px;
  color:#1f2937;
  font-size: 13px;
  line-height: 1.55;
}
.field{
  width:100%;
  margin: 0 0 10px;
}
.field input, .field textarea{
  width:100%;
  padding:10px 10px;
  border:1px solid #d1d5db;
  outline:none;
  font-size: 12px;
  border-radius: 2px;
  font-family: inherit;
}
.field textarea{min-height: 92px; resize: vertical;}
.estimate-card button{
  width:100%;
  border:none;
  border-radius: 0;
  background: var(--orange);
  color:#fff;
  font-weight: 900;
  letter-spacing: .5px;
  padding: 12px 12px;
  cursor:pointer;
  text-transform: uppercase;
  font-size: 12px;
}

/* TEAM + LOGOS */
.team{
  padding: 48px 0 10px;
  background:#fff;
}
.team-inner{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:34px;
  align-items:center;
}
.team-photo{
  width: 210px;
  height: 210px;
  border-radius: 999px;
  overflow:hidden;
  margin: 0 auto;
  box-shadow: var(--shadow2);
  border: 6px solid #fff;
  background:#e2e8f0;
}
.team-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.team-copy h2{
  margin:0 0 12px;
  font-size: 28px;
  font-weight: 900;
  color:#0b1a33;
  text-align:center;
}
.team-copy p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 740px;
  margin-inline:auto;
  text-align:left;
}
.team-copy p a{
  color: var(--blue);
  font-weight: 800;
  text-decoration:none;
}

.logos{
  padding: 22px 0 40px;
}
.logos-row{
  display:flex;
  gap:26px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}
.logo-chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  background:#fff;
}
.logo-chip img{
  height:50px;
  width:auto;
  display:block;
  opacity:.95;
}
.logo-chip .small{
  font-size:12px;
  color:#0f172a;
  font-weight:800;
}

/* SERVICES */
.services{
  background:#f8fafc;
  padding: 52px 0;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}
.section-title{
  text-align:center;
  margin:0 0 26px;
  font-size: 28px;
  font-weight: 900;
  color:#0b1a33;
}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 14px;
  padding:18px 18px 16px;
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
}
.card h3{
  margin:0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color:#0b1a33;
}
.card p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* GALLERY */
.gallery{
  padding: 52px 0;
  background:#fff;
}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.gallery-item{
  border-radius: 14px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
  background:#e2e8f0;
  aspect-ratio: 16/10;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* CONTACT */
.contact{
  padding: 56px 0;
  background:#f8fafc;
  border-top: 1px solid #eef2f7;
}
.contact-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.contact-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow2);
}
.contact-card h3{
  margin:0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color:#0b1a33;
}
.contact-card p{
  margin:0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.contact-card button{
  width:100%;
  padding:12px;
  border:none;
  border-radius: 12px;
  background: var(--blue);
  color:#fff;
  font-weight: 900;
  letter-spacing: .3px;
  cursor:pointer;
  margin-top: 8px;
}
.contact-aside{
  padding: 6px 0;
}
.contact-aside .info{
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border:1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
}
.info strong{display:block; margin-bottom:6px}
.info .line{color:#334155; font-size: 14px; line-height: 1.75}
.info .spacer{ margin-top: 10px; }
.link-blue{
  color: var(--blue);
  font-weight: 800;
  text-decoration:none;
}

/* FOOTER */
footer{
  background:#0b1a33;
  color:#cbd5e1;
  padding: 40px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  flex-wrap:wrap;
  font-size: 12px;
}
.footer-blurb{
  max-width: 680px;
  line-height: 1.6;
}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links a{
  color:#cbd5e1;
  text-decoration:none;
  font-weight:700;
}
.footer-links a:hover{color:#fff}

/* Responsive */
@media (max-width: 980px){
  .topnav{display:none;}
  .menu-btn{display:inline-flex;}

  .hero-inner{grid-template-columns: 1fr; padding: 40px 0 36px;}
  .estimate-card{justify-self:start; margin-top: 14px;}
  .hero::before{inset:-220px -220px -220px 35%;}
  .hero::after{inset:-240px -240px -240px 45%;}

  .team-inner{grid-template-columns: 1fr; text-align:center}
  .team-copy p{text-align:left}

  .cards{grid-template-columns: 1fr}
  .gallery-grid{grid-template-columns: 1fr}
  .contact-wrap{grid-template-columns: 1fr}

  .brand{min-width:auto}
  .phone{justify-content:flex-end}
  .topbar-inner{gap:10px}
}
@media (max-width: 520px){
  .phone{display:none;}
  .hero-copy h1{letter-spacing:3px;}
  .brand-logo{height:40px;}
}
