body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}

header {
  background: #1a0033;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.7rem;
  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: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav ul li a:hover {
  color: #FFD700;
}

.cta-btn {
  background: #b8001c;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-left: 1rem;
}

.cta-btn:hover, .hero-cta:hover {
  background: #FFD700;
  color: #1a0033;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b8001c;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(26,0,51,0.15);
  z-index: 2000;
  font-size: 1.1rem;
  font-weight: 700;
  animation: float 2s infinite alternate;
}

.floating-cta a {
  color: #fff;
  text-decoration: none;
}

.floating-cta span {
  color: #FFD700;
  font-weight: 700;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-section {
  background: linear-gradient(120deg, #1a0033 70%, #FFD700 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: #FFD700;
  font-weight: 600;
}

.hero-cta {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
}

.services-section {
  background: #fff;
  color: #1a0033;
  padding: 4rem 2rem 2rem 2rem;
}

.services-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #1a0033;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service {
  background: #f7f3ff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.07);
  padding: 2rem;
  flex: 1 1 320px;
  max-width: 400px;
  min-width: 280px;
}

.service h3 {
  color: #1a0033;
  margin-top: 0;
}

.service ul {
  padding-left: 1.2rem;
  margin: 0.7rem 0 0 0;
}

.emergency {
  background: #FFD700;
  color: #1a0033;
  border-radius: 18px;
  margin: 2rem auto 0 auto;
  max-width: 700px;
  padding: 1.5rem 2rem;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(26,0,51,0.07);
}

.about-section {
  background: #f7f3ff;
  color: #1a0033;
  padding: 4rem 2rem 2rem 2rem;
}

.about-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.about-section ul {
  margin: 1.5rem 0 1.5rem 1.5rem;
  padding-left: 1.2rem;
}

.reviews-section {
  background: #fff;
  color: #1a0033;
  padding: 4rem 2rem 2rem 2rem;
}

.reviews-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.review {
  background: #f7f3ff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.07);
  padding: 1.2rem 1.5rem;
  margin: 1rem auto;
  max-width: 600px;
}

.review-text {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.review-author {
  color: #b8001c;
  font-weight: 700;
}

.cta-section {
  background: #1a0033;
  color: #fff;
  padding: 4rem 2rem 2rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 2rem auto;
}

.cta-form input, .cta-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #FFD700;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.cta-form textarea {
  min-height: 100px;
  resize: vertical;
}

.cta-form button {
  background: #b8001c;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cta-form button:hover {
  background: #FFD700;
  color: #1a0033;
}

.cta-phone {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #FFD700;
}

footer {
  background: #1a0033;
  color: #fff;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.footer-contact {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #FFD700;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.95rem;
  margin-top: 1rem;
  color: #FFD700;
}

@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 700px) {
  .main-nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .service-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .cta-section h2, .about-section h2, .services-section h2, .reviews-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .floating-cta {
    right: 10px;
    bottom: 10px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
  .main-nav ul {
    gap: 1rem;
  }
  .service {
    padding: 1rem;
  }
  .cta-form {
    max-width: 100%;
  }
}
