body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #1a0033;
  margin: 0;
  padding: 0;
}

.navbar {
  background: #1a0033;
  color: #FFD700;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 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 80%, #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-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-sub {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #b8001c;
  color: #fff;
  padding: 0.9rem 2.2rem;
  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: #b8001c;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(26,0,51,0.2);
  z-index: 2000;
  text-decoration: none;
  transition: background 0.2s;
}
.floating-cta:hover {
  background: #FFD700;
  color: #1a0033;
}

.services-section {
  background: #f7f7fa;
  padding: 4rem 0 2rem 0;
}
.services-section h2 {
  color: #1a0033;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,0,51,0.07);
  padding: 2rem 1.5rem;
  color: #1a0033;
  transition: box-shadow 0.2s;
}
.service-card h3 {
  color: #1a0033;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.service-card ul {
  padding-left: 1.2rem;
}
.service-area {
  text-align: center;
  margin-top: 2rem;
  color: #1a0033;
}

.reviews-section {
  background: #fff;
  padding: 4rem 0 2rem 0;
}
.reviews-section h2 {
  color: #1a0033;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 2rem auto;
}
.review-card {
  background: #f7f7fa;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  color: #1a0033;
  box-shadow: 0 1px 6px rgba(26,0,51,0.05);
}
.review-text {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.review-author {
  font-weight: 700;
  color: #b8001c;
}
.review-summary {
  text-align: center;
  font-size: 1.1rem;
  color: #1a0033;
  margin-top: 1rem;
}

.contact-section {
  background: #1a0033;
  color: #fff;
  padding: 4rem 0 2rem 0;
}
.contact-section h2 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.contact-form {
  max-width: 500px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-form button {
  align-self: flex-end;
}
.contact-info {
  text-align: center;
  color: #FFD700;
  font-size: 1.1rem;
}
.contact-info a {
  color: #FFD700;
  text-decoration: underline;
}

.footer {
  background: #1a0033;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .navbar .container {
    flex-direction: column;
    gap: 0.5rem;
  }
  .services-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .floating-cta {
    right: 10px;
    bottom: 10px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
}
