/**
 * Contact Form Styles
 */

.form-message {
  margin-top: 15px;
  display: none;
  position: relative;
  z-index: 1;
}

.alert {
  padding: 12px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin-top: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.alert i {
  margin-left: 10px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
  animation: fadeIn 0.5s;
  padding: 15px 20px;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
  animation: fadeIn 0.5s;
  padding: 15px 20px;
}

.contact-form .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Ensure notification doesn't appear as a popup */
.notification, .toast, .modal-notification {
  display: none !important;
}

/* Animation for form messages */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* تنسيقات رسائل النموذج المخصصة */
.form-message-container {
  margin-top: 15px;
}

.form-message {
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s;
}

.form-message.loading {
  background-color: #e3f2fd;
  color: #0d47a1;
  border-left: 4px solid #2196f3;
}

.form-message.success {
  background-color: #e8f5e9;
  color: #1b5e20;
  border-left: 4px solid #4caf50;
}

.form-message.error {
  background-color: #ffebee;
  color: #b71c1c;
  border-left: 4px solid #f44336;
}

.form-message i {
  margin-left: 10px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .form-message {
    font-size: 14px;
    padding: 10px 12px;
  }

  .form-message i {
    margin-left: 8px;
    font-size: 16px;
  }
}
