/* Waitlist Modal Styles */
.waitlist-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
}

.waitlist-modal-content {
  background-color: white;
  margin: 5% auto;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.waitlist-modal-header {
  padding: 20px 25px;
  background: linear-gradient(135deg, #0066B3 0%, #004D8C 100%);
  color: white;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.waitlist-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.close-waitlist-modal {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.2s;
}

.close-waitlist-modal:hover {
  transform: scale(1.1);
}

.waitlist-modal-body {
  padding: 25px;
  max-height: 70vh;
  overflow-y: auto;
}

.waitlist-modal-body > p {
  color: #666;
  margin-bottom: 20px;
}

.waitlist-form .form-group {
  margin-bottom: 18px;
}

.waitlist-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: #0066B3;
  box-shadow: 0 0 0 3px rgba(0,102,179,0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.btn-submit-waitlist {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0066B3 0%, #004D8C 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit-waitlist:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,102,179,0.3);
}

.btn-submit-waitlist:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 15px;
}

.waitlist-success {
  text-align: center;
  padding: 30px 20px;
}

.waitlist-success i {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 15px;
}

.waitlist-success h4 {
  color: #333;
  margin-bottom: 10px;
}

.waitlist-success p {
  color: #666;
}

.form-group input.error, 
.form-group select.error {
  border-color: #F44336;
}

@media (max-width: 768px) {
  .waitlist-modal-content {
    margin: 10% auto;
    width: 95%;
  }
  
  .waitlist-modal-body {
    padding: 20px;
  }
}