/* Reset + Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f6f8;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 3px solid #cc0000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

header .wrap,
.max-width {
  max-width: 1200px;
  margin: auto;
}

header .wrap {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav a {
  margin-right: 20px;
  font-weight: bold;
  color: #1B3FAF;
  text-decoration: none;
}

nav a:hover {
  opacity: 0.75;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-est {
  background: #cc0000;
  color: #fff;
}

.btn-call {
  background: #1B3FAF;
  color: #fff;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 40px auto;
  background: #1B3FAF;
  color: #fff;
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: 38px;
  font-weight: 900;
}

.hero p {
  font-size: 17px;
  margin-bottom: 20px;
}

.hero ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.hero .btn-est {
  display: inline-block;
  padding: 14px 26px;
  font-size: 16px;
  border-radius: 999px;
}

/* Services */
section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 24px;
}

.section-title {
  font-size: 26px;
  font-weight: 900;
  color: #1B3FAF;
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 14px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  padding: 22px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1B3FAF;
}

/* Locations */
.locations-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.locations-pill {
  padding: 8px 14px;
  background: #eef2ff;
  border-radius: 999px;
  border: 1px solid #d0d7ff;
  color: #1B3FAF;
  text-decoration: none;
}

/* Footer */
footer {
  background: #1B3FAF;
  color: white;
  padding: 32px 24px;
  margin-top: 60px;
}

footer p,
footer a {
  font-size: 14px;
  text-decoration: none;
  color: white;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media(max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  nav {
    flex-wrap: wrap;
  }
}
