body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #333 url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4); /* Lighter so background image is more visible */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.coming-soon-content {
  width: 100%;
  max-width: 850px;
}

.logo {
  font-size: 2.8rem;
  font-weight: bold;
  color: #00ff99;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

h1, .lead {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.form-control, .form-label {
  color: #000;
}

.contact-form {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 10px;
  padding: 28px 22px 22px 22px;
  margin-top: 30px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  color: #222;
}
.contact-form label, .contact-form .form-label {
  color: #222;
  font-weight: 500;
}
.contact-form input, .contact-form textarea, .contact-form select {
  color: #222;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 4px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: #00cc88;
  box-shadow: 0 0 0 2px #00cc8866;
  outline: none;
}

.btn-submit {
  background-color: #00cc88;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.btn-submit:hover, .btn-submit:focus {
  background-color: #009966;
  color: #fff;
}

.fade-delay-1 { animation-delay: 0.5s; }
.fade-delay-2 { animation-delay: 1s; }
.fade-delay-3 { animation-delay: 1.5s; }

.package-card {
  background: rgba(255, 255, 255, 0.97);
  color: #222;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.package-card h5 {
  font-weight: bold;
  color: #009966;
}

.recaptcha-badge {
  visibility: hidden;
}

@media (max-width: 576px) {
  .logo { font-size: 2rem; }
  h1 { font-size: 1.5rem; }
  .lead { font-size: 1rem; }
  .contact-form {
    background: rgba(255, 255, 255, 0.96);
    padding: 12px;
  }
  .package-card {
    padding: 12px;
  }
}
