/* Contact Form Enhancements */

/* Form Field Error State */
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444 !important;
  background-color: #fef2f2;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Submit Button Loading State */
.butn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Form Animations */
.form-group input,
.form-group textarea {
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  transform: translateY(-2px);
}

/* Success State Animation */
@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.form-success {
  animation: successPulse 0.6s ease;
}
