body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}

header {
  background: #1a0033;
  color: #FFD700;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #fff;
}
.cta-btn {
  background: #b8001c;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  margin-left: 1rem;
  box-shadow: 0 2px 8px 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: 40px;
  box-shadow: 0 4px 16px rgba(26,0,51,0.15);
  z-index: 2000;
  font-weight: 700;
  font-size: 1.1rem;
  animation: float 2s infinite alternate;
}
.floating-cta a {
  color: #fff;
  text-decoration: none;
}
@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
.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: 0 2rem;
  position: relative;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.hero-list li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.hero-cta {
  background: #b8001c;
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  margin-top: 1.5rem;
  display: inline-block;
}
.hero-cta:hover {
  background: #FFD700;
  color: #1a0033;
}
main {
  background: #fff;
  color: #1a0033;
}
.services-section, .about-section, .reviews-section, .estimate-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
}
.services-section h2, .about-section h2, .reviews-section h2, .estimate-section h2 {
  color: #1a0033;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.service-group {
  margin-bottom: 2.5rem;
}
.service-group h3 {
  color: #FFD700;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.service-group ul {
  list-style: disc inside;
  margin: 0 0 0 1rem;
  padding: 0;
}
.service-group ul li {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.about-section h3 {
  color: #b8001c;
  margin-top: 2rem;
  font-size: 1.1rem;
}
.reviews-section .review {
  background: #f7f7fa;
  border-left: 5px solid #FFD700;
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.04);
}
.review-text {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.review-author {
  color: #b8001c;
  font-weight: 700;
}
.estimate-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0 auto;
  background: #f7f7fa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.04);
}
.estimate-section label {
  font-weight: 700;
  color: #1a0033;
}
.estimate-section input, .estimate-section select, .estimate-section textarea {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.form-cta {
  background: #b8001c;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  border: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: background 0.2s;
}
.form-cta:hover {
  background: #FFD700;
  color: #1a0033;
}
.estimate-disclaimer {
  margin-top: 1.5rem;
  text-align: center;
  color: #1a0033;
  font-size: 0.98rem;
}
footer {
  background: #1a0033;
  color: #FFD700;
  padding: 2rem 0 1rem 0;
  margin-top: 3rem;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.footer-contact, .footer-links, .footer-legal {
  font-size: 1rem;
  text-align: center;
}
.footer-links a {
  color: #FFD700;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-links a:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  .services-section, .about-section, .reviews-section, .estimate-section {
    padding: 2.5rem 1rem 1rem 1rem;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    padding: 1rem 0.5rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .footer-content {
    padding: 0 0.5rem;
  }
  .floating-cta {
    right: 10px;
    bottom: 10px;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
}
