:root {
  --dark: #2b2b2b;
  --accent: #8b1e24;
  --light: #f5f5f5;
  --text: #444;
}

* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
}

a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--dark);
  z-index: 1000;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.phone-cta {
  background: var(--accent);
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
}

.hero {
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  padding: 80px 20px;
}

.hero-content {
  max-width: 900px;
  margin: auto;
  color: #fff;
}

.hero h1 {
  font-size: 36px;
}

.hero-buttons {
  margin-top: 25px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  display: inline-block;
  margin-right: 10px;
}

.btn-secondary {
  border: 2px solid #fff;
  padding: 12px 22px;
  color: #fff;
  border-radius: 6px;
}

.hero-trust span {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
  opacity: 0.9;
}

.trust-strip {
  background: var(--light);
  display: flex;
  justify-content: space-around;
  padding: 20px;
  font-weight: bold;
}

section {
  padding: 60px 20px;
}

.services, .reviews {
  background: #fff;
}

.service-grid, .review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.service-card, .review {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
}

.stars {
  color: #f1b400;
  font-size: 18px;
}

.emergency {
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.coverage iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 20px;
}

.contact {
  background: var(--light);
  max-width: 700px;
  margin: auto;
  border-radius: 10px;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
}

.contact form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
}

footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 25px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }
}

