.contact-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.contact-popup-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.contact-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.contact-popup-close:hover {
  color: #000;
}

.contact-popup-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-popup-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1a1a2e;
}

.contact-popup-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.contact-popup-body .form-item {
  margin-bottom: 14px;
}

.contact-popup-body .form-item label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
  color: #333;
}

.contact-popup-body input[type="text"],
.contact-popup-body input[type="email"],
.contact-popup-body textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-popup-body input[type="text"]:focus,
.contact-popup-body input[type="email"]:focus,
.contact-popup-body textarea:focus {
  border-color: #4a6cf7;
  outline: none;
}

.contact-popup-body textarea {
  min-height: 80px;
  resize: vertical;
}

.contact-popup-body .form-actions {
  margin-top: 16px;
  text-align: center;
}

.contact-popup-body .form-submit,
.contact-popup-body button[type="submit"] {
  background: #4a6cf7;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.contact-popup-body .form-submit:hover,
.contact-popup-body button[type="submit"]:hover {
  background: #3a5ce5;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.hosting-lead-confirmation {
  background: #d4edda;
  border-bottom: 3px solid #28a745;
  padding: 18px 24px;
  text-align: center;
  transition: opacity 0.5s ease;
}

.hosting-lead-confirmation-inner {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
  color: #155724;
}

.hosting-lead-confirmation-inner i {
  font-size: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.contact-popup-body input[type="url"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-popup-body input[type="url"]:focus {
  border-color: #4a6cf7;
  outline: none;
}

@media (max-width: 576px) {
  .contact-popup-modal {
    padding: 20px;
    width: 95%;
  }

  .contact-popup-header h3 {
    font-size: 18px;
  }
}
