body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #1a0033;
}

header {
  background: #1a0033;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.nav-links li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #fff;
}

.hero-section {
  background: linear-gradient(135deg, #1a0033 70%, #FFD700 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #FFD700;
}

.cta-btn {
  background: #b3001b;
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(26,0,51,0.1);
}

.cta-btn:hover {
  background: #FFD700;
  color: #1a0033;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b3001b;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(26,0,51,0.2);
  z-index: 2000;
  font-size: 1.1rem;
  font-weight: 700;
  animation: float 2s infinite alternate;
}

.floating-cta a {
  color: #fff;
  text-decoration: none;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.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: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.service {
  background: #f7f7fa;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(26,0,51,0.05);
  border-left: 6px solid #FFD700;
}

.service h3 {
  color: #1a0033;
  margin-top: 0;
}

.specialized-services, .emergency-service, .expert-techs {
  margin-bottom: 2rem;
  background: #fffbe6;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  border-left: 6px solid #FFD700;
}

.specialized-services ul {
  list-style: disc inside;
  padding-left: 1.5rem;
}

.reviews-section {
  background: #f7f7fa;
  color: #1a0033;
  padding: 4rem 2rem 2rem 2rem;
}

.reviews-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 8px rgba(26,0,51,0.05);
  border-left: 4px solid #FFD700;
  font-style: italic;
}

.review span {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #b3001b;
}

.review-cta {
  text-align: center;
}

.contact-section {
  background: #fff;
  color: #1a0033;
  padding: 4rem 2rem 2rem 2rem;
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto 2rem auto;
  background: #f7f7fa;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.05);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.form-group input:focus, .form-group textarea:focus {
  outline: 2px solid #FFD700;
  border-color: #FFD700;
}

.contact-info {
  text-align: center;
  margin-top: 1.5rem;
  color: #1a0033;
}

.contact-info a {
  color: #b3001b;
  text-decoration: none;
  font-weight: 700;
}

footer {
  background: #1a0033;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1rem;
}

.footer-content p {
  margin: 0.5rem 0;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .service-list, .review-list {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-section {
    padding: 2rem 1rem;
  }
}
