/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fafdff; /* snowy white */
  color: #25311a; /* deep pine green for text */
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

header.hero {
  background: linear-gradient(120deg, #3a5a40 0%, #588157 100%); /* pine green gradient */
  color: #fff;
  padding: 80px 0 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-block;
  background: #b80028; /* cranberry red */
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #e63946; /* lighter cranberry */
}

.cta-btn.disabled {
  background: #bfc5c9 !important;
  color: #888 !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}

.coming-soon-subtitle {
  color: #888;
  font-size: 1.1rem;
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 1px;
}

.coming-soon-inside {
  display: block;
  font-size: 0.95rem;
  color: #888;
  font-style: italic;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.services {
  background: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service {
  background: #e9f5ec; /* soft green tint */
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(58,90,64,0.07);
  padding: 32px 24px;
  width: 300px;
  min-width: 220px;
}

.service h3 {
  color: #3a5a40; /* pine green */
  margin-bottom: 12px;
}

.about {
  padding: 50px 0 30px 0;
  background: #f6f9f4; /* very light green/white */
  text-align: center;
}

.about h2 {
  margin-bottom: 18px;
}

.about ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.about li {
  background: #fff;
  border-radius: 12px;
  padding: 16px 28px;
  box-shadow: 0 1px 4px rgba(58,90,64,0.06);
  font-weight: 500;
}

.cta {
  background: linear-gradient(120deg, #588157 0%, #3a5a40 100%); /* pine green gradient reversed */
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.cta h2 {
  margin-bottom: 24px;
}

footer {
  background: #3a5a40; /* pine green */
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
}

.contact-section {
  background: #fafdff;
  padding: 60px 0 40px 0;
  text-align: center;
}

.contact-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(58,90,64,0.07);
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  text-align: left;
  font-weight: 500;
  color: #3a5a40;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #b7cbb2;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #f6f9f4;
  color: #25311a;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #588157;
  border-color: #588157;
}

.contact-form button.cta-btn {
  margin-top: 10px;
  align-self: flex-end;
}

.navbar {
  background: #3a5a40;
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(58,90,64,0.07);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover, .nav-links a:focus {
  background: #b80028;
  color: #fff;
}

.price-bubble {
  display: inline-block;
  background: #365c40;
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 2px 8px rgba(58,90,64,0.10);
  margin: 18px 0 10px 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

/* Schedule form styles */
.schedule-section {
  padding: 48px 0;
}
.schedule-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.schedule-form label {
  font-weight: 600;
  margin-bottom: 4px;
}
.schedule-form input,
.schedule-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}
.schedule-form button.cta-btn {
  margin-top: 12px;
}
.thank-you-message {
  text-align: center;
  margin-top: 32px;
  background: #e6ffe6;
  padding: 24px 16px;
  border-radius: 8px;
  color: #1a4d1a;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    align-items: center;
  }
  .about ul {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .services h2, .about h2, .cta h2 {
    font-size: 1.3rem;
  }
  .service {
    width: 90%;
    padding: 20px 10px;
  }
  .container {
    width: 98%;
  }
  .contact-form {
    padding: 16px 6px;
    max-width: 98%;
  }
}

@media (max-width: 700px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
  }
  .nav-logo {
    margin-bottom: 6px;
  }
} 