:root {
  --blue: #2447ba;
  --blue-2: #315be6;
  --blue-soft: #edf3ff;
  --navy: #10213f;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --offwhite: #f8fbff;
  --border: #dfe7f3;
  --shadow: 0 18px 45px rgba(15, 35, 75, 0.10);
  --shadow-soft: 0 10px 28px rgba(15, 35, 75, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 6%;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(15, 35, 75, 0.06);
}
.brand img {
  height: clamp(60px, 8vw, 110px);
  width: auto;
  display: block;
  object-fit: contain;
}
.nav { display: flex; gap: 22px; font-weight: 600; color: #526174; font-size: 14px; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--blue); }
.header-phone {
  background: var(--blue);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(36, 71, 186, .22);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 48px;
  padding: 76px 6% 62px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}
.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 12px;
}
h1, h2, h3 { color: var(--navy); line-height: 1.1; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); letter-spacing: -0.05em; }
h2 { font-size: clamp(31px, 4vw, 46px); letter-spacing: -0.04em; }
h3 { font-size: 20px; margin-top: 18px; }
.hero-copy { font-size: 19px; color: var(--muted); max-width: 600px; margin: 24px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
  padding: 14px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--blue); color: white; box-shadow: 0 12px 26px rgba(36, 71, 186, .23); }
.btn.primary:hover { background: var(--blue-2); }
.btn.secondary { background: white; color: var(--blue); border-color: var(--border); box-shadow: var(--shadow-soft); }
.hero-image img, .about-card img { border-radius: 22px; box-shadow: var(--shadow); width: 100%; height: 600px; object-fit: cover; }

.section { padding: 82px 6%; background: var(--white); }
.section:nth-of-type(even) { background: var(--offwhite); }
.about { display: grid; grid-template-columns: 1fr .9fr; gap: 46px; align-items: center; }
.section-text p:not(.eyebrow), .centered p, .estimate-copy p { color: var(--muted); font-size: 17px; }
.centered { text-align: center; max-width: 780px; margin: 0 auto 44px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 210px; object-fit: cover; border-radius: 15px; }
.service-card p { color: var(--muted); margin-bottom: 8px; }

.areas {
  background: var(--white) !important;
  color: var(--text);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 40px;
  align-items: start;
}
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.area-list span {
  background: var(--blue-soft);
  border: 1px solid #d7e4ff;
  color: var(--navy);
  padding: 15px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.estimate {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 36px;
  background: var(--offwhite) !important;
}
.contact-mini { display: grid; gap: 8px; font-weight: 800; color: var(--blue); margin-top: 22px; }
.quote-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 15px;
}
.quote-form::before {
  content: "Get a Free Estimate";
  background: var(--blue);
  color: white;
  margin: -28px -28px 8px;
  padding: 18px 24px;
  border-radius: 18px 18px 0 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; font-weight: 700; color: #475569; font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(49, 91, 230, .12); }
textarea { resize: vertical; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
blockquote {
  margin: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-weight: 600;
}
blockquote span { display: block; margin-top: 18px; color: var(--blue); font-weight: 800; }

.faq { background: var(--offwhite) !important; }
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
details { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 18px 22px; box-shadow: 0 8px 22px rgba(15,35,75,.04); }
summary { cursor: pointer; font-weight: 800; color: var(--navy); }
details p { color: var(--muted); margin-bottom: 0; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.contact-card {
  border-radius: 18px;
  background: var(--blue);
  color: white;
  padding: 34px;
  display: grid;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--shadow);
}
.contact-card p { margin: 0; font-size: 16px; font-weight: 500; opacity: .9; }

footer { padding: 34px 6%; text-align: center; border-top: 1px solid var(--border); color: var(--muted); background: white; }
footer img { width: 190px; margin: 0 auto 12px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero, .about, .areas, .estimate, .contact { grid-template-columns: 1fr; }
  .service-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-image img, .about-card img { height: 460px; }
}
@media (max-width: 640px) {
  .site-header { padding: 12px 5%; }
  .brand img { width: 145px; }
  .header-phone { display: none; }
  .hero, .section { padding-left: 5%; padding-right: 5%; }
  .service-grid, .testimonial-grid, .area-list, .form-row { grid-template-columns: 1fr; }
  .hero-image img, .about-card img { height: 340px; border-radius: 18px; }
  .quote-form { padding: 20px; }
  .quote-form::before { margin: -20px -20px 6px; }
}
