/* Enhanced Contact Form Styling */
.php-email-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.php-email-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.php-email-form .form-control:focus {
  border-color: #149ddd;
  box-shadow: 0 0 0 0.2rem rgba(20, 157, 221, 0.25);
  background: #fff;
}

.php-email-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.php-email-form button[type="submit"] {
  background: linear-gradient(45deg, #149ddd, #0d7aa7);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 157, 221, 0.3);
}

.php-email-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 157, 221, 0.4);
}

/* Success Popup Modal */
.success-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.popup-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: popupSlide 0.3s ease-out;
}

@keyframes popupSlide {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-content .success-icon {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.popup-content h3 {
  color: #333;
  margin-bottom: 15px;
}

.popup-content p {
  color: #666;
  margin-bottom: 25px;
}

.popup-close {
  background: #149ddd;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.popup-close:hover {
  background: #0d7aa7;
}