body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}
header {
  background: #1a0033;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.7rem;
  font-weight: 700;
  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: #e63946;
}
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0033 70%, #FFD700 100%);
  color: #fff;
  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: 1.2rem;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #e63946;
  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: #e63946;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  box-shadow: 0 2px 12px 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 {
  font-weight: 900;
  letter-spacing: 1px;
}
@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
section-inner {
  max-width: 900px;
  margin: 0 auto;
}
#services h2, #reviews h2, #contact h2 {
  color: #1a0033;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.review-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.review {
  background: #f8f8ff;
  border-left: 6px solid #FFD700;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  color: #1a0033;
  box-shadow: 0 2px 8px rgba(26,0,51,0.04);
}
.review-text {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.review-author {
  font-size: 0.98rem;
  color: #e63946;
  font-weight: 600;
}
.review-summary {
  font-size: 1.1rem;
  color: #1a0033;
  font-weight: 700;
  margin-top: 1rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  background: #f8f8ff;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.04);
}
.contact-form label {
  font-weight: 600;
  color: #1a0033;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.contact-form button {
  align-self: flex-start;
}
.contact-details {
  margin-bottom: 2rem;
}
.contact-details p {
  margin: 0.3rem 0;
  color: #1a0033;
}
.local-seo {
  background: #fffbe6;
  border-left: 5px solid #FFD700;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.cta-bottom {
  margin-top: 1.5rem;
}
footer {
  background: #1a0033;
  color: #fff;
  text-align: center;
  padding: 2rem 0 1rem 0;
  margin-top: 2rem;
}
@media (max-width: 800px) {
  nav ul {
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  section {
    padding: 2.5rem 1rem;
  }
}
@media (max-width: 500px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .logo {
    font-size: 1.2rem;
  }
  #floating-cta {
    right: 10px;
    bottom: 10px;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }
}
