.whatsapp-form-section {
  background: linear-gradient(to right, #ffecd2, #fcb69f);
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.form-glass {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 650px;
  width: 100%;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease-out;
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
  color: #2c2c2c;
  font-family: 'Poppins', sans-serif;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

#whatsapp-form input,
#whatsapp-form textarea {
  padding: 16px;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  outline: none;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

#whatsapp-form input:focus,
#whatsapp-form textarea:focus {
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.4);
}

#whatsapp-form textarea {
  resize: none;
  min-height: 100px;
}

#whatsapp-form button {
  margin-top: 25px;
  padding: 14px;
  background: #25d366;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

#whatsapp-form button:hover {
  background: #1ebc59;
  transform: translateY(-2px);
}

@media screen and (max-width: 600px) {
  .cta-heading {
    font-size: 1.8rem;
  }
  .form-glass {
    padding: 25px;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}