body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}

.main-nav {
  width: 100%;
  background: #1a0033;
  color: #FFD700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 70px;
}
.main-nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.main-nav ul li a:hover {
  color: #fff;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0033 70%, #FFD700 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #b8001c;
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(26,0,51,0.08);
}
.cta-btn:hover {
  background: #FFD700;
  color: #1a0033;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b8001c;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26,0,51,0.15);
  z-index: 2000;
  transition: background 0.2s;
}
.floating-cta:hover {
  background: #FFD700;
  color: #1a0033;
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .main-nav ul {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .main-nav {
    flex-direction: column;
    height: auto;
    padding: 0.5rem 1rem;
  }
  .main-nav .logo {
    margin-bottom: 0.5rem;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .floating-cta {
    right: 10px;
    bottom: 10px;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
}

/* Section Containers */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

section {
  padding: 3rem 0;
}

/* Services Section */
.services-section {
  background: #f8f6ff;
  color: #1a0033;
}
.services-section h2, .services-section h3 {
  color: #1a0033;
}
.service-list {
  list-style: disc inside;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}
.service-list li {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
}
.emergency-banner {
  background: #FFD700;
  color: #1a0033;
  padding: 1rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-weight: 700;
  text-align: center;
}
.why-choose {
  list-style: square inside;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}
.why-choose li {
  margin-bottom: 0.5rem;
}

/* Reviews Section */
.reviews-section {
  background: #fff;
  color: #1a0033;
}
.reviews-section h2 {
  color: #1a0033;
}
.review {
  background: #f8f6ff;
  border-left: 5px solid #FFD700;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-size: 1.08rem;
}
.review-summary {
  font-weight: 700;
  color: #b8001c;
  margin-top: 2rem;
}

/* Contact/Estimate Section */
.contact-section {
  background: #f8f6ff;
  color: #1a0033;
}
.contact-section h2 {
  color: #1a0033;
}
.estimate-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(26,0,51,0.06);
  margin-bottom: 2rem;
}
.estimate-form label {
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.estimate-form button {
  margin-top: 1rem;
}
.contact-details {
  margin-bottom: 2rem;
}
.contact-details p {
  margin: 0.3rem 0;
}
.local-seo {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(26,0,51,0.04);
}
.local-seo h3 {
  margin-top: 0;
}
.local-seo ul {
  list-style: disc inside;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .container {
    padding: 1.2rem 0.3rem;
  }
  .estimate-form {
    padding: 1rem;
  }
  .local-seo {
    padding: 0.7rem;
  }
}
