body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}
header {
  background: #1a0033;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
nav ul 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;
  text-align: center;
  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: 0.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #FFD700;
}
.cta-btn {
  background: #b8001c;
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(26,0,51,0.08);
  cursor: pointer;
  margin-top: 1rem;
  display: inline-block;
}
.cta-btn:hover {
  background: #FFD700;
  color: #1a0033;
}
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b8001c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(26,0,51,0.15);
  z-index: 200;
  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); }
}
.services-section {
  background: #fff;
  color: #1a0033;
  padding: 4rem 1rem 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.services-section h2 {
  color: #1a0033;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.service-category {
  margin-bottom: 2.5rem;
}
.service-category h3 {
  color: #b8001c;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.service-category ul {
  padding-left: 1.2rem;
  margin: 0 0 1.2rem 0;
}
.service-category ul li {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.seo-content {
  margin-top: 2.5rem;
  font-size: 1.08rem;
  line-height: 1.7;
}
.seo-content h3, .seo-content h4 {
  color: #1a0033;
}
.reviews-section {
  background: #f7f7fa;
  padding: 3rem 1rem 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,0,51,0.04);
}
.reviews-section h2 {
  color: #1a0033;
  text-align: center;
  margin-bottom: 2rem;
}
.review {
  background: #fff;
  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.03);
}
.review span {
  display: block;
  margin-top: 0.7rem;
  color: #b8001c;
  font-weight: 600;
}
.contact-section {
  background: #fff;
  padding: 3rem 1rem 2rem 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.contact-section h2 {
  color: #1a0033;
  text-align: center;
  margin-bottom: 2rem;
}
.estimate-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f7f7fa;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,0,51,0.04);
  margin-bottom: 2rem;
}
.estimate-form label {
  font-weight: 600;
  color: #1a0033;
}
.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.estimate-form button {
  margin-top: 1rem;
}
.contact-info {
  text-align: center;
  color: #1a0033;
}
.contact-info a {
  color: #b8001c;
  text-decoration: none;
  font-weight: 700;
}
footer {
  background: #1a0033;
  color: #fff;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
  margin-top: 3rem;
}
.footer-content a {
  color: #FFD700;
  text-decoration: underline;
}
@media (max-width: 900px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .services-section, .reviews-section, .contact-section {
    padding: 2rem 0.5rem;
  }
}
@media (max-width: 600px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0.5rem;
  }
  .floating-cta {
    right: 10px;
    bottom: 10px;
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }
  nav ul {
    gap: 1rem;
  }
}
