/* Base setup */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Great Vibes', cursive;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #fff;
  color: #000;
}

/* Container fills full screen */
.container {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* Top section: left logo + phone */
.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 1rem;
}

.left-text {
  text-align: left;
  font-size: 2.4rem;
  line-height: 1.2;
}

.left-text p {
  margin: 0.2rem 0;
}

.phone {
  font-size: 2rem;
  color: #666;
  text-decoration: none !important;
}

/* Center main heading */
.center-text {
  margin-top: 1rem;
  font-family: 'Great Vibes', cursive;
}

.center-text h1 {
  font-size: 5rem;
  font-weight: 400;
  margin: 1rem 0 0.5rem;
  line-height: 1.3;
}

.sub {
  font-size: 2rem;
  margin: 0;
  font-weight: 300;
  line-height: 1.4;
}

.loading-message {
  display: none;
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: #888;
  margin-top: 2rem;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.thank-you-message {
  display: none;
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: #000;
  margin-top: 2rem;
  line-height: 1.6;
  animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price {
  font-size: 2rem;
  margin: 0.5rem 0 2rem;
  font-weight: 400;
}

/* Form styling */
.lead-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.lead-form input {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  width: 150px;
  font-family: sans-serif;
}

.lead-form button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  border: 2px solid #000000;
  cursor: pointer;
  color: #fff;
}

/* Bottom trust section */
.bottom-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
  padding: 0 1rem;
  font-family: sans-serif;
}

.bottom-text p {
  margin: 0.5rem;
  flex: 1;
  min-width: 120px;
  text-align: center;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .top {
    flex-direction: column;
    align-items: center;
  }

  .container{
    padding: 10px;
  }

  .left-text {
    text-align: center;
    font-size: 2rem;
  }

  .center-text h1 {
    font-size: 2.2rem;
  }

  .sub {
    font-size: 1.3rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .lead-form {
    flex-direction: column;
    align-items: center;
  }

  .lead-form input {
    width: 80%;
    max-width: 300px;
  }

  .bottom-text {
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
  }

  .phone {
    font-size: 1.4rem;
    color: #666;
  }
}
